* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 80px;
    font-size: 17px;
    position: relative;
}

:root {
    --scroll-offset: 96px;
    --accent-primary: #94b5ff;
    --accent-secondary: #6fd6ff;
    --accent-deep: #5c7dff;
    --accent-glow: rgba(125, 196, 255, 0.25);
    --bg-body: #05060f;
    --text-primary: #f2f3f8;
    --text-bright: #f5f5f5;
    --text-secondary: #c5c5c5;
    --text-muted: #b8b8b8;
    --text-soft: #dcdcdc;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --surface-glass-strong: rgba(255, 255, 255, 0.05);
    --surface-input: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(155, 176, 255, 0.18);
    --surface-border-strong: rgba(155, 176, 255, 0.24);
}

.background-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(86, 73, 200, 0.12), transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(122, 186, 255, 0.08), transparent 62%),
        radial-gradient(circle at 50% 80%, rgba(78, 196, 209, 0.1), transparent 65%),
        linear-gradient(180deg, rgba(6, 7, 20, 0.9), rgba(6, 6, 20, 0.6));
    backdrop-filter: blur(40px);
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    opacity: 0.65;
    mix-blend-mode: screen;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.wave-one {
    background: radial-gradient(circle at 25% 25%, rgba(78, 123, 255, 0.55), transparent 60%);
    animation-name: waveOrbit;
    animation-duration: 28s;
}

.wave-two {
    background: radial-gradient(circle at 70% 40%, rgba(124, 210, 255, 0.4), transparent 60%);
    animation-name: waveOrbitReverse;
    animation-duration: 32s;
}

.wave-three {
    background: radial-gradient(circle at 40% 80%, rgba(102, 255, 204, 0.35), transparent 65%);
    animation-name: waveFloat;
    animation-duration: 36s;
}

.wave-grid {
    background: conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.02),
            rgba(116, 199, 255, 0.14),
            rgba(122, 210, 255, 0.08),
            rgba(255, 255, 255, 0.02));
    mix-blend-mode: screen;
    opacity: 0.22;
    filter: blur(120px);
    animation: waveSpin 60s linear infinite;
}

@keyframes waveOrbit {
    0% {
        transform: translate(-60%, -50%) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-40%, -45%) scale(1.15) rotate(180deg);
    }

    100% {
        transform: translate(-60%, -50%) scale(1) rotate(360deg);
    }
}

@keyframes waveOrbitReverse {
    0% {
        transform: translate(-40%, -55%) scale(1.1) rotate(0deg);
    }

    50% {
        transform: translate(-60%, -50%) scale(0.95) rotate(-180deg);
    }

    100% {
        transform: translate(-40%, -55%) scale(1.1) rotate(-360deg);
    }
}

@keyframes waveFloat {
    0% {
        transform: translate(-50%, -60%) scale(1.05) rotate(0deg);
    }

    50% {
        transform: translate(-52%, -40%) scale(1.2) rotate(200deg);
    }

    100% {
        transform: translate(-50%, -60%) scale(1.05) rotate(360deg);
    }
}

@keyframes waveSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1.2);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8, 9, 24, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(6, 7, 20, 0.95);
    box-shadow: 0 4px 20px rgba(40, 54, 120, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-bright);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #aab8ff;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #aab8ff;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #aab8ff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateX(5px) rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateX(5px) rotate(-45deg) translateY(-10px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .cta-button {
    box-shadow: 0 10px 40px rgba(132, 160, 255, 0.45);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 40px rgba(132, 160, 255, 0.45);
    }

    50% {
        box-shadow: 0 10px 55px rgba(120, 210, 255, 0.45);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, rgba(6, 7, 24, 0.88), rgba(5, 6, 16, 0.76));
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 140, 255, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(146, 206, 255, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(105, 237, 215, 0.18) 0%, transparent 58%),
        radial-gradient(circle at 10% 70%, rgba(122, 196, 255, 0.14) 0%, transparent 50%);
    background-position: 0 0, 100% 0, 50% 100%, 0 100%;
    animation: bgShift 22s ease-in-out infinite;
    z-index: 0;
    opacity: 0.7;
}

@keyframes bgShift {
    0% {
        background-position: 0 0, 100% 100%, 50% 50%;
    }

    25% {
        background-position: -20% -20%, 120% 120%, 45% 55%;
    }

    50% {
        background-position: -40% -40%, 140% 140%, 40% 60%;
    }

    75% {
        background-position: -20% -20%, 120% 120%, 45% 55%;
    }

    100% {
        background-position: 0 0, 100% 100%, 50% 50%;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.025) 2px, rgba(255, 255, 255, 0.025) 4px);
    background-size: 100% 80px, 80px 100%;
    animation: gridFlow 16s linear infinite;
    opacity: 0.4;
    z-index: 0;
}

