@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
    --dark-color: #333;
    --background-color: #f5f5f9;
    --white-color: #fffdfd;
    --primary-color: #6706ce;
    --primary-dark: #4e049d;
    --primary-soft: #efe4fb;
    --border-color: #e3dbea;
    --muted-color: #6d6777;
    --shadow: 0 0.75rem 2rem rgba(103, 6, 206, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--dark-color);
    background: var(--background-color);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(103, 6, 206, 0.12);
    background: rgba(255, 253, 253, 0.92);
    backdrop-filter: blur(14px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.15rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 0.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

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

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;
    color: var(--white-color);
    background: var(--primary-color);
    font-weight: 600;
    line-height: 1.1;
    transition:
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.button:hover {
    color: var(--primary-color);
    background: var(--white-color);
    transform: translateY(-1px);
}

.button.secondary {
    color: var(--primary-color);
    background: var(--white-color);
}

.button.secondary:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 5rem 0;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 3rem;
    min-height: calc(100vh - 4.75rem);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--primary-color);
    background: var(--white-color);
    font-size: 0.85rem;
    font-weight: 600;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 1.25rem;
    font-size: clamp(2.3rem, 6vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    line-height: 1.25;
}

.lead {
    max-width: 640px;
    margin-bottom: 1.5rem;
    color: var(--muted-color);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.preview {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.preview-window {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--white-color);
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    height: 2.4rem;
    padding: 0 0.85rem;
    border-bottom: 1px solid var(--border-color);
    background: #faf8fd;
}

.preview-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: var(--primary-color);
    opacity: 0.35;
}

.preview-body {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    min-height: 330px;
}

.preview-sidebar {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    background: var(--primary-soft);
}

.preview-logo,
.preview-line,
.preview-card,
.preview-table-row {
    border-radius: 0.45rem;
}

.preview-logo {
    width: 62%;
    height: 1rem;
    margin-bottom: 1.25rem;
    background: var(--primary-color);
}

.preview-line {
    height: 0.72rem;
    margin-bottom: 0.7rem;
    background: rgba(103, 6, 206, 0.22);
}

.preview-line.short {
    width: 64%;
}

.preview-main {
    padding: 1.2rem;
}

.preview-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-card {
    min-height: 5rem;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background: var(--white-color);
}

.preview-number {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    font-size: 1.45rem;
    font-weight: 700;
}

.preview-table {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.preview-table-row {
    height: 1.1rem;
    background: #eee8f5;
}

.preview-table-row:nth-child(2) {
    width: 82%;
}

.preview-table-row:nth-child(3) {
    width: 68%;
}

.feature-grid,
.values-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature,
.value,
.team-card,
.pricing-card,
.note-panel {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--white-color);
    box-shadow: 0 0 0.375rem 0.25rem rgba(161, 172, 184, 0.1);
}

.feature,
.value {
    padding: 1.25rem;
}

.icon-circle {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    color: var(--white-color);
    background: var(--primary-color);
}

.centered {
    text-align: center;
}

.centered .lead {
    margin-right: auto;
    margin-left: auto;
}

.about-hero,
.pricing-hero {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: start;
}

.note-panel {
    padding: 1.35rem;
}

.note-panel strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
    overflow: hidden;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--primary-soft);
}

.team-content {
    padding: 1.25rem;
}

.role {
    margin-bottom: 0.85rem;
    color: var(--muted-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--white-color);
}

.pricing-card {
    max-width: 620px;
    margin: 2rem auto 0;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.price {
    margin: 0.75rem 0 1rem;
    color: var(--primary-color);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1;
}

.simple-list {
    display: grid;
    gap: 0.75rem;
    max-width: 480px;
    margin: 1.5rem auto 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.simple-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.simple-list i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.site-footer {
    border-top: 1px solid var(--border-color);
    background: var(--white-color);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.25rem 0;
    color: var(--muted-color);
    font-size: 0.9rem;
}

@media (max-width: 880px) {
    .hero,
    .story {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .feature-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.85rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .preview-body,
    .preview-kpis,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .button {
        width: 100%;
    }
}
