/* Base Styles */
:root {
    --primary-color: #00BCD4;
    --secondary-color: #607D8B;
    --accent-color: #FF4081;
    --dark-color: #263238;
    --light-color: #ECEFF1;
    --white: #ffffff;
    --black: #212121;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.highlight {
    color: var(--primary-color);
}

section {
    padding: 5rem 1.5rem;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-icon {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.main-nav li a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    position: absolute;
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 8px;
}

.menu-toggle span:nth-child(3) {
    top: 16px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Section */
.main-section {
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #e0e8f9 100%);
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.main-content {
    flex: 1;
    z-index: 1;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.primary-btn:hover {
    background-color: #0097a7;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 188, 212, 0.4);
}

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

.secondary-btn:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateY(-3px);
}

.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.main-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

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

.feature-box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Generator Section */
.generator-section {
    background-color: #f5f5f5;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1140px;
    margin: 0 auto 3rem;
}

.step {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-arrow {
    width: 50px;
    height: 24px;
    display: flex;
    align-items: center;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.footer-branding {
    flex: 1;
    min-width: 300px;
}

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

.footer-branding p {
    color: var(--light-color);
    opacity: 0.8;
}

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

.link-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 0.8rem;
}

.link-column ul li a {
    color: var(--light-color);
    opacity: 0.8;
    transition: var(--transition);
}

.link-column ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--light-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .main-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav li a {
        display: block;
        padding: 1rem 2rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
        max-width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}