@keyframes gridFlow {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 0 80px, 80px 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    margin: 0;
    text-align: left;
    max-width: 560px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: 3rem;
    align-items: center;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
}

.hero-note {
    font-size: 1rem;
    color: rgba(240, 243, 248, 0.8);
    max-width: 360px;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    isolation: isolate;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -14% -16% -6%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 140, 255, 0.45), transparent 70%),
        radial-gradient(circle at 80% 65%, rgba(132, 214, 255, 0.38), transparent 70%);
    filter: blur(50px);
    opacity: 0.65;
    z-index: 0;
}

.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 35px 70px rgba(30, 40, 120, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(16, 26, 60, 0.6), rgba(14, 20, 44, 0.9));
}

.hero-glow {
    position: absolute;
    inset: auto 15% -40% 15%;
    height: 480px;
    background: radial-gradient(circle at 50% 0%, rgba(99, 148, 255, 0.12), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

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

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

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    line-height: 1.1;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #6f9fff, #56d0ff);
    color: #0b0c18;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(130, 155, 255, 0.35);
    background: linear-gradient(135deg, #90b8ff, #7fe0ff);
}

/* Section Styles */
section {
    padding: 8rem 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    position: relative;
    scroll-margin-top: var(--scroll-offset);
}

section:nth-of-type(even) {
    background: rgba(9, 10, 26, 0.72);
    backdrop-filter: blur(12px);
}

section:nth-of-type(odd) {
    background: rgba(6, 7, 20, 0.68);
    backdrop-filter: blur(12px);
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-bright);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    scroll-margin-top: var(--scroll-offset);
}

/* Hero Title Animation */
.hero h1 {
    background: linear-gradient(90deg, #f8f9ff 0%, #92a7ff 22%, #f8f9ff 48%, #78d4ff 72%, #f8f9ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 20s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-intro {
    text-align: center;
    color: rgba(148, 170, 255, 0.95);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 500;
    line-height: 1.6;
}

.visual-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(8, 10, 28, 0.85), rgba(9, 11, 24, 0.7));
}

.visual-showcase::before {
    content: '';
    position: absolute;
    inset: -40% 10% 60%;
    background: radial-gradient(circle, rgba(114, 182, 255, 0.25), transparent 60%);
    filter: blur(60px);
    opacity: 0.7;
}

.visual-showcase::after {
    content: '';
    position: absolute;
    inset: 50% -20% -40% 40%;
    background: radial-gradient(circle, rgba(118, 208, 255, 0.18), transparent 65%);
    filter: blur(60px);
    opacity: 0.6;
}

