<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">

body {
    margin: 0;
    background: #f7fafc;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

/* =========================
   TOP HEADER
========================= */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px 0;
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: 0 auto;
}

.logo-link {
    display: block;
}

.image {
    width: 72px;
    height: auto;
    opacity: 0.95;
}

#nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

#nav a {
    text-decoration: none;
}

/* =========================
   BUTTONS
========================= */

.blue {
    background-color: #0f766e;
    color: white;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.18);
}

.grey {
    background-color: #6b7280;
    color: white;
}

.button {
    padding: 10px 14px;
    border-radius: 14px;
    text-align: center;
    width: 165px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}

.button:hover {
    transform: translateY(-1px);
}

.hero-button {
    width: 220px;
    font-size: 16px;
}

.hero-section {
    position: relative;
    z-index: 4;
    max-width: 860px;
    margin: 30px auto 0;
    padding: 0 22px;
    text-align: center;
}

.hero-content {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 34px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.7);
}

.trust-pill {
    display: inline-block;
    background: rgba(15,118,110,0.08);
    color: #0f766e;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-section h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
    color: #111827;
}

.hero-text {
    max-width: 680px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.hero-buttons {
    margin-top: 28px;
}

.hero-button {
    width: 230px;
    font-size: 16px;
    padding: 14px 18px;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-item {
    background: white;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    border: 1px solid rgba(17,24,39,0.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
    font-size: 30px;
}

h2 {
    font-size: 30px;
    margin: 0 0 10px;
    letter-spacing: -1px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

ul,
ol {
    padding-left: 19px;
    text-align: left;
    list-style-position: outside;
}

li,
ol {
    font-size: 16px;
    margin-bottom: 14px;
}

/* =========================
   HERO SECTION
========================= */

.container {
    width: 100%;
}

.paragraph {
    position: relative;
    z-index: 4;
    max-width: 760px;
    margin: 12px auto 0;
    padding: 0 20px;
    text-align: center;
    font-size: 18px;
}

/* =========================
   SECTIONS
========================= */

.topics-section,
.how-section,
.cta-section {
    max-width: 1100px;
    margin: 70px auto 0;
    padding: 0 22px;
    position: relative;
    z-index: 4;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 700px;
}

/* =========================
   CARDS
========================= */

.topics-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.topic-card,
.step-card {
    display: block;
    background: rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 14px 28px rgba(0,0,0,0.05);
    border: 1px solid rgba(17, 24, 39, 0.04);
    transition: all 0.2s ease;
}

.topic-card:hover,
.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}

.topic-card h3,
.step-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111827;
}

.topic-card p,
.step-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #0f766e;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    text-align: center;
    padding-bottom: 60px;
}

.cta-section p {
    max-width: 560px;
    margin: 0 auto 18px;
}

/* =========================
   HERO IMAGES
========================= */

.img-container {
    position: relative;
    height: 340px;
    margin-top: 10px;
    overflow: hidden;
}

.image-2 {
    position: absolute;
    left: -20px;
    bottom: 0;
    height: 260px;
    z-index: 1;
}

.image-3 {
    position: absolute;
    left: 120px;
    bottom: 120px;
    height: 90px;
    z-index: 2;
}

.image-4 {
    position: absolute;
    left: 20px;
    bottom: 0;
    height: 320px;
    z-index: 3;
}

/* =========================
   MOBILE
========================= */

@media only screen and (max-width: 768px) {

    .topbar {
        padding: 14px 14px 0;
    }

    .image {
        width: 62px;
    }

    #nav {
        gap: 6px;
    }

    .button {
        width: 145px;
        font-size: 13px;
        padding: 10px 12px;
    }

    .hero-section {
        margin-top: 22px;
    }

    .hero-content {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .hero-section h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .trust-row {
        gap: 10px;
    }

    .trust-item {
        font-size: 12px;
        padding: 9px 12px;
    }

    h2 {
        font-size: 24px;
    }

    .topics-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .img-container {
        height: 220px;
    }

    .image-2 {
        height: 150px;
        left: -35px;
    }

    .image-3 {
        height: 55px;
        left: 60px;
        bottom: 80px;
    }

    .image-4 {
        height: 200px;
        left: 5px;
    }
}

#open_widget {
    cursor: pointer;
}
