:root {
    --primary: #00E5A0;
    --primary-dark: #00C98A;
    --primary-glow: rgba(0, 229, 160, 0.4);
    --dark: #0A0A0A;
    --dark-lighter: #141414;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --light: #FFFFFF;
    --light-muted: rgba(255, 255, 255, 0.7);
    --light-subtle: rgba(255, 255, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #00E5A0 0%, #00D4AA 50%, #00C9B4 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

.cursor,
.cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease;
    }

    .cursor-follower {
        display: block;
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1px solid var(--primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    }
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--light);
}

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 0.6;
}

.btn-ghost {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--dark-border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 160, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

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

.link-arrow svg {
    transition: transform 0.3s ease;
}

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

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

.section-label.light {
    color: var(--light-subtle);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-muted);
    max-width: 600px;
}

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

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

.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 40%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        radial-gradient(circle at 20% 80%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 229, 160, 0.15) 0%, transparent 40%);
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 900px;
    padding: 6rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(0, 229, 160, 0.1);
    border: 1px solid rgba(0, 229, 160, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-subtle);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 65%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

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

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

.hero-scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--light-subtle);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

.intro-section {
    padding: 8rem 0;
    background: var(--dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.intro-text {
    font-size: 1.125rem;
    color: var(--light-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content p {
    color: var(--light-subtle);
    margin-bottom: 2rem;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 160, 0.15);
    border-radius: 6px;
    color: var(--primary);
}

.intro-feature span {
    font-weight: 500;
}

.intro-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card.main {
    width: 380px;
    height: 480px;
    right: 0;
    top: 0;
    z-index: 2;
}

.visual-card.floating {
    width: 240px;
    height: 300px;
    left: 0;
    bottom: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

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

.card-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
}

.badge-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--light-subtle);
}

.visual-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.services-section {
    padding: 8rem 0;
    background: var(--dark-lighter);
}

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

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

.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(0, 229, 160, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 14px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--light-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--light-subtle);
}

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

.service-link svg {
    transition: transform 0.3s ease;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-border);
}

.services-cta p {
    color: var(--light-muted);
    margin-bottom: 1rem;
}

.results-section {
    padding: 8rem 0;
    background: var(--dark);
}

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

.result-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.result-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.result-before,
.result-after {
    position: relative;
    height: 280px;
}

.result-before img,
.result-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-after .image-label {
    background: var(--primary);
    color: var(--dark);
}

.result-info {
    padding: 2rem;
}

.result-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.result-stat {
    text-align: left;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--light-subtle);
}

.result-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.result-info p {
    color: var(--light-muted);
    font-style: italic;
    line-height: 1.7;
}

.results-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-section {
    padding: 8rem 0;
    background: var(--dark-lighter);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.process-step.reverse {
    grid-template-columns: 400px 1fr 100px;
}

.process-step.reverse .step-number {
    order: 3;
}

.process-step.reverse .step-visual {
    order: 1;
}

.process-step.reverse .step-content {
    order: 2;
    text-align: right;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-border);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.step-visual {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    padding: 8rem 0;
    background: var(--dark);
    overflow: hidden;
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 400px;
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-card > p {
    color: var(--light-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--light-subtle);
}

.blog-preview {
    padding: 8rem 0;
    background: var(--dark-lighter);
}

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

.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.blog-card.featured {
    grid-row: span 2;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: block;
    font-size: 0.8rem;
    color: var(--light-subtle);
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.blog-card.featured .blog-content h3 {
    font-size: 1.5rem;
}

.blog-content p {
    color: var(--light-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--light-muted);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    margin-bottom: 2.5rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-subtle);
}

.trust-item svg {
    color: var(--primary);
}

.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--dark-border);
}

.footer-brand p {
    color: var(--light-muted);
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--light-muted);
    transition: all 0.3s ease;
}

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

.footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer nav a,
.footer address p,
.footer address a {
    color: var(--light-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-style: normal;
}

.footer nav a:hover,
.footer address a:hover {
    color: var(--primary);
}

.footer address p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: var(--light-subtle);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--light-subtle);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

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

    .process-step,
    .process-step.reverse {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }

    .process-step .step-visual,
    .process-step.reverse .step-visual {
        display: none;
    }

    .process-step.reverse .step-content {
        text-align: left;
        order: 2;
    }

    .process-step.reverse .step-number {
        order: 1;
    }
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .intro-visual {
        height: 400px;
        order: -1;
    }

    .visual-card.main {
        width: 100%;
        height: 100%;
        right: auto;
        left: 0;
    }

    .visual-card.floating {
        display: none;
    }

    .results-showcase {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.featured {
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 1rem;
        padding: 8rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--dark-border);
        align-content: start;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 1rem;
        background: var(--dark-card);
        border: 1px solid var(--dark-border);
        border-radius: 12px;
        color: var(--light);
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
    }

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

    .nav a:hover,
    .nav a.active {
        color: var(--primary);
        background: var(--dark-lighter);
        border-color: var(--primary);
        transform: scale(1.05);
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--primary);
    }

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

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .process-step.reverse .step-content {
        text-align: center;
    }

    .testimonial-track {
        flex-direction: column;
    }

    .testimonial-card {
        flex: none;
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

.page-header {
    padding: 10rem 0 5rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--light-subtle);
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--light-subtle);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--light-muted);
    max-width: 600px;
    line-height: 1.7;
}

.content-section {
    padding: 5rem 0;
}

.content-section.alt {
    background: var(--dark-lighter);
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--light-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.credential-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
}

.credential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.credential-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.credential-card p {
    font-size: 0.9rem;
    color: var(--light-subtle);
}

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

.pricing-card {
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.pricing-discount {
    padding: 0.75rem 1rem;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-discount span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.footer-demo {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
}

.footer-demo p {
    font-size: 0.85rem;
    color: var(--light-subtle);
}

.footer-demo a {
    color: var(--primary);
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dark-border);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--light-subtle);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    color: var(--light-subtle);
    font-size: 0.9rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-form-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--light-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--light-muted);
    font-size: 0.95rem;
}

.info-content a {
    color: var(--primary);
}

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

    .about-image {
        height: 400px;
        order: -1;
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}

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

.result-stat .result-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.result-stat .result-label {
    color: var(--light-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.transformation-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.transformation-images {
    padding: 1.5rem 1.5rem 0;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.before-after .before,
.before-after .after {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after .label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.before-after .after .label {
    background: var(--primary);
    color: var(--dark);
}

.transformation-content {
    padding: 1.5rem;
}

.transformation-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.transformation-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.trans-stat {
    display: flex;
    flex-direction: column;
}

.trans-stat .trans-label {
    font-size: 0.75rem;
    color: var(--light-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trans-stat .trans-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.transformation-content > p {
    color: var(--light-muted);
    font-style: italic;
    line-height: 1.7;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-full {
    padding: 2.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
}

.testimonial-full blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-full .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-full .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-full .testimonial-author strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-full .testimonial-author span {
    font-size: 0.85rem;
    color: var(--light-subtle);
}

.blog-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    color: var(--light-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.blog-featured {
    margin-bottom: 3rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-subtle);
    font-size: 0.85rem;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-content > p {
    color: var(--light-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-content > p {
    color: var(--light-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--light-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.pagination-btn.next {
    padding: 0 1.5rem;
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content > p {
    color: var(--light-muted);
    line-height: 1.7;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    font-size: 0.8rem;
    color: var(--light-subtle);
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
}

.info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-block > p {
    color: var(--light-muted);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 10px;
    color: var(--primary);
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.75rem;
    color: var(--light-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--light-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 2.5rem;
}

.intake-form .form-header {
    margin-bottom: 2rem;
}

.intake-form .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.intake-form .form-header p {
    color: var(--light-muted);
}

.intake-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.intake-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.intake-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-muted);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkbox-label a {
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-subtle);
    margin-top: 1.5rem;
}
 
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

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

    .transformations-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 300px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 160, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(0, 229, 160, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    flex: 1;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: var(--light-muted);
    line-height: 1.8;
    margin: 0;
}

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

    .result-stat .result-value {
        font-size: 2rem;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-after .before,
    .before-after .after {
        height: 200px;
    }

    .transformation-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 2rem;
    }

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

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question span {
        font-size: 1rem;
    }
}
