/* GLOBAL */
body {
    margin: 0;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
    color: #1a1f36;
}

/* COLORS from logo */
:root {
    --blue: #1e3ca8;
    --light-blue: #4cb4ff;
    --purple: #7148e0;
    --gradient: linear-gradient(135deg, #1e3ca8, #7148e0);
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    width: 48px;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
}

/* BUTTONS */
a.btn-primary,
a.btn-outline {
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
}

.lg {
    padding: 14px 32px;
    font-size: 18px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: var(--gradient);
    color: white;
}

.hero-logo {
    width: 110px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* FEATURES */
.features {
    text-align: center;
    padding: 90px 20px;
    background: #fff;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-box {
    width: 280px;
    padding: 25px;
    background: #f1f4ff;
    border-radius: 10px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

/* SCREENSHOTS */
.screens {
    padding: 90px 20px;
    text-align: center;
}

.screenshot-box {
    width: 80%;
    height: 300px;
    margin: 0 auto;
    background: #e9ecf7;
    border-radius: 10px;
    border: 2px dashed var(--blue);
}

/* PRICING */
.pricing {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.price-card {
    width: 260px;
    padding: 28px;
    background: #f9faff;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.price-card.highlight {
    border: 2px solid var(--purple);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
}

.price-card ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.price-card li {
    margin: 8px 0;
}

/* CTA */
.cta {
    padding: 90px 20px;
    text-align: center;
    background: var(--gradient);
    color: white;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    background: #fff;
    font-size: 14px;
}

/* ANIMATIONS */
.fade-in { animation: fadeIn 1s ease-in-out; }
.fade-up { animation: fadeUp 1.2s ease; }
.slide-up { animation: slideUp 1s ease; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}