@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --aw-display: 'Space Grotesk', 'Inter', sans-serif;
    --aw-mono: 'JetBrains Mono', ui-monospace, monospace;
    --aw-violet: #7a7ff5;
    --aw-violet-deep: #5e6ad2;
    --aw-violet-glow: rgba(122, 127, 245, 0.35);
    --aw-magenta: #f472b6;
    --aw-cyan: #22d3ee;
    --aw-lime: #bef264;
    --aw-bg: #10131c;
    --aw-bg-deep: #0a0c14;
    --aw-text: #f5f6fa;
    --aw-text-muted: #a0a3b5;
    --aw-border: #262936;
}

html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body.has-aw-cursor {
    cursor: none;
}
body.has-aw-cursor a,
body.has-aw-cursor button,
body.has-aw-cursor input,
body.has-aw-cursor textarea,
body.has-aw-cursor .btn {
    cursor: none;
}

.aw-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
}
body:not(.has-aw-cursor) .aw-cursor {
    display: none;
}
.aw-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transition: width 200ms ease, height 200ms ease, background 200ms ease;
}
.aw-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: width 260ms ease, height 260ms ease, border-color 260ms ease, background 260ms ease;
}
.aw-cursor.aw-cursor-hover .aw-cursor-dot {
    width: 0;
    height: 0;
}
.aw-cursor.aw-cursor-hover .aw-cursor-ring {
    width: 64px;
    height: 64px;
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
}
.aw-cursor.aw-cursor-out .aw-cursor-dot,
.aw-cursor.aw-cursor-out .aw-cursor-ring {
    opacity: 0;
}

.aw-loader {
    position: fixed;
    inset: 0;
    background: var(--aw-bg);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 600ms cubic-bezier(0.65, 0, 0.35, 1), transform 800ms cubic-bezier(0.76, 0, 0.24, 1);
}
.aw-loader.aw-loader-done {
    opacity: 0;
    transform: translateY(-100%);
}
body.aw-loader-done {
    overflow: visible;
}
.aw-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.aw-loader-mark {
    font-family: var(--aw-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--aw-violet);
    letter-spacing: -0.02em;
    padding: 14px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(122, 127, 245, 0.15), rgba(94, 106, 210, 0.05));
    border: 1px solid rgba(122, 127, 245, 0.25);
    box-shadow: 0 0 60px rgba(122, 127, 245, 0.25);
    animation: awLoaderPulse 1.4s ease-in-out infinite;
}
@keyframes awLoaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.aw-loader-text {
    font-family: var(--aw-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aw-text);
    letter-spacing: -0.02em;
}
.aw-loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}
.aw-loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--aw-violet), var(--aw-magenta));
    transition: width 180ms ease;
}

.aw-hero {
    position: relative;
    min-height: 560px;
    padding: 130px 0 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.aw-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(122, 127, 245, 0.35), transparent 70%);
    filter: blur(90px);
    border-radius: 50%;
    animation: awBlob1 22s ease-in-out infinite;
    z-index: 0;
}
.aw-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.28), transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    animation: awBlob2 26s ease-in-out infinite;
    z-index: 0;
}
@keyframes awBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, 8vh) scale(1.1); }
    66% { transform: translate(-5vw, 15vh) scale(0.95); }
}
@keyframes awBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15vw, -10vh) scale(1.15); }
}

.aw-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aw-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--aw-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(12px);
    margin-bottom: 32px;
}
.aw-hero-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aw-violet);
    box-shadow: 0 0 14px var(--aw-violet-glow);
    animation: awDotPulse 2s ease-in-out infinite;
}
@keyframes awDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.aw-hero-title {
    font-family: var(--aw-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--aw-text);
    margin: 0 0 28px;
    text-transform: none;
    max-width: 900px;
    overflow: visible;
}
.aw-hero-title .line {
    display: block;
    overflow: visible;
}
.aw-hero-title .word {
    display: inline-block;
    overflow: visible;
    padding-right: 0.05em;
}
.aw-hero-title .char {
    display: inline-block;
    transform-origin: bottom;
}
.aw-hero-title .aw-gradient {
    color: var(--aw-violet);
    background: linear-gradient(120deg, var(--aw-violet) 0%, var(--aw-magenta) 50%, var(--aw-violet-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.aw-hero-title .aw-gradient .char,
.aw-hero-title .aw-gradient .word {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--aw-violet);
}

.aw-hero-sub {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    max-width: 680px;
    color: var(--aw-text-muted);
    margin-bottom: 36px;
    font-weight: 400;
}
.aw-hero-sub strong {
    color: var(--aw-text);
    font-weight: 600;
}

.aw-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}

.aw-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--aw-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
    text-decoration: none;
    white-space: nowrap;
    will-change: transform;
}
.aw-btn-primary {
    background: var(--aw-text);
    color: var(--aw-bg);
    border-color: var(--aw-text);
}
.aw-btn-primary:hover {
    background: var(--aw-violet);
    color: var(--aw-text);
    border-color: var(--aw-violet);
}
.aw-btn-ghost {
    background: transparent;
    color: var(--aw-text);
    border-color: rgba(255, 255, 255, 0.18);
}
.aw-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}
.aw-btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
}

