/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0b0e13 0%, #0f1419 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

/* === COLORS === */
:root {
    --primary: #0f1419;
    --secondary: #1a2332;
    --accent: #e6c547;
    --gold: #d4a017;
    --text-light: #e0e0e0;
    --text-dark: #a0a0a0;
    --bg-dark: #0b0e13;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gradient-main: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    --gradient-accent: linear-gradient(135deg, #e6c547 0%, #d4a017 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: auto;
    min-height: 70px;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
}

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

.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(69%) sepia(47%) saturate(445%) hue-rotate(25deg) brightness(104%) contrast(96%);
}

.tagline {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.personal-cabinet-btn {
    background: linear-gradient(135deg, #d4a017 0%, #e6c547 100%);
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #d4a017;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    position: relative;
    overflow: hidden;
}

.personal-cabinet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.personal-cabinet-btn:hover::before {
    left: 100%;
}

.personal-cabinet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #e6c547 0%, #d4a017 100%);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* === BUTTONS === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(230, 197, 71, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: #000;
}

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

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b0e13 0%, #0f1419 50%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.1"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 2rem;
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 120px);
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    max-width: 100%;
}

.hero-title {
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}


/* Legacy icon classes - updated for new custom icons */
.feature-icon {
    font-size: 1.2rem;
}

/* Make old icon classes work with new custom icons */
.value-icon,
.contact-icon,
.step-icon,
.req-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure detail icons are properly sized */
.detail .custom-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
    width: 1.2em;
    height: 1.2em;
}

/* Story stats icons */
.story-stats .custom-icon {
    margin-right: 0.3rem;
    font-size: 0.8rem;
    width: 1em;
    height: 1em;
}

/* Step info icons */
.step-info .custom-icon {
    margin-right: 0.3rem;
    font-size: 0.9rem;
    width: 1em;
    height: 1em;
}


/* === AVANT-GARDE BACKGROUND ANIMATION === */
.avant-garde-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent), var(--gold));
    opacity: 0.1;
    animation: float-rotate 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, var(--accent), transparent);
    border-radius: 0;
    transform: rotate(45deg);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    animation-delay: -10s;
    opacity: 0.05;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: -15s;
    background: linear-gradient(135deg, var(--gold), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 0;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 70%;
    animation-delay: -7s;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.08;
}


.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 25s linear infinite;
}

.particle:nth-child(1) { 
    left: 20%; 
    animation-delay: 0s; 
    animation-duration: 20s;
}

.particle:nth-child(2) { 
    left: 40%; 
    animation-delay: -5s; 
    animation-duration: 25s;
}

.particle:nth-child(3) { 
    left: 60%; 
    animation-delay: -10s; 
    animation-duration: 18s;
}

.particle:nth-child(4) { 
    left: 80%; 
    animation-delay: -15s; 
    animation-duration: 22s;
}

.particle:nth-child(5) { 
    left: 10%; 
    animation-delay: -3s; 
    animation-duration: 30s;
}

.particle:nth-child(6) { 
    left: 70%; 
    animation-delay: -8s; 
    animation-duration: 26s;
}

.particle:nth-child(7) { 
    left: 30%; 
    animation-delay: -12s; 
    animation-duration: 19s;
}

.particle:nth-child(8) { 
    left: 90%; 
    animation-delay: -18s; 
    animation-duration: 24s;
}

