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

:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f48fb1;
    --secondary-color: #2196f3;
    --dark-bg: #212121;
    --light-bg: #f5f5f5;
    --text-dark: #212121;
    --text-light: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: var(--shadow);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

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

.logo {
    width: 120px;
    height: 40px;
}

.logo-wave {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
}

.logo-text {
    font-weight: bold;
    fill: var(--secondary-color);
    font-size: 18px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.cta-btn-small {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.cta-btn-small:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #673ab7);
    color: var(--text-light);
}

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

.hero-content h1 {
    color: var(--text-light);
}

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

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-badges span {
    background-color: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.visual-frame {
    fill: rgba(255,255,255,0.1);
    stroke: rgba(255,255,255,0.3);
    stroke-width: 2;
}

.visual-path-1, .visual-path-2 {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 3;
}

.visual-circle {
    fill: rgba(255,255,255,0.1);
    stroke: var(--primary-light);
    stroke-width: 2;
}

.visual-text {
    fill: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    text-anchor: middle;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.icon-bg {
    fill: var(--primary-light);
}

.icon-path {
    fill: none;
    stroke: var(--text-light);
}

/* Generator Section */
.generator {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.generator-content {
    flex: 1;
}

.steps-list {
    list-style: none;
    margin-bottom: 3rem;
}

.steps-list li {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--secondary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.generator-visual {
    flex: 1;
    max-width: 400px;
}

.visual-interface {
    fill: #ffffff;
    stroke: #e0e0e0;
    stroke-width: 2;
}

.visual-preview {
    fill: #f0f0f0;
}

.visual-slider {
    fill: #e0e0e0;
}

.visual-knob {
    fill: var(--secondary-color);
}

.visual-button {
    fill: var(--primary-color);
}

.visual-btn-text {
    fill: var(--text-light);
    font-size: 16px;
    font-weight: bold;
}

.cta-container {
    text-align: center;
}

/* Examples Section */
.examples {
    padding: 5rem 2rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #757575;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item svg {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.gallery-frame {
    fill: #ffffff;
    stroke: #e0e0e0;
    stroke-width: 2;
}

.gallery-placeholder {
    fill: var(--primary-light);
    opacity: 0.3;
}

.gallery-text {
    fill: var(--primary-dark);
    font-size: 16px;
    font-weight: bold;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
    color: #757575;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #673ab7);
    color: var(--text-light);
    text-align: center;
}

.pricing h2, .pricing-card h3 {
    color: var(--text-light);
}

.pricing-header {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #aaaaaa;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo svg {
    margin-bottom: 1rem;
}

.footer-logo .logo-wave {
    stroke: var(--primary-color);
}

.footer-logo .logo-text {
    fill: var(--text-light);
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-nav-column h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-nav-column ul {
    list-style: none;
}

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

.footer-nav-column a {
    color: #aaaaaa;
}

.footer-nav-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero, .generator {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual, .generator-visual {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .steps-list li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 80%;
        height: 100vh;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 4rem 2rem;
        transition: right 0.3s ease;
        z-index: 200;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 1rem;
    }
    
    .feature-grid, .gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .footer-nav {
        flex-direction: column;
    }
}
