@font-face {
    font-family: 'Roboto Slab';
    src: url('/fonts/RobotoSlab-Regular.woff2') format('woff2'), url('/fonts/RobotoSlab-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #8ab4f8;
    --primary-dark: #1a73e8;
    --secondary-color: #e8eaed;
    --text-color: #bdc1c6;
    --background-color: #202124;
    --surface-color: #303134;
    --border-color: #5f6368;
    --white: #ffffff;
    --success-color: #81c995;
    --font-family: 'Roboto Slab', serif;
    --heading-font: 'Roboto Slab', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s;
}

a:hover {
    color: #aecbfa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--surface-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1967d2;
    color: var(--white);
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #202124 0%, #303134 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.2s;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.how-it-works {
    padding: 80px 0;
    background-color: #171717;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.pricing {
    padding: 80px 0;
}

.sub-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ai-style-card {
    background-color: #23272c;
    border: 1px solid #3a414c;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-style-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(79, 195, 247, 0.2);
}

.features-section {
    padding: 2rem;
}

.features-section h2 {
    color: #4fc3f7;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.features-section ul li::before {
    color: #4fc3f7;
    font-weight: bold;
}

.action-section {
    background-color: #2a313a;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.action-section p {
    color: #b0bec5;
    margin-bottom: 1.5rem;
}

.button {
    background-color: #04aa6d;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(4, 170, 109, 0.4);
}

.faq {
    padding: 80px 0;
    background-color: #171717;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background-color: var(--surface-color);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

footer {
    background-color: #171717;
    color: var(--white);
    padding: 60px 0 20px !important;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-divider {
    color: #3c4043;
    margin: 0 1em;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    color: #9aa0a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }
}