/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo h2 {
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo span {
    color: #a1a1aa;
    font-size: 0.8rem;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

.cta-button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: white !important;
}

.language-toggle {
    background: transparent;
    border: 1px solid #6366f1;
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-toggle:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #6366f1;
    padding: 1rem 2rem;
    border: 2px solid #6366f1;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-3px);
}

.btn-strategy {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-strategy:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Strategy Video Section */
.strategy-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.strategy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.strategy-content p {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-strategy-large {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    display: inline-block;
    border: none;
    margin-bottom: 2rem;
}

.btn-strategy-large:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.strategy-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 1rem;
}

.benefit-item i {
    color: #f59e0b;
    font-size: 1.2rem;
}

/* Mobile responsive for strategy section */
@media (max-width: 768px) {
    .strategy-content h2 {
        font-size: 2rem;
    }
    
    .strategy-content p {
        font-size: 1rem;
    }
    
    .btn-strategy-large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .strategy-benefits {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

/* Code Animation */

.code-animation {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-line {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
}

.code-line:first-child {
    color: #6366f1;
}

.code-line:nth-child(2) {
    color: #ec4899;
}

.code-line:nth-child(3) {
    color: #10b981;
}

.code-line:nth-child(4) {
    color: #f59e0b;
}

.code-line:last-child {
    color: #6366f1;
}

/* Spotify Section */
.spotify-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.spotify-section h3 {
    color: #1db954;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Minimal Player */
.minimal-player {
    padding: 1rem;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #333;
}

.spotify-embed {
    width: 100%;
}

.spotify-embed iframe {
    border-radius: 8px;
    background: transparent;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #a1a1aa;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #0f0f0f;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.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;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

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

.portfolio-link {
    background: white;
    color: #6366f1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-results {
    display: flex;
    gap: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.result-label {
    font-size: 0.8rem;
    color: #a1a1aa;
}

/* New portfolio elements */
.portfolio-category {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.category-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.featured-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.portfolio-item.featured {
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.portfolio-item.featured:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

/* Blogs Section */
.blogs {
    padding: 80px 0;
    background: #0a0a0a;
}

.blogs-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-circle-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.blog-circle-item:hover {
    transform: translateX(20px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    background: #1f1f1f;
}

.blog-circle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.blog-circle-item:hover::before {
    opacity: 1;
}

.blog-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.blog-circle-item:hover .blog-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.blog-circle i {
    font-size: 2.5rem;
    color: #ffffff;
}

.blog-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.blog-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design for blogs */
@media (max-width: 768px) {
    .blogs-stack {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .blog-circle-item {
        gap: 1.5rem;
        padding: 1.2rem;
    }
    
    .blog-circle {
        width: 80px;
        height: 80px;
    }
    
    .blog-circle i {
        font-size: 2rem;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-circle-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .blog-circle {
        width: 70px;
        height: 70px;
    }
    
    .blog-circle i {
        font-size: 1.8rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-content p {
        font-size: 0.85rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.testimonial-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #a1a1aa;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #a1a1aa;
    font-size: 0.9rem;
}

/* FAQ Hero Section */
.faq-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

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

.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #0f0f0f;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0f0f0f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    color: #a1a1aa;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #10b981;
    font-size: 1.2rem;
}

.contact-form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a1a1aa;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}

/* Popup Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-form {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #6366f1;
}

.popup-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-content p {
    color: #a1a1aa;
    text-align: center;
    margin-bottom: 1rem;
}

.strategy-offer {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.strategy-offer p {
    text-align: left;
    margin-bottom: 0.8rem;
    color: #a1a1aa;
}

.strategy-offer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.strategy-offer li {
    color: #6366f1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-offer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.no-pressure {
    font-style: italic;
    color: #ffffff !important;
    font-weight: 500;
    text-align: center !important;
    margin-top: 1rem;
}

.limited-spots {
    color: #f59e0b !important;
    font-weight: 600;
    text-align: center !important;
    margin: 0.5rem 0;
}

.expert-reply {
    color: #6366f1 !important;
    font-weight: 600;
    text-align: center !important;
    margin: 0.5rem 0;
}

.popup-form-content .form-group {
    margin-bottom: 1.5rem;
}

.popup-form-content input,
.popup-form-content select,
.popup-form-content textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.popup-form-content input:focus,
.popup-form-content select:focus,
.popup-form-content textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.popup-form-content input::placeholder,
.popup-form-content textarea::placeholder {
    color: #666;
}

.popup-submit {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.popup-submit:hover {
    transform: translateY(-2px);
}

.popup-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 0.9rem;
}

.benefit-item i {
    color: #6366f1;
    font-size: 1rem;
}

/* Mobile responsive for popup */
@media (max-width: 768px) {
    .popup-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .popup-benefits {
        gap: 0.8rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-content {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
} 