:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-accent: #c8ff00;
    --color-accent-dark: #a3cc00;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-border: #222222;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-text {
    color: var(--color-text);
}

.logo-accent {
    color: var(--color-accent);
}

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

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../img/destroyer.png') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(200, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 255, 0, 0.1) 0%, transparent 40%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    color: var(--color-text);
    text-shadow: 0 0 60px rgba(200, 255, 0, 0.3);
}

.title-accent {
    color: var(--color-accent);
    text-shadow: 0 0 60px rgba(200, 255, 0, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 255, 0, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
    border-left: 1px solid #b0b0b0;
}

.cta-stat {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.cta-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.feature svg {
    color: var(--color-accent);
}

.hero-vertical-text {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 1;
}

.hero-vertical-text span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.hero-scroll {
    position: absolute;
    right: 2rem;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

@media (max-width: 1024px) {
    .hero-vertical-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid var(--color-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-info {
        padding-left: 0;
        border-left: none;
        align-items: center;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.reviews {
    position: relative;
    padding: 6rem 2rem;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-title-group {
    max-width: 600px;
}

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

.reviews-title .title-accent {
    display: inline;
}

.reviews-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.reviews-trustpilot {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(200, 255, 0, 0.05);
    border: 1px solid rgba(200, 255, 0, 0.15);
}

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

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
}

.trustpilot-info {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-border);
}

.review-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.review-count strong {
    color: var(--color-text);
}

.trustpilot-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviews-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews-nav-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 255, 0, 0.1);
}

.reviews-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-dots {
    display: flex;
    gap: 0.5rem;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews-dot:hover {
    background: var(--color-text-muted);
}

.reviews-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

.reviews-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.reviews-carousel-inner {
    overflow: hidden;
    padding: 8px 0;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 300px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    cursor: default;
}

.review-card:hover {
    border-color: rgba(200, 255, 0, 0.3);
    background: rgba(200, 255, 0, 0.03);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-bg);
    font-weight: 700;
    font-size: 0.875rem;
}

.reviewer-info {
    flex: 1;
    min-width: 120px;
}

.reviewer-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.reviewer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reviewer-badge svg {
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
}

.review-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card:hover .review-text {
    color: var(--color-text);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.review-service {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    background: rgba(200, 255, 0, 0.1);
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.reviews-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.reviews-cta .cta-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 1.5rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-trustpilot {
        justify-content: center;
    }

    .review-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .reviews-trustpilot {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .trustpilot-info {
        padding-left: 0;
        border-left: none;
        align-items: center;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
}

.how-it-works {
    position: relative;
    padding: 6rem 2rem;
    background: var(--color-bg);
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.hiw-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hiw-header {
    margin-bottom: 4rem;
}

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

.hiw-title .title-accent {
    color: var(--color-accent);
}

.hiw-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.hiw-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 4rem;
    align-items: center;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.hiw-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background var(--transition-fast);
}

.hiw-step:hover {
    background: rgba(200, 255, 0, 0.03);
    border-color: rgba(200, 255, 0, 0.2);
}

.hiw-step.active {
    background: rgba(200, 255, 0, 0.05);
    border-color: rgba(200, 255, 0, 0.3);
}

.hiw-step.active::before {
    background: var(--color-accent);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-border);
    transition: color var(--transition-fast);
    min-width: 40px;
}

.hiw-step.active .step-number,
.hiw-step:hover .step-number {
    color: var(--color-accent);
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.hiw-step.active .step-title {
    color: var(--color-accent);
}

.step-desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.step-arrow {
    color: var(--color-border);
    transition: all var(--transition-fast);
}

.hiw-step.active .step-arrow,
.hiw-step:hover .step-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

.hiw-support {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(200, 255, 0, 0.03);
    border: 1px solid rgba(200, 255, 0, 0.15);
}

.hiw-support h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hiw-support p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

.support-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.hiw-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.preview-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s ease;
    pointer-events: none;
}

.preview-image.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--color-text-muted);
}

.placeholder-image svg {
    color: var(--color-accent);
    opacity: 0.5;
}

.placeholder-image span {
    font-size: 0.875rem;
    font-weight: 500;
}

.placeholder-image .placeholder-note {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.preview-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

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

    .hiw-preview {
        order: -1;
    }

    .preview-frame {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 1.5rem;
    }

    .hiw-header {
        margin-bottom: 2rem;
    }

    .hiw-step {
        padding: 1rem;
    }

    .step-number {
        font-size: 1.25rem;
        min-width: 32px;
    }

    .step-desc {
        display: none;
    }

    .preview-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hiw-step {
        gap: 0.75rem;
    }

    .step-arrow {
        display: none;
    }
}

.approach {
    position: relative;
    padding: 8rem 2rem;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.2);
}

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

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

.approach-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

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

.approach-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.approach-card:hover {
    background: rgba(200, 255, 0, 0.03);
    border-color: rgba(200, 255, 0, 0.3);
    transform: translateY(-8px);
}

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

.approach-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.05) 0%, rgba(200, 255, 0, 0.02) 100%);
    border-color: rgba(200, 255, 0, 0.2);
}

