/* ============================================
   DESIGN TOKENS & VARIABLES (Cyberpunk Premium)
   ============================================ */
:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-darker: #020202;
    --bg-card: rgba(15, 15, 20, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --text-muted: #6b6b78;

    /* Accents (Cyberpunk / Neon theme) */
    --accent-emerald: #10b981;
    --accent-emerald-glow: rgba(16, 185, 129, 0.3);

    --accent-purple: #8b5cf6;
    --accent-purple-glow: rgba(139, 92, 246, 0.3);

    --accent-blue: #3b82f6;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Shadows & Glassmorphism */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --shadow-neon-emerald: 0 0 20px var(--accent-emerald-glow);
    --shadow-neon-purple: 0 0 20px var(--accent-purple-glow);

    --blur: blur(16px);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: var(--accent-emerald);
    color: var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-emerald);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text.emerald {
    background-image: linear-gradient(135deg, #34d399, #059669);
}

.gradient-text.purple {
    background-image: linear-gradient(135deg, #a78bfa, #6d28d9);
}

/* ============================================
   BACKGROUND EFFECTS (Cyberpunk Glows)
   ============================================ */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}

.glow-emerald {
    top: -100px;
    left: -200px;
    background: var(--accent-emerald);
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-purple {
    top: 40%;
    right: -200px;
    background: var(--accent-purple);
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    /* Фейд сетки чтобы она исчезала к низу */
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: -100px;
    animation: drift 25s infinite alternate ease-in-out;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: drift 15s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 50px);
    }
}

/* ============================================
   LAYOUT & UTILITIES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section-padding {
    padding: 8rem 0;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

.full-width {
    width: 100%;
    text-align: center;
}

.mt-sm {
    margin-top: 1rem;
}

/* Reveal Animations Classes (Triggered by JS) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald), #059669);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 50%;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(2, 2, 2, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.logo-accent {
    color: var(--accent-emerald);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-emerald);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    /* Компенсация fixed header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-tech {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-tech>span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.tech-icons {
    display: flex;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.tech-icons i {
    transition: var(--transition-fast);
}

.tech-icons i:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero Avatar Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-container {
    position: relative;
    padding: 1rem;
    border-radius: 2rem;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.hero-avatar {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    mix-blend-mode: lighten;
}

/* Floating Badges near avatar */
.floating-badge {
    position: absolute;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-glass);
    animation: float 6s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -10%;
    color: var(--accent-emerald);
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    color: var(--accent-purple);
    animation-delay: -3s;
}

.badge-3 {
    top: 50%;
    right: -10%;
    color: var(--accent-blue);
    animation-delay: -1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-emerald);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.emerald-bg {
    background: linear-gradient(135deg, #10b981, #047857);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.purple-bg {
    background: linear-gradient(135deg, #8b5cf6, #5b21b6);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.blue-bg {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--accent-emerald);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.portfolio-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

/* На нечетных карточках меняем порядок (изображение справа) */
.portfolio-card:nth-child(even) {
    grid-template-columns: 0.8fr 1.2fr;
}

.portfolio-card:nth-child(even) .portfolio-image-container {
    order: 2;
}

.portfolio-card:nth-child(even) .portfolio-info {
    order: 1;
}

.portfolio-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    /* Убираем рамку для 3d мокапов так как у них прозрачный фон */
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    mix-blend-mode: lighten;
    /* Важно для черного фона картинок */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.portfolio-image-container:hover .portfolio-image {
    transform: scale(1.03);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.portfolio-image-container:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 3rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.portfolio-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portfolio-desc {
    color: var(--text-secondary);
}

/* ============================================
   WORKFLOW SECTION
   ============================================ */
.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-emerald) 0%, var(--accent-purple) 100%);
    opacity: 0.3;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.step:nth-child(2) .step-icon {
    color: var(--accent-emerald);
    border-color: var(--accent-emerald-glow);
}

.step:nth-child(3) .step-icon {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.step:nth-child(4) .step-icon {
    color: var(--accent-purple);
    border-color: var(--accent-purple-glow);
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.4);
}

.pricing-card.popular {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-neon-purple), inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.pricing-card:not(.popular):hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: var(--shadow-neon-emerald);
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.emerald-shadow {
    color: var(--accent-emerald);
    box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.1);
}

.purple-shadow {
    color: var(--accent-purple);
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-amount {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--accent-emerald);
    margin-top: 3px;
}

/* ============================================
   CTA SECTION & WIDGET
   ============================================ */
.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.cta-box h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.social-link:hover {
    background: var(--accent-emerald);
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-tech-note {
    font-family: monospace;
}

/* ============================================
   RESPONSIVE (MEDIA QUERIES)
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 1.5rem;
    }

    .portfolio-card,
    .portfolio-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-card:nth-child(even) .portfolio-image-container {
        order: 0;
    }

    .portfolio-card:nth-child(even) .portfolio-info {
        order: 1;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-tech {
        justify-content: center;
    }

    .avatar-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {

    .nav-btn {
        display: none;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.65);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 3rem 2rem 2rem;
        gap: 1.5rem;
        align-items: center;
        border-bottom: 1px solid var(--border-light);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        z-index: 99;
    }

    .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.5rem;
    }

    .header-logo {
        width: 250px;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 100;
    }

    .section-padding {
        padding: 5rem 0;
    }

    .process-line {
        left: 1.5rem;
    }

    .step-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-large {
        width: 100%;
    }

    .header-logo {
        width: 230px;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .badge-1 {
        left: -5%;
        top: 5%;
    }

    .badge-2 {
        right: 0;
        bottom: 5%;
    }

    .badge-3 {
        right: 0;
        top: 40%;
    }
}