/* ============================================================
          DESIGN SYSTEM — DARK LUXURY
          ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0d0d0d;
    --bg-nav: rgba(13, 13, 13, 0.88);
    --gold: #c9a84c;
    --gold-light: #e2c17a;
    --gold-dim: rgba(201, 168, 76, 0.12);
    --gold-border: rgba(201, 168, 76, 0.28);
    --white: #f4f4f2;
    --muted: #767676;
    --muted-2: #464646;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- NAVBAR (Modernized & Responsive) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 72px;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    height: 64px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0d0d0d;
    background: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
}

.nav-hamburger span {
    width: 20px;
    height: 1.5px;
    background: #fff;
    transition: 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.nav-mobile.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile a {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
}

.nav-mobile .nav-btn {
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 960px) {

    .nav-links,
    .nav-actions .nav-btn:not(.mob-show) {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .nav-actions {
        gap: 12px;
    }
}

@media (max-width: 500px) {
    .nav-btn.mob-show {
        padding: 8px 16px;
        font-size: 11px;
    }

    .nav-btn.mob-show svg {
        display: none;
    }

    .nav-logo {
        font-size: 18px;
    }
}

/* --- AOS CUSTOMIZATIONS (Optional) --- */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 140px;
    gap: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold-border);
    background: var(--gold-dim);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 6px var(--gold);
    }

    50% {
        box-shadow: 0 0 16px var(--gold);
    }
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.hero-h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-h1 .gold {
    color: var(--gold);
}

.hero-h1 span {
    display: block;
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 42px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0d0d0d;
    background: var(--gold);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid var(--gold-border);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.hero-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-stat-card {
    position: absolute;
    bottom: 28px;
    left: -32px;
    background: rgba(20, 20, 18, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--muted);
}

/* --- PROOF BAR --- */
.proof-bar {
    background: #111110;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.proof-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted-2);
    letter-spacing: 0.14em;
}

.proof-tools {
    display: flex;
    gap: 36px;
}

.proof-tool {
    font-size: 13px;
    color: var(--muted-2);
    font-weight: 600;
}

.proof-tool strong {
    color: var(--muted);
}

/* --- BENEFITS --- */
.benefits {
    padding: 100px 48px;
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.benefit-card {
    background: linear-gradient(145deg, #141412 0%, #111110 100%);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.35s var(--ease);
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.benefit-icon {
    font-size: 24px;
    margin-bottom: 24px;
    display: block;
}

.benefit-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* --- PROCESS --- */
.process {
    padding: 100px 48px;
    text-align: center;
    background: rgba(13, 13, 13, 0.5);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto;
    text-align: left;
}

.process-step {
    background: #111110;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-num {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

/* --- PORTFOLIO (BENTO) --- */
.portfolio-section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #141412;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease);
}

.portfolio-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card-wide {
    grid-column: span 8;
}

.card-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.card-large {
    grid-column: span 8;
    grid-row: span 1;
}

.card-small {
    grid-column: span 4;
}

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

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.portfolio-tag {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.portfolio-card-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

/* --- FOOTER --- */
.footer {
    padding: 80px 48px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
    color: #fff;
}

.footer-logo span {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-socials a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 12px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 28px 60px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stat-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .nav-links {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .card-wide,
    .card-tall,
    .card-large,
    .card-small {
        grid-column: span 1;
        grid-row: auto;
    }

    .portfolio-img {
        height: 300px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500&display=swap');

.kc-section {
    background: var(--bg);
    padding: 90px 32px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
}

.kc-inner {
    max-width: 1080px;
    margin: 0 auto;
}

/* Header */
.kc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    gap: 24px;
    flex-wrap: wrap;
}

.kc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.kc-eyebrow::before,
.kc-eyebrow::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.kc-eyebrow::before {
    width: 24px;
}

.kc-eyebrow::after {
    width: 24px;
}

.kc-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--white);
}

.kc-title span {
    color: var(--gold);
}

.kc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 11px 22px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
}

.kc-cta-link:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

.kc-cta-link:hover svg {
    transform: translate(3px, -3px);
}

.kc-cta-link svg {
    transition: transform 0.3s var(--ease);
}

/* Filters */
.kc-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.kc-filter {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.kc-filter:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.kc-filter.active {
    background: var(--gold);
    color: #0d0d0d;
    border-color: var(--gold);
    font-weight: 600;
}

/* Grid */
.kc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

/* Card */
.kc-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
    text-decoration: none;
    color: inherit;
}

.kc-card:hover {
    border-color: var(--border-h);
    background: var(--bg-card-h);
    transform: translateY(-5px);
}

.kc-card--lg {
    grid-column: span 7;
}

.kc-card--md {
    grid-column: span 5;
}

.kc-card--half {
    grid-column: span 6;
}

/* Thumb */
.kc-thumb {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.kc-card--lg .kc-thumb {
    aspect-ratio: 16/9;
}

.kc-card--md .kc-thumb {
    aspect-ratio: 4/3;
}

.kc-card--half .kc-thumb {
    aspect-ratio: 16/9;
}

.kc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.85);
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.kc-card:hover .kc-thumb img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(1);
}

.kc-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.45s var(--ease);
}

.kc-card:hover .kc-thumb::after {
    width: 100%;
}

.kc-arrow-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.kc-card:hover .kc-arrow-btn {
    opacity: 1;
    transform: translateY(0);
}

.kc-arrow-btn svg {
    width: 14px;
    height: 14px;
}

/* Body */
.kc-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.kc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.kc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.kc-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.kc-tag--gold {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.2);
}

.kc-year {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.kc-card-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 1.8vw, 21px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--white);
    transition: color 0.25s;
}