.card-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.approach-card:hover .card-title {
    color: var(--color-accent);
}

.card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.card-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(200, 255, 0, 0.05);
    line-height: 1;
    transition: color var(--transition-fast);
}

.approach-card:hover .card-number {
    color: rgba(200, 255, 0, 0.1);
}

.approach-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 255, 0, 0.1);
}

.bg-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 255, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 255, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

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

    .approach-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .approach {
        padding: 5rem 1.5rem;
    }

    .approach-header {
        margin-bottom: 3rem;
    }

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

    .approach-card.featured {
        grid-column: span 1;
    }

    .approach-card {
        padding: 2rem 1.5rem;
    }

    .card-number {
        font-size: 3rem;
    }
}

.dashboard-preview {
    position: relative;
    padding: 8rem 2rem;
    background: var(--color-bg);
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-content {
    max-width: 540px;
}

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

.dashboard-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dash-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.dash-feature:hover {
    border-color: rgba(200, 255, 0, 0.3);
    background: rgba(200, 255, 0, 0.03);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.1);
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.dashboard-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.device-tablet {
    position: relative;
    z-index: 2;
}

.device-phone {
    position: absolute;
    right: -30px;
    bottom: -20px;
    z-index: 3;
    width: 140px;
}

.device-frame {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.device-phone .device-frame {
    border-radius: 20px;
    padding: 8px;
}

.device-screen {
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
}

.device-phone .device-screen {
    border-radius: 12px;
}

.screen-content {
    padding: 1.5rem;
}

.device-phone .screen-content {
    padding: 1rem;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.mock-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mock-text {
    height: 10px;
    background: var(--color-border);
    border-radius: 4px;
}

.mock-text.w-40 { width: 40%; }
.mock-text.w-50 { width: 50%; }
.mock-text.w-60 { width: 60%; }
.mock-text.w-70 { width: 70%; }
.mock-text.w-80 { width: 80%; }
.mock-text.muted { opacity: 0.5; }

.mock-progress {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.progress-label .accent {
    color: var(--color-accent);
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background: var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 0.75rem;
    background: rgba(200, 255, 0, 0.05);
    border: 1px solid rgba(200, 255, 0, 0.1);
}

.stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

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

.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-message {
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    max-width: 80%;
}

.chat-message.incoming {
    background: var(--color-border);
    align-self: flex-start;
}

.chat-message.outgoing {
    background: rgba(200, 255, 0, 0.2);
    align-self: flex-end;
}

.chat-message .mock-text {
    height: 8px;
}

.mock-notif {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.5;
}

.notif-icon.success {
    background: #00ff88;
}

.mock-notif .mock-text {
    height: 8px;
    flex: 1;
}

.mockup-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

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

    .dashboard-content {
        max-width: 100%;
        text-align: center;
    }

    .dashboard-content .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-content .btn-primary {
        margin: 0 auto;
    }

    .dash-feature {
        text-align: left;
    }

    .mockup-container {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dashboard-preview {
        padding: 5rem 1.5rem;
    }

    .dashboard-subtitle {
        margin-bottom: 2rem;
    }

    .dash-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .device-phone {
        width: 100px;
        right: -10px;
        bottom: -10px;
    }

    .screen-content {
        padding: 1rem;
    }

    .mock-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-box {
        padding: 0.5rem;
    }

    .stat-value {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .device-phone {
        display: none;
    }

    .mockup-glow {
        width: 250px;
        height: 250px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-mockup {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dashboard-mockup.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-mockup.animate-visible .device-tablet {
    animation: floatDevice 6s ease-in-out infinite;
}

.dashboard-mockup.animate-visible .device-phone {
    animation: floatDevice 6s ease-in-out infinite 0.5s;
}

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

.faq {
    position: relative;
    padding: 8rem 2rem;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    overflow: hidden;
}

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

.faq-item.active {
    border-color: rgba(200, 255, 0, 0.4);
    background: rgba(200, 255, 0, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(200, 255, 0, 0.02);
}

.question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 255, 0, 0.1);
    color: var(--color-accent);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.faq-item.active .question-icon {
    background: var(--color-accent);
    color: var(--color-bg);
}

.question-text {
    flex: 1;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
}

.question-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.faq-item.active .question-toggle {
    transform: rotate(180deg);
    color: var(--color-accent);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
}

.answer-content {
    padding: 0 1.5rem 1.5rem 5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.answer-content p {
    margin-bottom: 1rem;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content strong {
    color: var(--color-text);
}

.answer-content ul {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.answer-content li {
    margin-bottom: 0.75rem;
    position: relative;
}

.answer-content li::marker {
    color: var(--color-accent);
}

.faq-contact {
    max-width: 500px;
    margin: 0 auto;
}

.contact-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, rgba(200, 255, 0, 0.02) 100%);
    border: 1px solid rgba(200, 255, 0, 0.2);
    text-align: center;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: rgba(200, 255, 0, 0.1);
    color: var(--color-accent);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-card .btn-primary {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1024px) {
    .faq-contact {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 5rem 1.5rem;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .question-icon svg {
        width: 20px;
        height: 20px;
    }

    .question-text {
        font-size: 0.9375rem;
    }

    .answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .question-icon {
        display: none;
    }

    .answer-content ul {
        padding-left: 1rem;
    }
}

.features {
    position: relative;
    padding: 8rem 2rem;
    background: var(--color-bg);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.features-intro {
    max-width: 450px;
}

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

.features-desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.feature-card:hover {
    background: rgba(200, 255, 0, 0.03);
    border-color: rgba(200, 255, 0, 0.3);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.1);
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-card-icon {
    background: var(--color-accent);
    color: var(--color-bg);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.features-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    pointer-events: none;
}

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

    .features-intro {
        max-width: 100%;
        text-align: center;
    }

    .features-intro .btn-primary {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 5rem 1.5rem;
    }

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

.seo-content {
    position: relative;
    padding: 6rem 2rem;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.seo-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.seo-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.seo-main {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.seo-main p {
    margin-bottom: 1.5rem;
}

.seo-main h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2.5rem 0 1rem;
}

.seo-main h3:first-of-type {
    margin-top: 0;
}

.seo-main strong {
    color: var(--color-accent);
}

.seo-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.seo-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.seo-list li::marker {
    color: var(--color-accent);
}

.seo-list strong {
    color: var(--color-text);
}

.seo-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
}

.sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, rgba(200, 255, 0, 0.02) 100%);
    border-color: rgba(200, 255, 0, 0.2);
    text-align: center;
}

.sidebar-card.highlight h4 {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-card.highlight p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.sidebar-card.highlight .btn-primary {
    width: 100%;
    justify-content: center;
}

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

    .seo-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .seo-content {
        padding: 4rem 1.5rem;
    }

    .seo-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        min-width: 100%;
    }
}

.footer {
    background: var(--color-bg);
}

.payment-bar {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
    white-space: nowrap;
}

.payment-text:hover {
    opacity: 1;
}

.footer-main {
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer-contact a {
    color: var(--color-accent);
    transition: opacity var(--transition-fast);
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.footer-support p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--color-accent);
    color: var(--color-bg) !important;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
}

.btn-chat svg {
    stroke: var(--color-bg);
}

.btn-chat:hover {
    background: var(--color-accent-dark);
}

.btn-help {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
}

.btn-help:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 1.5rem;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .payment-methods {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }

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

/* ========================================
   Legal Pages Styling
   ======================================== */

.legal-page {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem 6rem;
    background: var(--color-bg);
}

.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 255, 0, 0.08) 0%, transparent 60%),
        linear-gradient(to bottom, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
    pointer-events: none;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.legal-header .title-accent {
    color: var(--color-accent);
    text-shadow: 0 0 40px rgba(200, 255, 0, 0.3);
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
}

.legal-updated::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--color-accent);
    flex-shrink: 0;
}

.legal-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.legal-section a:hover {
    border-bottom-color: var(--color-accent);
}

.legal-section ul,
.legal-section ol {
    margin: 1.25rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-section li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    opacity: 0.6;
}

.legal-section ol {
    counter-reset: legal-counter;
}

.legal-section ol li {
    counter-increment: legal-counter;
}

.legal-section ol li::before {
    content: counter(legal-counter);
    width: 24px;
    height: 24px;
    background: rgba(200, 255, 0, 0.1);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.15em;
}

.legal-section li strong {
    color: var(--color-text);
}

.legal-section.highlight-box {
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.05) 0%, rgba(200, 255, 0, 0.02) 100%);
    border: 1px solid rgba(200, 255, 0, 0.2);
    padding: 2rem;
    margin: 1rem 0;
    border-bottom: 1px solid rgba(200, 255, 0, 0.2);
}

.legal-section.highlight-box h2::before {
    display: none;
}

.legal-section .contact-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-section .contact-block p {
    margin-bottom: 0;
    color: var(--color-text);
}

.legal-nav {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-medium);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200, 255, 0, 0.05);
}

.btn-secondary svg {
    transition: transform var(--transition-fast);
}

.btn-secondary:hover svg {
    transform: translateX(-4px);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1.5rem 4rem;
    }

    .legal-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .legal-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .legal-section {
        padding: 2rem 0;
    }

    .legal-section h2 {
        font-size: 1.25rem;
        gap: 0.75rem;
    }

    .legal-section h2::before {
        width: 3px;
        height: 20px;
    }

    .legal-section.highlight-box {
        padding: 1.5rem;
    }

    .legal-nav {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 5rem 1rem 3rem;
    }

    .legal-section li {
        padding-left: 1.5rem;
    }

    .legal-section ol li::before {
        width: 20px;
        height: 20px;
        font-size: 0.6875rem;
    }
}