.aw-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 820px;
}
.aw-hero-meta-item {
    text-align: center;
}
.aw-hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.aw-hero-meta-label {
    font-family: var(--aw-mono);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.aw-hero-meta-value {
    font-family: var(--aw-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--aw-text);
    letter-spacing: -0.02em;
}

.aw-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.aw-section-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.aw-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--aw-mono);
    font-size: 0.72rem;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
}
.aw-section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--aw-text-muted);
}
.aw-section-title {
    font-family: var(--aw-display);
    font-size: clamp(1.7rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.028em;
    color: var(--aw-text);
    margin: 0 0 20px;
    max-width: 900px;
}
.aw-section-title .aw-gradient {
    background: linear-gradient(120deg, var(--aw-violet), var(--aw-magenta), var(--aw-violet-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.aw-marquee {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid var(--aw-border);
    border-bottom: 1px solid var(--aw-border);
    background: rgba(255, 255, 255, 0.02);
}
.aw-marquee-inner {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    will-change: transform;
}
.aw-marquee-item {
    font-family: var(--aw-display);
    font-size: clamp(1.3rem, 2.6vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--aw-text);
    display: inline-flex;
    align-items: center;
    gap: 32px;
}
.aw-marquee-item::after {
    content: '✦';
    color: var(--aw-violet);
    font-size: 0.7em;
    opacity: 0.7;
}

.aw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--aw-border);
    border: 1px solid var(--aw-border);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 80px;
}
.aw-service-card {
    background: var(--aw-bg);
    padding: 48px 36px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 400ms ease;
    text-decoration: none;
    color: var(--aw-text);
    position: relative;
    overflow: hidden;
}
.aw-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(122, 127, 245, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 400ms ease;
}
.aw-service-card:hover::before {
    opacity: 1;
}
.aw-service-card:hover {
    background: rgba(15, 16, 21, 0.8);
}
.aw-service-number {
    font-family: var(--aw-mono);
    font-size: 0.75rem;
    color: var(--aw-text-muted);
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}
.aw-service-title {
    font-family: var(--aw-display);
    font-size: clamp(1.15rem, 1.6vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--aw-text);
    margin: 16px 0 12px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}
.aw-service-desc {
    font-size: 0.95rem;
    color: var(--aw-text-muted);
    line-height: 1.55;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.aw-service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--aw-mono);
    font-size: 0.78rem;
    color: var(--aw-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    transition: gap 300ms ease;
}
.aw-service-card:hover .aw-service-arrow {
    gap: 16px;
}
.aw-service-arrow-icon {
    display: inline-block;
    transition: transform 300ms ease;
}
.aw-service-card:hover .aw-service-arrow-icon {
    transform: translateX(6px);
}

.aw-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--aw-border);
}
.aw-number {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.aw-number-value {
    font-family: var(--aw-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--aw-text);
}
.aw-number-label {
    font-family: var(--aw-mono);
    font-size: 0.75rem;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    max-width: 200px;
}

.aw-philosophy {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: start;
}
.aw-philosophy-sticky {
    position: sticky;
    top: 140px;
}
.aw-philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.aw-philosophy-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--aw-border);
}
.aw-philosophy-item:last-child {
    border-bottom: none;
}
.aw-philosophy-num {
    font-family: var(--aw-mono);
    font-size: 0.75rem;
    color: var(--aw-violet);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    display: block;
}
.aw-philosophy-title {
    font-family: var(--aw-display);
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--aw-text);
    margin: 0 0 14px;
    line-height: 1.15;
}
.aw-philosophy-text {
    font-size: 1.05rem;
    color: var(--aw-text-muted);
    line-height: 1.65;
    max-width: 560px;
}