.kc-card:hover .kc-card-title {
    color: var(--gold-light);
}

.kc-card-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
}

.kc-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.kc-card-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s var(--ease);
}

.kc-card:hover .kc-card-cta {
    gap: 10px;
}

/* Bottom CTA */
.kc-bottom {
    text-align: center;
    margin-top: 52px;
}

.kc-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: #0d0d0d;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.kc-whatsapp-btn:hover {
    background: var(--gold-light);
    transform: scale(1.03);
}

.kc-note {
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 860px) {

    .kc-card--lg,
    .kc-card--md,
    .kc-card--half {
        grid-column: span 12;
    }
}

@media (max-width: 560px) {
    .kc-section {
        padding: 64px 20px;
    }

    .kc-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- TESTIMONIALS & SERVICES --- */
.testimonials {
    padding: 30px 48px;
    background: var(--bg);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.testimonial-card {
    background: linear-gradient(145deg, #141412 0%, #111110 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.e-font-icon-svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: all 0.4s var(--ease);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
}

.testimonial-card:hover .e-font-icon-svg {
    fill: var(--white);
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.6));
}

.process-step-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold-border);
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
}

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

    .testimonials {
        padding: 80px 24px;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 120px 48px;
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 10px 30px -10px rgba(201, 168, 76, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--gold);
    color: #0d0d0d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 32px 32px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

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

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 24px 24px;
    }
}

/* --- OUTILS & TECHNOLOGIES (NEW) --- */
#cs-outils-section {
    padding: 100px 48px;
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.cs-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cs-header {
    border-left: 4px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 64px;
}

.cs-header-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.cs-header-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.cs-header-desc {
    font-size: 14px;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.7;
    margin-top: 16px;
}

.cs-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.cs-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cs-cat-icon {
    font-size: 24px;
    color: var(--gold);
}

.cs-cat-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.cs-cat-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.cs-card {
    background: rgba(20, 20, 18, 0.6);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s var(--ease);
}

.cs-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(25, 25, 22, 0.8);
}

.cs-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cs-logo-wrap svg,
.cs-logo-wrap img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cs-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.cs-card-name {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
}

.cs-card-pct {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
}

.cs-bar-track {
    height: 4px;
    background: #1a1a16;
    border-radius: 2px;
    overflow: hidden;
}

.cs-bar-fill {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 120px 48px;
    background: var(--bg);
    overflow: hidden;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.about-text-content {
    max-width: 500px;
}

.about-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.about-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 32px;
}

.about-p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 24px;
}

.about-p strong {
    color: var(--white);
    font-weight: 600;
}

/* Single Image Presentation */
.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.feature-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4 / 5;
    background: var(--gold-border);
    max-width: 500px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.feature-img:hover img {
    transform: scale(1.05);
}

/* Decorative element behind image */
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }

    .about-text-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-image {
        margin: 0 auto;
    }

    .feature-img {
        max-width: 400px;
    }
}

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

    .feature-img {
        max-width: 100%;
    }
}

/* --- ABOUT PAGE SPECIFIC --- */
.ap-hero {
    padding: 160px 48px 80px;
    background: linear-gradient(to bottom, #111, var(--bg));
    text-align: center;
}

.ap-hero-tagline {
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: block;
}

.ap-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.ap-section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.ap-section-header {
    margin-bottom: 64px;
}

.ap-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.ap-section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
}

/* Expertises Grille */
.ap-expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.ap-expertise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.35s var(--ease);
}

.ap-expertise-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    transform: translateY(-8px);
}

.ap-expertise-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.ap-expertise-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

/* Vision & Mission */
.ap-vision-box {
    background: linear-gradient(135deg, #141412 0%, #0d0d0d 100%);
    border: 1px solid var(--gold-border);
    border-radius: 32px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 40px;
}

.ap-vision-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.ap-vision-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}

/* Pourquoi me faire confiance */
.ap-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ap-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ap-trust-icon {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.ap-trust-text {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

/* Certifications */
.ap-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.ap-cert-card {
    border-left: 3px solid var(--gold);
    background: #141412;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    transition: background 0.3s, transform 0.3s;
}

.ap-cert-card:hover {
    background: #181816;
    transform: translateX(8px);
}

.ap-cert-num {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.ap-cert-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.ap-cert-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* CTA Finale */
.ap-final-cta {
    padding: 120px 48px;
    text-align: center;
    background: var(--gold-dim);
}

.ap-final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .ap-hero {
        padding: 120px 24px 60px;
    }

    .ap-vision-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .ap-trust-grid {
        grid-template-columns: 1fr;
    }

    .ap-section {
        padding: 80px 24px;
    }
}

/* --- INFINITE GALLERY --- */
.ap-gallery {
    padding: 60px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ap-gallery-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.ap-gallery-track:hover {
    animation-play-state: paused;
}

.ap-gallery-item {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease);
    position: relative;
}

.ap-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.ap-gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
}

.ap-gallery-item:hover::after {
    opacity: 1;
}

.ap-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 4 - 20px * 4));
    }
}

@media (max-width: 768px) {
    .ap-gallery-item {
        width: 200px;
        height: 280px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 4 - 20px * 4));
        }
    }
}