.visual-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.visual-card {
    background: var(--surface-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(27, 37, 79, 0.45);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    backdrop-filter: blur(16px);
}

.visual-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 40px 70px rgba(59, 82, 170, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-card figcaption {
    padding: 1.6rem 1.8rem 2.1rem;
    font-size: 1.05rem;
    color: rgba(242, 243, 248, 0.88);
    line-height: 1.7;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.why-item {
    background: var(--surface-glass);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--surface-border);
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(167, 188, 255, 0.4);
    box-shadow: 0 18px 40px rgba(85, 110, 198, 0.18);
}

.why-item h3 {
    color: #a9baff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.why-item .highlight {
    color: #c2e5ff;
    font-weight: 500;
}

/* Business Cards */
.business-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.business-card {
    max-width: 320px;
    background: linear-gradient(135deg, rgba(132, 160, 255, 0.08), rgba(124, 208, 255, 0.07));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(138, 164, 255, 0.24);
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8fa5ff, #74d9ff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.business-card:hover::before {
    opacity: 1;
}

.business-card:hover {
    transform: translateY(-8px);
    border-color: rgba(164, 188, 255, 0.55);
    box-shadow: 0 20px 50px rgba(86, 108, 210, 0.22);
}

.business-card h3 {
    font-size: 1.5rem;
    color: #abbbff;
    margin-bottom: 1.5rem;
}

.business-card ul {
    list-style: none;
    text-align: left;
    color: var(--text-muted);
}

.business-card li {
    margin-bottom: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.business-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #9eaefe;
    font-weight: 600;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(140, 160, 255, 0.18);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
}

.portfolio-item[data-project-url] {
    cursor: pointer;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(140, 168, 255, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.portfolio-item[data-project-url]:hover::before {
    opacity: 1;
}

.portfolio-item[data-project-url]:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(166, 188, 255, 0.6);
    box-shadow: 0 25px 70px rgba(86, 110, 210, 0.35);
    z-index: 10;
}

.portfolio-item:not([data-project-url]):hover {
    transform: translateY(-6px);
    border-color: rgba(160, 182, 255, 0.3);
    box-shadow: 0 16px 35px rgba(40, 52, 110, 0.28);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(20, 24, 58, 0.92), rgba(15, 18, 44, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.portfolio-item[data-project-url]:hover .portfolio-image {
    height: 270px;
    background: linear-gradient(135deg, rgba(140, 168, 255, 0.25), rgba(18, 22, 60, 0.95));
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 186, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.portfolio-item[data-project-url]:hover .portfolio-image::after {
    left: 100%;
}

.portfolio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(140, 168, 255, 0.95), rgba(112, 214, 255, 0.85));
    color: #08091a;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.portfolio-item[data-project-url]:hover .portfolio-badge {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content {
    padding: 2rem;
    transition: all 0.4s ease;
}

.portfolio-item[data-project-url]:hover .portfolio-content {
    padding: 2.5rem 2rem;
}

.portfolio-content h3 {
    color: var(--text-bright);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    transition: color 0.4s ease;
}

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

.portfolio-content .result {
    color: #a7b8ff;
    font-weight: 600;
    transition: color 0.4s ease;
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #b9c7ff;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.portfolio-item[data-project-url]:hover .portfolio-cta {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-cta::after {
    transform: translateX(5px);
}

/* Animated Icon Burst */
.icon-burst {
    position: fixed;
    font-size: 2rem;
    pointer-events: none;
    z-index: 10000;
}

@keyframes burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Hero CTA Pulse Effect */
.cta-pulse {
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Contact form feedback */
.form-status {
    display: none;
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid transparent;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.form-status--visible {
    display: block;
    opacity: 1;
}

.form-status--info {
    background: var(--surface-glass-strong);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
}

.form-status--success {
    background: rgba(140, 168, 255, 0.15);
    border-color: rgba(140, 168, 255, 0.35);
    color: #a7b8ff;
}

.form-status--error {
    background: rgba(255, 87, 87, 0.12);
    border-color: rgba(255, 87, 87, 0.4);
    color: #ff9f9f;
}

.contact-form.hidden {
    display: none;
}

/* Testimonial */
.testimonial-box {
    background: rgba(138, 166, 255, 0.08);
    border: 1px solid rgba(152, 180, 255, 0.28);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto 0;
    max-width: 700px;
    font-style: italic;
    color: #d4d4d4;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(150, 180, 255, 0.7);
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 1rem;
    font-style: normal;
    color: #c0cdff;
    font-weight: 600;
}

/* Client Logos Banner */
.logos-section {
    padding: 4rem 0;
    background: rgba(9, 11, 26, 0.65);
    overflow: hidden;
    position: relative;
}

.logos-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

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

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

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--surface-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(155, 176, 255, 0.12);
    border-color: rgba(170, 190, 255, 0.42);
    transform: scale(1.05);
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 4rem auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
    align-items: flex-start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(154, 177, 255, 0.3), rgba(118, 208, 255, 0.12));
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    min-width: 60px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-bright);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.step-highlight {
    display: inline-block;
    background: rgba(154, 177, 255, 0.16);
    color: var(--accent-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Pricing */
.billing-toggle {
    --toggle-padding: 0.35rem;
    margin: 2.5rem auto 1.5rem;
    padding: var(--toggle-padding);
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    background: rgba(10, 12, 32, 0.92);
    display: flex;
    align-items: stretch;
    width: min(520px, 100%);
    position: relative;
    box-shadow: 0 20px 60px rgba(5, 6, 19, 0.55);
}

.billing-toggle-indicator {
    position: absolute;
    top: var(--toggle-padding);
    bottom: var(--toggle-padding);
    left: var(--toggle-padding);
    width: calc((100% - (var(--toggle-padding) * 2)) / 2);
    border-radius: 999px;
    background: linear-gradient(140deg, rgba(154, 177, 255, 0.3), rgba(118, 208, 255, 0.35));
    box-shadow: 0 18px 40px rgba(86, 110, 210, 0.35);
    transition: transform 0.35s ease;
}

.billing-toggle[data-mode='monthly'] .billing-toggle-indicator {
    transform: translateX(100%);
}

.billing-option {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.18rem;
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}

.billing-option:focus-visible {
    outline: 2px solid rgba(154, 177, 255, 0.6);
    outline-offset: 3px;
}

.billing-option.is-active {
    color: var(--text-bright);
}

.billing-option .option-label {
    font-weight: 600;
}

.billing-option .option-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.68);
}

.billing-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 2.5rem auto 0;
    max-width: 540px;
}

#tarifs[data-billing='once'] .billing-option[data-mode='once'],
#tarifs[data-billing='monthly'] .billing-option[data-mode='monthly'] {
    color: var(--text-bright);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--surface-glass);
    padding: 3rem 2.2rem;
    border-radius: 20px;
    border: 1px solid var(--surface-border-strong);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 1rem;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(154, 177, 255, 0.18), rgba(118, 208, 255, 0.14));
    border: 2px solid rgba(170, 190, 255, 0.5);
    box-shadow: 0 22px 55px rgba(86, 110, 210, 0.25);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #050613;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(170, 190, 255, 0.55);
    background: var(--surface-glass-strong);
    box-shadow: 0 18px 40px rgba(70, 96, 210, 0.25);
}