.aw-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}
.aw-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(122, 127, 245, 0.18), transparent 60%);
    pointer-events: none;
}
.aw-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.aw-cta-title {
    font-family: var(--aw-display);
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--aw-text);
    margin: 0 0 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.aw-cta-title .aw-gradient {
    background: linear-gradient(120deg, var(--aw-violet), var(--aw-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .aw-philosophy {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .aw-philosophy-sticky {
        position: relative;
        top: auto;
    }
    .aw-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aw-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}
@media (max-width: 720px) {
    .aw-section {
        padding: 80px 0;
    }
    .aw-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .aw-hero-inner,
    .aw-section-inner,
    .aw-cta-inner {
        padding: 0 24px;
    }
    .aw-services-grid {
        grid-template-columns: 1fr;
    }
    .aw-numbers {
        grid-template-columns: 1fr 1fr;
    }
    .aw-hero-meta {
        gap: 24px;
    }
    .aw-hero-meta-value {
        font-size: 1.1rem;
    }
}

.aw-footer {
    position: relative;
    background: var(--aw-bg-deep);
    color: var(--aw-text);
    overflow: hidden;
    border-top: 1px solid var(--aw-border);
    margin-top: 0;
}
.aw-footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(122, 127, 245, 0.15), transparent 70%);
    filter: blur(120px);
    pointer-events: none;
}
.aw-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.aw-footer-top {
    padding: 120px 0 100px;
    border-bottom: 1px solid var(--aw-border);
}
.aw-footer-top .aw-footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}
.aw-footer-headline {
    max-width: 640px;
}
.aw-footer-title {
    font-family: var(--aw-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--aw-text);
    margin: 16px 0 24px;
}
.aw-footer-title .aw-gradient {
    background: linear-gradient(120deg, var(--aw-violet), var(--aw-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.aw-footer-sub {
    font-size: 1.05rem;
    color: var(--aw-text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 32px;
}
.aw-footer-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.aw-footer-coords {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    padding-top: 20px;
}
.aw-footer-coord {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.aw-footer-coord-label {
    font-family: var(--aw-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.aw-footer-coord-value {
    font-family: var(--aw-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--aw-text);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.aw-footer-coord a.aw-footer-coord-value:hover {
    color: var(--aw-violet);
}

.aw-footer-grid {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--aw-border);
}
.aw-footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}
.aw-footer-col-brand {
    padding-right: 32px;
}
.aw-footer-brand-text {
    font-size: 0.92rem;
    color: var(--aw-text-muted);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 340px;
}
.aw-footer-col-title {
    font-family: var(--aw-mono);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--aw-text-muted);
    margin: 0 0 20px;
}
.aw-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aw-footer-links a {
    color: var(--aw-text);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 200ms ease;
    letter-spacing: -0.005em;
}
.aw-footer-links a:hover {
    color: var(--aw-violet);
}

.aw-footer-bottom {
    padding: 28px 0 32px;
}
.aw-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.aw-footer-copy {
    font-size: 0.85rem;
    color: var(--aw-text-muted);
    font-family: var(--aw-mono);
    letter-spacing: -0.005em;
}
.aw-footer-legal {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.aw-footer-legal a {
    color: var(--aw-text-muted);
    text-decoration: none;
    transition: color 200ms ease;
}
.aw-footer-legal a:hover {
    color: var(--aw-text);
}
.aw-footer-sep {
    color: var(--aw-text-muted);
    opacity: 0.4;
}

@media (max-width: 1100px) {
    .aw-footer-top .aw-footer-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .aw-footer-cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .aw-footer-col-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}
@media (max-width: 720px) {
    .aw-footer-top {
        padding: 70px 0 60px;
    }
    .aw-footer-grid {
        padding: 56px 0 40px;
    }
    .aw-footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .aw-footer-coords {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .aw-footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

body .hero:not(.aw-hero-native) {
    position: relative;
    min-height: 520px;
    padding: 130px 0 80px;
    overflow: hidden;
    background: transparent;
}
body .hero:not(.aw-hero-native)::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(122, 127, 245, 0.28), transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
body .hero:not(.aw-hero-native)::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.22), transparent 70%);
    filter: blur(110px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
body .hero:not(.aw-hero-native) .container,
body .hero:not(.aw-hero-native) .hero-content {
    position: relative;
    z-index: 1;
}
body .hero:not(.aw-hero-native) h1 {
    font-family: var(--aw-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.028em;
    max-width: 900px;
}
body .hero:not(.aw-hero-native) .hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--aw-text-muted);
    font-family: var(--aw-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    display: inline-flex;
    backdrop-filter: blur(12px);
}
body .hero:not(.aw-hero-native) .hero-description {
    font-size: 1.05rem;
    color: var(--aw-text-muted);
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 36px;
}
body .hero:not(.aw-hero-native) .hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent !important;
    border-radius: 0 !important;
}
body .hero:not(.aw-hero-native) .hero-stat-value {
    font-family: var(--aw-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--aw-text);
    letter-spacing: -0.015em;
}
body .hero:not(.aw-hero-native) .hero-stat-label {
    font-family: var(--aw-mono);
    font-size: 0.7rem;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

body .section:not(.aw-section-native) {
    padding: 100px 0;
}
body .section:not(.aw-section-native) h2 {
    font-family: var(--aw-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.028em;
    margin-bottom: 16px;
}
body .section:not(.aw-section-native) .section-header h2 {
    margin-bottom: 12px;
}
body .section:not(.aw-section-native) .section-header p {
    font-size: 1rem;
    color: var(--aw-text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

body .card:not(.aw-card-native) {
    background: rgba(15, 16, 21, 0.5);
    border: 1px solid var(--aw-border);
    border-radius: 14px;
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}
body .card:not(.aw-card-native):hover {
    background: rgba(20, 22, 30, 0.7);
    border-color: var(--aw-border);
    transform: translateY(-2px);
}
body .card:not(.aw-card-native) h3,
body .card:not(.aw-card-native) h4 {
    font-family: var(--aw-display);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--aw-text);
}
body .card:not(.aw-card-native) .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(122, 127, 245, 0.12);
    border: 1px solid rgba(122, 127, 245, 0.2);
    color: var(--aw-violet);
    margin-bottom: 16px;
}
body .card:not(.aw-card-native) .card-text,
body .card:not(.aw-card-native) .text-muted {
    color: var(--aw-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

body .text-gradient {
    background: linear-gradient(120deg, var(--aw-violet), var(--aw-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

body .btn-primary:not(.aw-btn) {
    background: var(--aw-text);
    color: var(--aw-bg);
    border: 1px solid var(--aw-text);
    border-radius: 100px;
    padding: 14px 26px;
    font-family: var(--aw-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    box-shadow: none;
}
body .btn-primary:not(.aw-btn):hover {
    background: var(--aw-violet);
    color: var(--aw-text);
    border-color: var(--aw-violet);
    transform: translateY(-1px);
}
body .btn-secondary:not(.aw-btn) {
    background: transparent;
    color: var(--aw-text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 14px 26px;
    font-family: var(--aw-display);
    font-weight: 600;
    font-size: 0.95rem;
}
body .btn-secondary:not(.aw-btn):hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}
body .btn-ghost:not(.aw-btn) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: var(--aw-text-muted);
}
body .btn-whatsapp:not(.aw-btn) {
    border-radius: 100px;
    font-family: var(--aw-display);
    font-weight: 600;
}

body .tarif-card {
    background: rgba(15, 16, 21, 0.5);
    border: 1px solid var(--aw-border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 300ms ease, background 300ms ease;
}
body .tarif-card:hover {
    border-color: rgba(122, 127, 245, 0.3);
    background: rgba(20, 22, 30, 0.7);
}
body .tarif-prix {
    font-family: var(--aw-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--aw-violet);
    letter-spacing: -0.02em;
}

.aw-typewriter {
    display: inline-block;
    background: linear-gradient(120deg, var(--aw-violet), var(--aw-magenta), var(--aw-violet-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--aw-violet);
    font-weight: 700;
    min-width: 0.5em;
}
.aw-typewriter-cursor {
    display: inline-block;
    width: 0.06em;
    height: 0.95em;
    background: var(--aw-violet);
    margin-left: 0.08em;
    vertical-align: -0.1em;
    animation: awTypewriterBlink 1s step-end infinite;
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(122, 127, 245, 0.5);
}
@keyframes awTypewriterBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