@keyframes float-rotate {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(30px, -50px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translate(-20px, -80px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translate(-40px, -30px) rotate(270deg) scale(1.05); 
    }
}


@keyframes particle-float {
    0% { 
        transform: translateY(100vh) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
        transform: translateY(80vh) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-10vh) scale(1); 
    }
    100% { 
        transform: translateY(-20vh) scale(0); 
        opacity: 0; 
    }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes typewriter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === STATS SECTION === */
.stats {
    background: var(--secondary);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.stat-item {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

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

/* === SECTION PREVIEWS === */
.preview-sections {
    padding: 6rem 0;
    width: 100%;
    overflow: hidden;
}

.section-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-preview.reverse {
    direction: rtl;
}

.section-preview.reverse .preview-content {
    direction: ltr;
}

.preview-content h2 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.preview-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.preview-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--shadow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === PAYMENT SECTION === */
.payment-section {
    padding: 6rem 0;
    background: var(--secondary);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.payment-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.payment-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.4rem;
}

.payment-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contract-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contract-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 197, 71, 0.4);
}

.payment-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.info-tag {
    background: rgba(230, 197, 71, 0.1);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(230, 197, 71, 0.2);
}

.payment-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-step .step-number {
    background: var(--gradient-accent);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-step span:last-child {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === PAYMENT DETAILS === */
.payment-details {
    padding: 6rem 0;
    background: var(--gradient-main);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.detail-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.detail-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--gradient-main);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === PAGE LAYOUTS === */
.page-main {
    padding-top: 90px;
    width: 100%;
    overflow-x: hidden;
}

.page-hero {
    background: var(--gradient-main);
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: 0;
    width: 100%;
    overflow-x: hidden;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--gold);
}

/* === ABOUT PAGE === */
.about-mission {
    padding: 6rem 0;
    background: var(--secondary);
}

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

.mission-content h2 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
}

.about-story {
    padding: 6rem 0;
}

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

.story-content h2 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.code-snippet {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.snippet-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.snippet-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
}

.values {
    padding: 6rem 0;
    background: var(--secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.value-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

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

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.team-member {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(26, 35, 50, 0.5);
}

.team-member.featured {
    border: 2px solid var(--secondary);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 35, 50, 0.1) 100%);
}

.team-member.featured::before {
    opacity: 1;
    background: var(--secondary);
}

.member-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(230, 197, 71, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(230, 197, 71, 0.4);
}

.avatar-placeholder {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(230, 197, 71, 0.1);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(230, 197, 71, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .skill-tag {
    background: rgba(230, 197, 71, 0.2);
    border-color: rgba(230, 197, 71, 0.4);
    transform: translateY(-1px);
}

.achievements {
    padding: 6rem 0;
    background: var(--secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.achievement {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.achievement:hover {
    transform: translateY(-10px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #0b0e13 0%, #0f1419 50%, #1a2332 100%);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(230, 197, 71, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(230, 197, 71, 0.5) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(230, 197, 71, 0.2);
    border-radius: 20px;
    background: rgba(230, 197, 71, 0.05);
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(230, 197, 71, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(230, 197, 71, 0.1);
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-accent);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .hero-container {
        padding-top: 100px;
        gap: 2.5rem;
    }
    
    .story-grid,
    .section-preview {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-preview.reverse {
        direction: ltr;
    }
    
    .tagline {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .nav-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100vw;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        justify-content: start;
        padding: 2rem 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 0;
    }
    
    .hero-container {
        padding-top: 90px;
        padding-bottom: 2rem;
        gap: 2rem;
        min-height: auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .avant-garde-animation .floating-shape {
        opacity: 0.05;
    }
    
    
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-container {
        padding-top: 80px;
        gap: 1.5rem;
    }
    
    .stats-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-preview {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .process-overview {
        padding: 3rem 0;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        padding: 0 0.5rem;
    }
    
    .process-step {
        height: 150px;
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .step-number {
        font-size: 1.4rem;
        width: 50px;
        height: 50px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* === HOW IT WORKS PAGE === */
.process-overview {
    padding: 5rem 0;
    background: var(--secondary);
    text-align: center;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-content: center;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 200px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    font-family: 'Poppins', sans-serif;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

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

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    display: none;
}

.detailed-steps {
    padding: 6rem 0;
}

.step-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.step-detailed.reverse {
    grid-template-columns: 1fr auto;
}

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

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    font-size: 4rem;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.step-info h2 {
    margin-bottom: 2rem;
}

.step-badge {
    background: var(--accent);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-icon {
    color: var(--accent);
    font-weight: bold;
}

.requirements {
    padding: 6rem 0;
    background: var(--secondary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.requirement-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-10px);
}

.req-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.requirement-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.timeline {
    padding: 6rem 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-marker {
    background: var(--gradient-accent);
    color: #000;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: var(--shadow);
    z-index: 2;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.faq {
    padding: 6rem 0;
    background: var(--secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

/* === PROJECTS PAGE === */
.project-categories {
    padding: 4rem 0 2rem;
    background: var(--secondary);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: #000;
}

.projects-grid {
    padding: 4rem 0 6rem;
    background: var(--secondary);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.project-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    height: 200px;
    background: var(--primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-preview {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
    background: #2a2a2a;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.preview-content {
    padding: 1.5rem 1rem;
    color: white;
}

.preview-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.preview-elements {
    margin-top: 1rem;
}

.element {
    height: 8px;
    background: var(--accent);
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.element.short {
    width: 60%;
}

.preview-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-nav span {
    width: 30px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.grid-item {
    height: 25px;
    background: var(--bg-card);
    border-radius: 4px;
}

.preview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--accent);
    border-radius: 3px;
}

.webapp-preview .preview-content {
    display: flex;
    gap: 1rem;
}

.app-sidebar {
    width: 30%;
}

.sidebar-item {
    height: 12px;
    background: var(--bg-card);
    margin-bottom: 0.5rem;
    border-radius: 6px;
}

.sidebar-item.active {
    background: var(--accent);
}

.app-main {
    flex: 1;
}

.task-item {
    height: 15px;
    background: var(--bg-card);
    margin-bottom: 0.5rem;
    border-radius: 7px;
}

.task-item.checked {
    background: var(--accent);
    opacity: 0.7;
}

.chart-preview {
    display: flex;
    align-items: end;
    gap: 0.3rem;
    height: 50px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
}

.expense-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.expense-item {
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
}

.bot-preview .preview-content {
    padding: 1rem;
}

.chat-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 10px;
}

.bot-message {
    background: var(--bg-card);
}

.user-message {
    background: var(--accent);
    color: #000;
    justify-content: flex-end;
    margin-left: 2rem;
}

.chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.chat-buttons button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    font-size: 0.7rem;
    cursor: pointer;
}

.quiz-options {
    margin-bottom: 1rem;
}

.quiz-option {
    background: var(--bg-card);
    padding: 0.3rem 0.5rem;
    margin-bottom: 0.2rem;
    border-radius: 5px;
    font-size: 0.7rem;
}

.quiz-option.active {
    background: var(--accent);
    color: #000;
}

.quiz-progress {
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.quiz-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    background: var(--accent);
}

.project-info {
    padding: 2rem;
}

.project-type {
    background: var(--accent);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.project-info h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.project-details {
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
}

.project-duration {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.pricing-tiers {
    padding: 6rem 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.tier-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-10px);
}

.tier-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.tier-card.featured::before {
    content: '⭐ Популярный';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tier-badge {
    background: var(--accent);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.tier-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tier-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.tier-features {
    list-style: none;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.success-stories {
    padding: 6rem 0;
    background: var(--secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.story-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2rem;
    float: left;
    margin-right: 2rem;
    box-shadow: var(--shadow);
}

.story-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.story-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-content blockquote {
    font-style: italic;
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
    color: var(--text-light);
    line-height: 1.6;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.story-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* === CONTACTS PAGE === */
.contact-methods {
    padding: 6rem 0;
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
}

.contact-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.form-content h2 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.form-content > p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-form {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 15px;
}

.form-success.show {
    display: block;
}

.form-success.show ~ .contact-form {
    display: none;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.form-success h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 197, 71, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-btn {
    background: var(--gradient-accent);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(230, 197, 71, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    opacity: 0;
    animation: spin 1s linear infinite;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}



.quick-start {
    padding: 6rem 0;
    background: var(--secondary);
}

.quick-start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.quick-step {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    position: relative;
}

.quick-step:hover {
    transform: translateY(-10px);
}

.quick-step .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.quick-step h3 {
    margin: 2rem 0 1rem;
    color: var(--gold);
}

.quick-link {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 197, 71, 0.4);
}

.step-info {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.faq-section {
    padding: 6rem 0;
}

/* === RESPONSIVE ADDITIONS === */
@media (max-width: 1024px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .process-step {
        height: 180px;
        padding: 1.5rem;
    }
    
    .step-arrow {
        display: none;
    }
}
    
    .step-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-detailed.reverse {
        grid-template-columns: 1fr;
    }
    
    .step-detailed.reverse .step-visual {
        order: 0;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .timeline-item .timeline-content {
        order: 2;
        text-align: left;
    }
    
    .timeline-marker {
        order: 1;
        width: 70px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
        padding: 0 1rem;
    }
    
    .process-step {
        height: 160px;
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-start-steps {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
    }
    
    .payment-timeline {
        gap: 0.8rem;
    }
    
    .timeline-step {
        padding: 0.6rem;
        gap: 0.8rem;
    }
    
    .timeline-step .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 2rem 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-skills {
        gap: 0.4rem;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .story-avatar {
        float: none;
        margin: 0 auto 2rem;
    }
    
    
    .story-stats {
        justify-content: center;
    }
}

/* === EXTRA SMALL SCREENS === */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .hero-container {
        padding-top: 70px;
        gap: 1rem;
        padding-left: 8px;
        padding-right: 8px;
        max-width: calc(100% - 16px);
    }
    
    .avant-garde-animation .floating-shape {
        opacity: 0.03;
        transform: scale(0.7);
    }
    
    .avant-garde-animation .particles-container {
        display: none;
    }
    
    .section-preview {
        padding: 1rem 0.5rem;
        margin-bottom: 2rem;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
}

/* === CUSTOM ICONS === */
.custom-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    background: var(--gradient-accent);
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(230, 197, 71, 0.3);
    transition: all 0.3s ease;
}

.custom-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 197, 71, 0.4);
}

.custom-icon.large {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    border-radius: 8px;
}

.custom-icon.circle {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    font-size: 3rem;
}

/* Money Icon */
.custom-icon.money::before {
    content: "₽";
    font-size: 1.1em;
    font-weight: 900;
}

/* Rocket Icon */
.custom-icon.rocket::before {
    content: "⟩";
    transform: rotate(-45deg);
    font-size: 1.3em;
    font-weight: bold;
}

.custom-icon.rocket::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

/* Team Icon */
.custom-icon.team::before {
    content: "◉◉";
    font-size: 1.1em;
    letter-spacing: -2px;
}

/* Square Icon */
.custom-icon.square::before {
    content: "▢";
    font-size: 1.2em;
}

/* Speed Icon */
.custom-icon.speed::before {
    content: "⚡";
    font-size: 1.2em;
    color: #000;
}

/* Work Icon */
.custom-icon.work::before {
    content: "⬢";
    font-size: 1.3em;
}

/* Phone Icon */
.custom-icon.phone::before {
    content: "◈";
    transform: rotate(45deg);
    font-size: 1.4em;
}

/* Chat Icon */
.custom-icon.chat::before {
    content: "◐";
    font-size: 1.4em;
}

.custom-icon.chat::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 4px;
    height: 4px;
    background: #000;
    transform: rotate(45deg);
}

/* Email Icon */
.custom-icon.email::before {
    content: "▱";
    font-size: 1.1em;
}

.custom-icon.email::after {
    content: "▲";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    color: #000;
}

/* Document Icon */
.custom-icon.document::before {
    content: "⬛";
    font-size: 0.9em;
    color: #000;
}

.custom-icon.document::after {
    content: "≡";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.7em;
    font-weight: bold;
}

/* Calendar Icon */
.custom-icon.calendar::before {
    content: "▢";
    font-size: 1.2em;
}

.custom-icon.calendar::after {
    content: "⋮⋮";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    font-size: 0.5em;
    line-height: 0.8;
}

/* Target Icon */
.custom-icon.target::before {
    content: "◎";
    font-size: 1.4em;
}

/* Handshake Icon */
.custom-icon.handshake::before {
    content: "⟡";
    font-size: 1.3em;
}

.custom-icon.handshake::after {
    content: "⟡";
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%) scaleX(-1);
    color: var(--gold);
    font-size: 0.8em;
}

/* Time Icon */
.custom-icon.time::before {
    content: "○";
    font-size: 1.4em;
}

.custom-icon.time::after {
    content: "⌚";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8em;
    color: var(--gold);
}

/* Fire Icon */
.custom-icon.fire::before {
    content: "◆";
    font-size: 1.2em;
    color: #ff4444;
}

.custom-icon.fire::after {
    content: "◇";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7em;
    color: var(--gold);
}

/* Computer Icon */
.custom-icon.computer::before {
    content: "▭";
    font-size: 1.1em;
}

.custom-icon.computer::after {
    content: "▬";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6em;
    color: var(--gold);
}

/* Check Icon */
.custom-icon.check::before {
    content: "✓";
    font-size: 1.2em;
    color: #4CAF50;
    font-weight: bold;
}

/* Stats Icon */
.custom-icon.stats::before {
    content: "■";
    font-size: 1.2em;
}

/* Database Icon */
.custom-icon.database::before {
    content: "⬬";
    font-size: 1.2em;
}

.custom-icon.database::after {
    content: "⬬";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8em;
    color: var(--gold);
}

/* Search Icon */
.custom-icon.search::before {
    content: "○";
    font-size: 1.1em;
}

.custom-icon.search::after {
    content: "/";
    position: absolute;
    bottom: 1px;
    right: 1px;
    transform: rotate(45deg);
    font-size: 0.8em;
    color: var(--gold);
}

/* Bot Icon */
.custom-icon.bot::before {
    content: "⬢";
    font-size: 1.2em;
}

.custom-icon.bot::after {
    content: "◉";
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.4em;
    color: var(--gold);
}

/* Trophy Icon */
.custom-icon.trophy::before {
    content: "♢";
    font-size: 1.3em;
}

.custom-icon.trophy::after {
    content: "▬";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    color: var(--gold);
}

/* Question Icon */
.custom-icon.question::before {
    content: "?";
    font-size: 1.4em;
    font-weight: 900;
}

/* Mobile Icon */
.custom-icon.mobile::before {
    content: "▯";
    font-size: 1.2em;
}

.custom-icon.mobile::after {
    content: "○";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.3em;
    color: var(--gold);
}

/* Design Icon */
.custom-icon.design::before {
    content: "◈";
    font-size: 1.3em;
}

/* Bell Icon */
.custom-icon.bell::before {
    content: "⌒";
    font-size: 1.2em;
}

.custom-icon.bell::after {
    content: "○";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.4em;
    color: var(--gold);
}

/* Fitness Icon */
.custom-icon.fitness::before {
    content: "◊";
    font-size: 1.1em;
}

.custom-icon.fitness::after {
    content: "━";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    color: var(--gold);
    font-weight: bold;
}

/* Food Icon */
.custom-icon.food::before {
    content: "◯";
    font-size: 1.2em;
}

.custom-icon.food::after {
    content: "✶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8em;
    color: var(--gold);
}

/* Gallery Icon */
.custom-icon.gallery::before {
    content: "▦";
    font-size: 1.2em;
}

/* Form Icon */
.custom-icon.form::before {
    content: "⬚";
    font-size: 1.1em;
}

.custom-icon.form::after {
    content: "≡";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.6em;
    color: var(--gold);
}

/* CRUD Icon */
.custom-icon.crud::before {
    content: "▣";
    font-size: 1.2em;
}

/* Tags Icon */
.custom-icon.tags::before {
    content: "◐";
    font-size: 1.1em;
}

.custom-icon.tags::after {
    content: "◑";
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: var(--gold);
}

/* PWA Icon */
.custom-icon.pwa::before {
    content: "◈";
    font-size: 1.1em;
}

.custom-icon.pwa::after {
    content: "⬡";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8em;
    color: var(--gold);
}

/* === TOUCH DEVICE IMPROVEMENTS === */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover,
    .nav-link:hover,
    .contact-card:hover,
    .project-card:hover,
    .stat-item:hover,
    .value-card:hover,
    .team-member:hover {
        transform: none;
    }
    
    .nav-link:active,
    .cta-button:active {
        opacity: 0.8;
    }
}

/* === FOCUS STATES === */
.cta-button:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* === CONTRACT MODAL === */
.contract-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contract-modal.show {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contract-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: var(--gold);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.modal-body {
    padding: 2rem;
}

.contract-info h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contract-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contract-info li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
}

.contract-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-actions {
    text-align: center;
    margin-top: 2rem;
}

/* === PRINT STYLES === */
@media print {
    .header,
    .burger,
    .cta-button,
    .contact-form {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-main {
        padding-top: 0;
    }
}
