:root {
    --bg: #f7f7f9;
    --card: #ffffff;
    --text: #17181c;
    --muted: #6b7280;
    --border: #e5e7eb;
    --primary: #e11d48;
    --primary-dark: #be123c;
    --soft: #fff1f2;
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}


/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 1.1rem;
}

.logo-flag {
    font-size: 1.4rem;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

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


/* Hero */

.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.08), transparent 32%),
        radial-gradient(circle at 10% 80%, rgba(225, 29, 72, 0.05), transparent 30%);
    padding: 90px 0 75px;
}

.hero-inner {
    max-width: 850px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 0;
}

h1 span {
    color: var(--primary);
}

.hero-text {
    max-width: 650px;
    margin: 25px auto 30px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

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

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

.button.secondary {
    background: white;
    border: 1px solid var(--border);
}

.button.secondary:hover {
    border-color: #fecdd3;
    color: var(--primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 55px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 1.1rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.8rem;
}


/* Sections */

.tools-section,
.why-section,
.popular-section,
.faq-section {
    padding: 80px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.03em;
}

.section-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}


/* Tools */

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tool-card {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: #fecdd3;
}

.tool-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--soft);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tool-label {
    display: block;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.tool-card h3 {
    margin: 0 0 7px;
    font-size: 1.2rem;
}

.tool-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.coming-soon {
    cursor: default;
    box-shadow: none;
    background: #fafafa;
}

.coming-soon:hover {
    transform: none;
    border-color: var(--border);
}

.coming-label {
    display: inline-block;
    margin-top: 15px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}


/* Why */

.why-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 45px;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.benefit h3 {
    margin: 0 0 7px;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}


/* Coming next */

.info-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 24px;
    background: var(--soft);
    border: 1px solid #fecdd3;
}

.info-card h2 {
    margin: 5px 0 10px;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.info-card p {
    color: var(--muted);
    margin: 0;
}

.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: center;
}

.info-list span {
    font-size: 0.9rem;
    font-weight: 600;
}


/* FAQ */

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

.faq-list {
    margin-top: 40px;
}

details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    padding: 0 20px;
}

summary {
    cursor: pointer;
    padding: 18px 0;
    font-weight: 700;
}

details p {
    color: var(--muted);
    margin: 0 0 18px;
}


/* Footer */

.site-footer {
    background: #17181c;
    color: white;
    padding: 50px 0 25px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-weight: 800;
}

.footer-inner p {
    color: #9ca3af;
    margin: 7px 0 0;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #d1d5db;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #303238;
    margin-top: 35px;
    padding-top: 20px;
    color: #9ca3af;
    font-size: 0.75rem;
}


/* Mobile */

@media (max-width: 800px) {
    nav {
        display: none;
    }

    .hero {
        padding: 65px 0 55px;
    }

    .hero-stats {
        gap: 25px;
    }

    .tools-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding-top: 50px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stats strong {
        font-size: 0.95rem;
    }

    .hero-stats span {
        font-size: 0.7rem;
    }

    .section-heading {
        display: block;
    }

    .section-heading p {
        margin-top: 12px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .info-card {
        padding: 28px 22px;
    }

    .info-card h2 {
        font-size: 1.6rem;
    }

    .info-list {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-links {
        align-items: flex-start;
    }
}
