/* =========================================
   RESET + BASE SYSTEM
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7fafc;
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   DESIGN TOKENS
========================================= */

:root {
    --primary: #0f172a;
    --accent: #14b8a6;
    --accent-soft: #e6fffb;

    --bg: #f7fafc;
    --card: #ffffff;

    --text: #334155;
    --muted: #64748b;

    --border: #e2e8f0;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --container: 1200px;
}

/* =========================================
   GLOBAL LAYOUT
========================================= */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 60px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
}

/* =========================================
   SECTION TITLE
========================================= */

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

/* =========================================
   HERO
========================================= */

.hero {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/*.badge {
    display: inline-block;
    background: var(--accent-soft);
    color: #0f766e;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
}*/

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

/*.hero p {
    color: var(--text);
    margin-bottom: 28px;
    max-width: 520px;
}*/

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
}

/* =========================================
   TRUST BAR
========================================= */

.trust {
    padding: 0 0 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    padding: 22px;
    border-radius: 18px;

    background: #14b8a6;
    border: 1px solid rgba(20, 184, 166, 0.25);
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.trust-item span {
    color: #ffffff;
    font-size: 0.9rem;
}

/* =========================================
   GRID SYSTEM
========================================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================================
   CARDS (UNCHANGED — SAFE)
========================================= */

.card {
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* =========================================
   STEPS
========================================= */

.step span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

/* =========================================
   CTA
========================================= */

.cta {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta p {
    color: var(--muted);
    margin-bottom: 28px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 960px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 2.1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}