@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #fcfbf8;
    --text-color: #2b2839;
    --primary-yellow: #f8e45c;
    --primary-yellow-hover: #e5d24d;
    --accent-purple: #7868e6;
    --accent-purple-light: #f0eefc;
    --card-bg: #ffffff;
    --border-color: #e6e4f0;
    --text-light: #6b6978;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
    color: var(--text-color);
}

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

a:hover {
    color: var(--accent-purple);
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-color);
}

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

.btn-outline {
    background-color: var(--accent-purple-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: #e5e3f4;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--accent-purple-light);
    color: var(--accent-purple);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 20px;
}

.tag-yellow {
    background-color: #fcf6d6;
    color: #8b7d15;
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

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

/* Window Mockup */
.window-mockup {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.window-header {
    height: 40px;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 6px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.window-body {
    padding: 20px;
}

/* Sections */
.section {
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-purple-light);
    color: var(--accent-purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-light);
    font-size: 14px;
}

/* Footer */
.footer {
    border-top: 1px dashed var(--border-color);
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 60px;
}

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

.footer-col-title {
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-light);
}

.footer-col a:hover {
    color: var(--text-color);
}

.footer-bottom {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Input Group */
.input-group {
    display: flex;
    margin-top: 15px;
}
.input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
}
.input-group button {
    background-color: var(--accent-purple);
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 0 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.input-group button:hover {
    background-color: #6152cc;
}