.pricing-card.featured:hover {
    background: linear-gradient(135deg, rgba(154, 177, 255, 0.24), rgba(118, 208, 255, 0.2));
    box-shadow: 0 28px 60px rgba(86, 110, 210, 0.28);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 1.2rem;
    min-height: 7rem;
    text-align: center;
}

.price-note {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.price-amount,
.price-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
    min-height: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 220px;
}

.price-label:empty {
    display: none;
}

.price.price-custom .price-amount {
    font-size: clamp(2rem, 3vw, 2.4rem);
}

.price.price-custom .price-label {
    font-size: 0.95rem;
    min-height: 1.2rem;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.pricing-description {
    flex: 1;
}

.pricing-subtitle {
    color: var(--accent-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-card.custom {
    border-color: rgba(155, 176, 255, 0.22);
}

/* Social Proof */
.social-proof {
    text-align: center;
    margin: 4rem 0 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.social-proof strong {
    color: var(--accent-primary);
    font-weight: 600;
}


/* Contact Form */
.contact-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

label {
    color: var(--accent-primary);
    font-weight: 500;
}

input,
textarea,
select {
    background: var(--surface-input);
    border: 1px solid rgba(155, 176, 255, 0.26);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: var(--text-bright);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #666;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(155, 176, 255, 0.12);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 3rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(155, 176, 255, 0.26);
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M2 2l5 5 5-5' fill='none' stroke='%23AAB8FF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px 10px;
}

select:hover {
    border-color: rgba(170, 190, 255, 0.4);
    background-color: rgba(155, 176, 255, 0.1);
}

select:focus {
    box-shadow: none;
}

select::-ms-expand {
    display: none;
}

textarea {
    resize: none;
    min-height: 100px;
    overflow: hidden;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-top: 0.8rem;
    font-weight: 500;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.contact-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.contact-reassurance {
    flex-basis: 100%;
    text-align: center;
    color: #bdbdbd;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(6, 7, 22, 0.92), rgba(5, 6, 18, 0.85));
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(155, 176, 255, 0.16);
}

.footer-content {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Legal page */
.subpage-hero {
    padding: 160px 0 80px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(155, 176, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(118, 208, 255, 0.14) 0%, transparent 55%),
        #060718;
}

.subpage-hero h1 {
    font-size: 3rem;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.page-intro {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-main {
    background: #080808;
}

.legal-section {
    padding: 5rem 0 6rem;
}

.legal-block {
    background: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(155, 176, 255, 0.16);
    border-radius: 18px;
    padding: 2.75rem 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, border 0.3s ease;
}

.legal-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #f0f0f0;
}

.legal-block p {
    color: #cfd0d4;
}

.legal-block a {
    color: var(--accent-primary);
    text-decoration: none;
}

.legal-block a:hover {
    color: var(--accent-secondary);
}

.legal-placeholder {
    font-style: italic;
    color: rgba(170, 190, 255, 0.8);
}

/* Project page */
.project-hero {
    padding: 6rem 0 4rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(155, 176, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(118, 208, 255, 0.12), transparent 50%),
        linear-gradient(135deg, rgba(9, 11, 28, 0.96), rgba(6, 7, 20, 0.95));
}

.project-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.project-back:hover {
    color: var(--accent-primary);
}

.project-heading h1 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 1rem;
}

.project-category {
    display: inline-block;
    color: var(--accent-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.project-tagline {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.project-meta {
    margin-top: 2.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.meta-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.026);
    border: 1px solid var(--surface-border);
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9f9f9f;
}

.meta-value {
    display: block;
    margin-top: 0.7rem;
    color: var(--text-bright);
    font-weight: 600;
    line-height: 1.6;
}

.project-link {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dashed rgba(170, 190, 255, 0.5);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.project-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: rgba(118, 208, 255, 0.6);
}

.project-content,
.project-analysis,
.project-gallery,
.project-conclusion {
    padding: 4.5rem 0;
}

.project-story {
    max-width: 960px;
    margin: 0 auto;
}

.project-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.project-story p {
    color: #cbcbcb;
    margin-bottom: 1rem;
}

.project-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(155, 176, 255, 0.16);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 25px 48px rgba(0, 0, 0, 0.22);
}

.project-card h3 {
    margin-bottom: 1.5rem;
    color: #f2f2f2;
    font-size: 1.3rem;
}

.project-card h3:not(:first-child) {
    margin-top: 2.5rem;
}

.project-card--accent {
    background: linear-gradient(140deg, rgba(154, 177, 255, 0.22), rgba(9, 11, 30, 0.88));
    border-color: rgba(170, 190, 255, 0.42);
}

.project-card--highlight {
    background: linear-gradient(140deg, rgba(118, 208, 255, 0.22), rgba(20, 14, 35, 0.88));
    border-color: rgba(118, 208, 255, 0.4);
}

.project-list {
    list-style: none;
}

.project-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
    color: #cacaca;
}

.project-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent-secondary);
    box-shadow: 0 0 12px rgba(118, 208, 255, 0.55);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.analysis-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.analysis-grid .project-list li {
    margin-bottom: 1rem;
}

.project-heading-alt {
    text-align: center;
}

.project-heading-alt h2 {
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(155, 176, 255, 0.24), rgba(30, 18, 60, 0.8));
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 246, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 58%);
    mix-blend-mode: screen;
    opacity: 0.6;
}

.project-media span {
    position: relative;
    z-index: 1;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.project-figure figcaption {
    margin-top: 1rem;
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-card--highlight .project-note {
    margin-top: 1.5rem;
}

.project-note {
    color: #d6d6d6;
    font-size: 0.95rem;
}

/* Animations on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        font-size: 16px;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(6, 7, 20, 0.96);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--surface-border);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(155, 176, 255, 0.12);
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .subtitle,
    .section-intro {
        font-size: 1.1rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .billing-toggle {
        width: 100%;
        --toggle-padding: 0.3rem;
    }

    .billing-option {
        padding: 0.75rem 0.85rem;
        align-items: center;
        text-align: center;
    }

    .billing-option .option-note {
        text-align: center;
        font-size: 0.78rem;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-note {
        max-width: 100%;
        text-align: center;
    }

    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-glow {
        inset: auto 10% -45% 10%;
    }

    .why-grid,
    .business-cards,
    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step:not(:last-child)::after {
        background: none
    }

    .contact-links {
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .sticky-cta {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 1.2rem;
        transform: none;
        transition: opacity 0.3s ease;
    }

    .sticky-cta.visible {
        transform: none;
    }

    .sticky-cta .cta-button {
        width: 100%;
        display: block;
        text-align: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        box-shadow: none;
        animation: none;
    }

    .subpage-hero {
        padding: 130px 0 60px;
    }

    .subpage-hero h1 {
        font-size: 2.2rem;
    }

    .legal-section {
        padding: 3.5rem 0 4.5rem;
    }

    .legal-block {
        padding: 2rem 1.8rem;
        margin-bottom: 2rem;
    }

    .legal-block h2 {
        font-size: 1.4rem;
    }

    .page-intro {
        font-size: 1rem;
    }

    .project-hero {
        padding: 4.5rem 0 3.5rem;
    }

    .project-meta {
        grid-template-columns: 1fr;
    }

    .project-story h2 {
        font-size: 1.8rem;
    }

    .project-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .project-card {
        padding: 2rem 1.6rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 90vh;
    }

    .business-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .project-category {
        font-size: 0.75rem;
    }

    .project-heading h1 {
        font-size: 2rem;
    }

    .project-meta {
        gap: 1.2rem;
    }

    .billing-toggle {
        --toggle-padding: 0.25rem;
    }

    .billing-option {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem;
        gap: 0.1rem;
    }

    .billing-option .option-note {
        font-size: 0.75rem;
    }
    
    .project-card {
        padding: 1.8rem 1.4rem;
    }

}
