:root {
            --primary-color: #6C47FF;
            --secondary-color: #FF6B6B;
            --accent-color: #4ECDC4;
            --light-color: #F8F9FA;
            --dark-color: #212529;
            --success-color: #28A745;
            --warning-color: #FFC107;
            --info-color: #17A2B8;
            --danger-color: #DC3545;
            --gray-100: #F8F9FA;
            --gray-200: #E9ECEF;
            --gray-300: #DEE2E6;
            --gray-400: #CED4DA;
            --gray-500: #ADB5BD;
            --gray-600: #6C757D;
            --gray-700: #495057;
            --gray-800: #343A40;
            --gray-900: #212529;
            --border-color: #E9ECEF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --gradient-primary: linear-gradient(135deg, #6C47FF, #FF6B6B);
            --gradient-secondary: linear-gradient(135deg, #4ECDC4, #FF6B6B);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: var(--dark-color);
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }
		nav a {
			color:#000;
			text-decoration:none;
			font-size: 16px;
			position: relative;
			display: inline-block;
		}
nav a::after,
nav a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #6c47ff, #dd638d);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

nav a::before {
  top: -5px;
  transform-origin: left;
}

nav a:hover::after,
nav a:hover::before {
  transform: scaleX(1);
}
		footer a {
			color:#fff;
			text-decoration:none;
		}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 18px;
            text-decoration: none;
        }

        .logo-icon {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
.logo-icon img {
	    width: 100%;
}
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .menu-item {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 100;
            transition: color 0.3s ease;
        }

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

        .btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

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

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(108, 71, 255, 0.2);
        }

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

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

        /* Hero Section */
        .hero {
            background: linear-gradient(115deg, #ffffff 0%, #fde6ff 100%);
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            flex: 1;
            max-width: 500px;
        }

        .badge {
            background-color: #f0e6ff;
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 15px;
        }

        .badge-icon {
            width: 16px;
            height: 16px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
        }

        .hero-title {
            font-size: 36px;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            color: var(--gray-600);
            margin-bottom: 30px;
            font-size: 16px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--gray-600);
            font-size: 14px;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .microphone-image {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .order-badge {
            position: absolute;
            bottom: -20px;
            right: 20px;
            background: white;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .order-icon {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .order-text {
            display: flex;
            flex-direction: column;
        }

        .order-title {
            font-weight: 600;
            color: var(--dark-color);
        }

        .order-details {
            font-size: 14px;
            color: var(--gray-600);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 20px;
            background-color: white;
        }

        .section-title {
            text-align: center;
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-600);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .feature-icon-purple {
            background: var(--gradient-primary);
        }

        .feature-icon-pink {
            background: var(--gradient-secondary);
        }

        .feature-icon-blue {
            background: linear-gradient(135deg, #4a6cf7, #6c47ff);
        }

        .feature-icon-orange {
            background: linear-gradient(135deg, #ff924c, #ff6b6b);
        }

        .feature-icon-green {
            background: linear-gradient(135deg, #4ecdc4, #45b7d1);
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .feature-description {
            color: var(--gray-600);
            font-size: 14px;
        }

        /* Order Form Section */
        .order-form-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .form-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .form-subtitle {
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Progress Bar */
        .progress-container {
            display: flex;
			align-items: flex-start;

            justify-content: space-between;
            margin: 30px 0;
            position: relative;
        }

        .progress-bar {
            position: absolute;
                top: 20px;
            left: 27px;
    right: 27px;
            height: 4px;
            background-color: var(--gray-300);
            z-index: 1;
        }

        .progress-fill {
            position: absolute;

            left: 0;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 2;
            transition: width 0.5s ease;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 3;
            width: 60px;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            background-color: var(--gray-400);
            
            transition: all 0.3s ease;
        }

        .step-circle.active {
            background: var(--gradient-primary);
        }

        .step-circle.completed {
            background: var(--gradient-primary);
        }

        .step-circle.completed::after {
            content: "✓";
            font-size: 18px;
        }

        .step-label {
            font-size: 12px;
            text-align: center;
            color: var(--gray-600);
            transition: color 0.3s ease;
        }

        .step.active .step-label {
            color: var(--primary-color);
            font-weight: bold;
        }

        .step.completed .step-label {
            color: var(--primary-color);
        }

        /* Form Elements */
        .form-section {
            display: none;
        }

        .form-section.active {
            display: block;
        }

        .section-title-form {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--gray-700);
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.1);
        }

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

        /* Button Styles */
        .btn-back {
            margin-right: 10px;
        }

        .btn-next {
            margin-left: 10px;
        }

        /* Grid Layout for Options */
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .option-card {
            background: var(--gray-100);
            border: 2px solid var(--gray-200);
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .option-card:hover {
            border-color: var(--primary-color);
            background-color: #f0e6ff;
        }

        .option-card.selected {
            border-color: var(--primary-color);
            background-color: #f0e6ff;
            box-shadow: 0 4px 8px rgba(108, 71, 255, 0.1);
        }

        .option-card.selected::after {
            content: "✓";
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .option-icon {
            width: 32px;
            height: 32px;
            background-color: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
            float: left;
            margin-bottom: 10px;
        }

        .option-title {
            font-weight: 600;
            margin-bottom: 5px;
            display: block;
        }

        .option-description {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.4;
        }

        /* Tag List */
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .tag {
            background-color: var(--primary-color);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .tag-remove {
            margin-left: 6px;
            cursor: pointer;
            font-size: 12px;
        }

        .tag-remove:hover {
            opacity: 0.8;
        }

        /* Message Box */
        .message-box {
            background-color: #f0e6ff;
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        /* Summary Section */
        .summary-container {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-top: 30px;
        }

        .summary-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--gray-700);
        }

        .summary-item {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .summary-label {
            font-weight: 600;
            color: var(--gray-600);
        }

        .summary-value {
            color: var(--dark-color);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 80px 20px;
            background-color: white;
        }

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

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
        }

        .portfolio-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .portfolio-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            color: var(--primary-color);
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .portfolio-info {
            padding: 15px;
            background: white;
        }

        .portfolio-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-color);
        }

        .portfolio-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--gray-600);
        }

        .portfolio-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--gray-600);
        }

        .stat-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        .like-count {
            color: var(--danger-color);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .like-icon {
            width: 16px;
            height: 16px;
            color: var(--danger-color);
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-image {
            flex: 1;
        }

        .about-content {
            flex: 1;
        }

        .about-title {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .about-text {
            color: var(--gray-600);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .about-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .about-stat-number {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .about-stat-label {
            color: var(--gray-600);
            font-size: 14px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .about-feature {
            background: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 15px;
        }

        .about-feature-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .about-feature-description {
            color: var(--gray-600);
            font-size: 14px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 20px;
            background-color: white;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-title {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .contact-subtitle {
            color: var(--gray-600);
            margin-bottom: 30px;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            font-weight: 600;
            color: var(--dark-color);
        }

        .contact-value {
            color: var(--gray-600);
        }

        .faq {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-top: 30px;
        }

        .faq-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .faq-item {
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }

        .faq-question {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-color);
        }

        .faq-answer {
            color: var(--gray-600);
            font-size: 14px;
        }

        .contact-form {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .form-title {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 20px;
        }

        .form-group-contact {
            margin-bottom: 20px;
        }

        .form-label-contact {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--gray-700);
        }

        .form-input-contact {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-input-contact:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(108, 71, 255, 0.1);
        }

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

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(108, 71, 255, 0.2);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #4a2a7d, #6c47ff);
            color: white;
            padding: 40px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-logo-icon {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        .footer-about {
            color: #ddd;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

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

        .footer-link {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ddd;
        }

        .footer-contact-icon {
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #ddd;
        }

        .footer-bottom a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .stats {
                justify-content: center;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .contact-form {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .hero {
                padding: 40px 20px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .progress-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .progress-bar {
                width: 100%;
                top: 0;
                left: 0;
                right: 0;
                transform: translateX(-50%);
            }
            
            .progress-fill {
                top: 0;
                left: 0;
                right: 0;
                transform: translateX(-50%);
            }
            
            .step {
                width: 100%;
                flex-direction: row;
                justify-content: center;
                gap: 10px;
            }
            
            .step-circle {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
            
            .step-label {
                font-size: 14px;
            }
            
            .options-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
            
            .form-container {
                padding: 20px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .btn-back, .btn-next {
                margin: 0;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .contact-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .options-grid {
                grid-template-columns: 1fr;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
            }
            
            .stat-number {
                font-size: 20px;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .section-subtitle {
                font-size: 14px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.5s ease forwards;
        }

        /* Custom Checkbox */
        .custom-checkbox {
            display: none;
        }

        .custom-checkbox + label {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            padding: 10px 15px;
            border: 2px solid var(--gray-300);
            border-radius: 8px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .custom-checkbox:checked + label {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .custom-checkbox + label::before {
            content: "";
            width: 16px;
            height: 16px;
            border: 2px solid var(--gray-300);
            border-radius: 4px;
            margin-right: 8px;
            display: inline-block;
        }

        .custom-checkbox:checked + label::before {
            background-color: white;
            border-color: var(--primary-color);
        }

        .custom-checkbox:checked + label::after {
            content: "✓";
            position: absolute;
            color: var(--primary-color);
            font-size: 12px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Keyword Tags */
        .keyword-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .keyword-tag {
            background-color: var(--gray-200);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .keyword-tag:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .keyword-tag.selected {
            background-color: var(--primary-color);
            color: white;
        }

        /* Sections */
        .section-content {
            padding: 20px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .section-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--gray-200);
        }

        .section-subtitle {
            color: var(--gray-600);
            font-size: 14px;
            margin-bottom: 15px;
        }

        /* Form Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: white;
            border-top: 1px solid var(--gray-300);
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        }

        @media (max-width: 768px) {
            .mobile-nav {
                display: flex;
            }
            
            .progress-bar {
                display: none;
            }
			.hero-buttons {

    flex-direction: column;
}
        }

        /* Wishlist Section */
        .wishlist-section {
            margin-top: 20px;
        }

        .wishlist-title {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .wishlist-subtitle {
            color: var(--gray-600);
            margin-bottom: 15px;
            font-size: 14px;
        }

        .wishlist-placeholder {
            color: var(--gray-400);
            font-style: italic;
        }

        /* Validation Messages */
        .invalid-feedback {
            color: var(--danger-color);
            font-size: 14px;
            margin-top: 5px;
        }

        .is-invalid {
            border-color: var(--danger-color);
        }

        .is-valid {
            border-color: var(--success-color);
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .scroll-to-top.hidden {
            opacity: 0;
            pointer-events: none;
        }
		
		/* Дополнительные стили для социальных сетей в хедере */
.header-social {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.social-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .header-social {
        display: none;
    }
	.hero-image {
		display: none;
	}
	.step-circle { 
	margin-bottom: 8px;
	}
}

/* Стили для портфолио */
.portfolio-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.portfolio-image.placeholder {
    width: 100%;
    height: 200px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Модальное окно для медиа */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.media-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    padding: 20px;
}

.media-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-600);
}

.media-modal-close:hover {
    color: var(--dark-color);
}

.media-modal-body {
    margin-top: 20px;
}

.no-portfolio-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-600);
}

.portfolio-footer-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* Стили для портфолио */
.portfolio-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    height: 200px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-image.placeholder {
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button.no-media {
    background: var(--gray-400);
    cursor: not-allowed;
}

.play-button.no-media:hover {
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.portfolio-info {
    padding: 15px;
    background: white;
    border-radius: 0 0 12px 12px;
}

.portfolio-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-600);
}

.like-count {
    color: var(--danger-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-icon {
    width: 16px;
    height: 16px;
    color: var(--danger-color);
}

/* Модальное окно для медиа */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.media-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    padding: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.media-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-600);
    z-index: 1;
}

.media-modal-close:hover {
    color: var(--dark-color);
}

.media-modal-body {
    margin-top: 20px;
}

.no-portfolio-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-600);
}

.no-portfolio-items ol {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
}

.portfolio-footer-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.play-button {
    cursor: pointer;
}

.play-button.no-media {
    cursor: not-allowed;
}