/* CSS Variables */
:root {
    --primary-color: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.email {
    color: #9ca3af;
    font-size: 14px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #8b5cf6;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.btn-primary,
.cta-button {
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    text-decoration: none;
    display: inline-block;
}

.social-links, .lang-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
}

.social-link:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 10px;
}

.service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-number {
    color: #a855f7;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-title h3 {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.3s ease;
}

.service-item:hover .service-title h3 {
    color: #8b5cf6;
    text-decoration: none !important;
}

.service-link {
    color: inherit;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
}

.service-link,
.service-link *,
.service-link *:hover {
    text-decoration: none !important;
}

.service-link:hover {
    text-decoration: none !important;
}

.service-item:hover .service-link {
    color: #8b5cf6;
}

.service-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.service-item.highlighted {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.service-item.highlighted:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.25);
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover .service-description {
    color: #b794f6;
}

.service-arrow {
    font-size: 1.5rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
    color: #a855f7;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    padding: 10px 0;
    color: #9ca3af;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.advantages-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantage-item p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    color: #9ca3af;
    line-height: 1.8;
}

.contact-item strong {
    color: #ffffff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.messenger-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.messenger-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.messenger-link:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

.messenger-icon {
    font-size: 1.5rem;
}

.social-links-section {
    margin-top: 30px;
}

.social-links-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact .social-links, .lang-links {
    justify-content: flex-start;
    gap: 15px;
}

.freelance-profiles {
    margin-top: 40px;
}

.profile-item {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-item h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.profile-item h3 a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.profile-item h3 a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.banner-container {
    text-align: center;
}

.freelance-banner {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.freelance-banner:hover {
    transform: scale(1.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left p {
    color: #9ca3af;
    margin: 10px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8b5cf6;
}

.footer-social h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Page Styles */
.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Styles */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.portfolio-content p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Help Page Styles */
.help-section {
    padding: 80px 0;
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-block {
    margin-bottom: 60px;
}

.help-block h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.help-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.step-content a {
    color: #8b5cf6;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.help-note {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.help-note p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.term-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.term-item h3 {
    color: #8b5cf6;
    margin-bottom: 10px;
}

.term-item p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.help-bonus {
    text-align: center;
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.link-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.external-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

.link-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Design Page Styles */
.design-benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.template-categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.category-image {
    height: 150px;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 3rem;
}

.category-content {
    padding: 20px;
}

.category-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.category-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.category-link:hover {
    text-decoration: underline;
}

.selection-process {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step p {
    color: #9ca3af;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

.process-cta .btn-primary,
.process-cta .btn-outline {
    margin: 0 10px;
}

/* Contacts Page Styles */
.contacts-section {
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.contact-card h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #8b5cf6;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: #9ca3af;
    margin: 2px 0;
    text-decoration: none;
}

.contact-details a:hover {
    color: #8b5cf6;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-section h3 {
    color: #8b5cf6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.payment-item strong {
    color: #ffffff;
}

.payment-item span,
.payment-item a {
    color: #9ca3af;
    font-family: monospace;
    text-decoration: none;
}

.payment-item a:hover {
    color: #8b5cf6;
}

.payment-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.payment-note p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.payment-note a {
    color: #8b5cf6;
    text-decoration: none;
}

.payment-note a:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin-bottom: 60px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.social-section {
    text-align: center;
}

.social-section h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.social-card .social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    color: white;
}

.social-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.social-card p {
    color: #9ca3af;
    margin: 0;
}

/* Phone Links */
.phone-link {
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    display: inline;
}

.phone-link:hover {
    color: #8b5cf6;
    text-decoration-style: solid;
}

.phone-link:last-child::after {
    content: "";
}

/* Calculator Styles */
.calculator-steps {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-links a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step-links a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.calculator-section {
    padding: 80px 0;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.calculator-form h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
}

.option-group h3 {
    color: #8b5cf6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
}

.option-item:last-child {
    margin-bottom: 0;
}

.option-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.option-item input[type="checkbox"],
.option-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkmark:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

.option-item input[type="checkbox"]:checked + .checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.option-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.option-item input[type="radio"] + .checkmark {
    border-radius: 50%;
}

.option-item input[type="radio"]:checked + .checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.option-item input[type="radio"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.price {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
}

.calculator-result {
    position: sticky;
    top: 120px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.result-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.total-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

#total-price {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
}

.currency {
    color: #9ca3af;
    font-size: 1.2rem;
}

.order-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-button {
        display: block;
        margin: 0 auto;
        max-width: 200px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .calculator-form {
        padding: 30px 20px;
    }

    .calculator-form h2 {
        font-size: 1.5rem;
    }

    .option-group {
        padding: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 25px 20px;
    }

    .result-card {
        padding: 25px 20px;
    }

    #total-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services,
    .pricing,
    .advantages,
    .contact {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .calculator-form h2 {
        font-size: 1.3rem;
    }

    .option-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .option-item label {
        width: 100%;
    }

    #total-price {
        font-size: 2rem;
    }

    .currency {
        font-size: 1rem;
    }

    /* Скрываем кнопку "Заказать" на очень маленьких экранах */
    .header .cta-button {
        display: none;
    }

    /* Делаем навигацию более компактной */
    .nav {
        gap: 15px;
        font-size: 0.9rem;
    }

    .nav a {
        padding: 8px 12px;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .nav a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
    }
}

/* Очень маленькие экраны */
@media (max-width: 380px) {
    .header {
        padding: 15px 0;
    }

    .logo .email {
        font-size: 12px;
    }

    .nav {
        gap: 10px;
        font-size: 0.8rem;
    }

    .nav a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .calculator-form {
        padding: 25px 15px;
    }

    .option-group {
        padding: 15px;
    }

    .option-item {
        padding: 8px 0;
    }

    .result-card {
        padding: 20px 15px;
    }

    #total-price {
        font-size: 1.8rem;
    }
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
}

.service-details {
    max-width: 1000px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.service-content p {
    font-size: 1.2rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin: 40px 0 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.platform-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.platform-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.seo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.seo-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.seo-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 15px;
}

.seo-step h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.seo-step p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 30px;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container h2 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.order-summary h3 {
    color: #8b5cf6;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item span:first-child {
    color: #9ca3af;
    flex: 1;
}

.summary-item span:last-child {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

#summary-options {
    color: #9ca3af;
    line-height: 1.6;
}

.form-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.back-button {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #9ca3af;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.back-button:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.submit-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 150px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.calculate-button {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-container h2 {
        font-size: 2rem;
    }

    .order-summary {
        padding: 20px;
    }

    .form-buttons {
        flex-direction: column;
        align-items: center;
    }

    .back-button,
    .submit-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 0 15px;
    }

    .contact-form-container h2 {
        font-size: 1.8rem;
    }

    .order-summary {
        padding: 15px;
    }

    .summary-item {
        flex-direction: column;
        gap: 5px;
    }

    .summary-item span:last-child {
        text-align: left;
    }
}