:root {
    --blue: #1260d8;
    --blue-dark: #0a3f9e;
    --navy: #17233d;
    --text-body: #4b5567;
    --border: rgb(231, 235, 241);
    --bg-soft: #f5f8fd;
    --green: #1aa06d;
    --radius: 16px;
    --shadow-card: 0 10px 30px rgba(23, 35, 61, .06);
    --shadow-card-hover: 0 20px 44px rgba(23, 35, 61, .12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

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

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    margin: 0;
}

h2 {
    font-size: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 8px 20px rgba(18, 96, 216, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 96, 216, .36);
}

.btn-outline {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border);
}

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

.play {
    border: 1px solid currentColor;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    flex-shrink: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-heading h2 {
    margin: 0 0 10px;
}

.section-heading p {
    font-size: 15.5px;
    color: var(--text-body);
    margin: 0;
}


/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0 0;
    font-size: 14px;
    color: #8792a3;
}

.breadcrumb .material-symbols-outlined {
    font-size: 18px;
}

.breadcrumb a {
    color: #8792a3;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb b {
    font-weight: 400;
    opacity: .6;
}

.breadcrumb span:last-child {
    color: var(--navy);
    font-weight: 500;
}


/* ================= HERO ================= */
.wp-hero {
    padding: 0px 0 60px;
}

.wp-hero-grid {
    padding-top: 35px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.wp-hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.wp-hero-content>p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 22px;
    max-width: 460px;
}

.wp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.wp-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--navy);
    font-weight: 500;
}

.wp-check-list .material-symbols-outlined {
    color: var(--blue);
    font-size: 20px;
}

/* ---------- Hero visual: HTML -> WP ---------- */
.wp-hero-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.wp-rings {
    position: absolute;
    top: 50%;
    right: 12%;
    width: 220px;
    height: 220px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px dashed rgba(18, 96, 216, .25);
}

.wp-rings::before {
    content: "";
    position: absolute;
    inset: -26px;
    border-radius: 50%;
    border: 1px dashed rgba(18, 96, 216, .15);
}

.wp-file-icon {
    position: relative;
    z-index: 1;
    width: 110px;
}

.wp-file-icon svg {
    width: 100%;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(23, 35, 61, .12));
}

.wp-file-badge {
    position: absolute;
    left: 50%;
    bottom: 30%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 6px;
}

.wp-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--blue);
}

.wp-arrow span:not(.material-symbols-outlined) {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .5;
}

.wp-arrow .material-symbols-outlined {
    font-size: 22px;
}

.wp-logo-circle {
    position: relative;
    z-index: 1;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-logo-circle svg {
    width: 64px;
    height: 64px;
}


/* ================= UPLOAD ================= */
.upload-section {
    padding: 0 0 70px;
}

.upload-box {
    border: 1.5px dashed rgba(18, 96, 216, .35);
    border-radius: var(--radius);
    background: var(--bg-soft);
    padding: 50px 24px;
    text-align: center;
}

.upload-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--blue);
}

.upload-box h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.upload-box>p {
    font-size: 14.5px;
    color: var(--text-body);
    margin-bottom: 22px;
}

.upload-limit {
    display: block;
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--text-body);
}

.upload-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12.5px;
    color: var(--text-body);
}

.upload-secure .material-symbols-outlined {
    font-size: 15px;
    color: var(--text-body);
}


/* ================= HOW IT WORKS ================= */
.how-section {
    padding: 0 0 80px;
}

.how-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    margin-bottom: 50px;
}

.how-step {
    text-align: center;
    width: 190px;
    position: relative;
}

.how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-icon .material-symbols-outlined {
    font-size: 32px;
    color: var(--blue);
}

.how-step strong {
    display: block;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
}

.how-step small {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

.how-dots {
    flex: 1;
    max-width: 60px;
    height: 1px;
    margin-top: 38px;
    background-image: linear-gradient(90deg, rgba(18, 96, 216, .35) 40%, transparent 40%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.feature-box {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 16px;
}

.feature-box>.material-symbols-outlined {
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.feature-box strong {
    display: block;
    font-size: 14.5px;
    color: var(--navy);
    margin-bottom: 6px;
}

.feature-box small {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.5;
}


/* ================= FAQ ================= */
.faq-section {
    padding: 0 0 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px 22px;
    margin-bottom: 12px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item .faq-plus {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.faq-item[open] .faq-plus {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 0 18px;
}


/* ================= CTA ================= */
.wp-cta-section {
    padding: 0 0 50px;
}

.wp-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 44px;
}

.wp-cta-box h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.wp-cta-box p {
    font-size: 14.5px;
    color: var(--text-body);
    max-width: 460px;
}

.wp-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.w-banner-image img {
    max-width: 400px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
    .wp-hero-grid {
        grid-template-columns: 1fr;
    }

    .wp-hero-visual {
        height: 220px;
    }

    .features-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .wp-rings {
        right: 220px;
    }
}

@media (max-width: 700px) {
    .wp-hero-content h1 {
        font-size: 28px;
    }

    .how-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .how-dots {
        display: none;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .wp-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .w-banner-image img {
        max-width: 300px;
    }

    .upload-secure {
        flex-direction: column;
    }

}