:root {
    --orange: #f47c20;
    --orange-dark: #d9650f;
    --orange-light: #fff3e8;

    --dark: #252525;
    --text: #4b4b4b;
    --muted: #777777;

    --light: #f7f7f5;
    --white: #ffffff;

    --border: #e5e5e5;

    --max-width: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto;
}


.narrow {
    max-width: 850px;
}


/* HEADER */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}


.logo-fpd {
    width: 52px;
    height: 52px;

    background: var(--orange);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    font-size: 20px;

    border-radius: 8px;
}


.logo-text {
    font-size: 13px;
    line-height: 1.25;

    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: .04em;
}


.main-navigation {
    display: flex;
    gap: 30px;

    font-size: 14px;
    font-weight: 600;
}


.main-navigation a:hover {
    color: var(--orange);
}


/* HERO */

.hero {
    background:
        linear-gradient(
            135deg,
            #fff8f1 0%,
            #ffffff 65%
        );

    padding: 100px 0;
}


.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap: 80px;

    align-items: center;
}


.eyebrow,
.section-label {
    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .14em;
    text-transform: uppercase;

    margin-bottom: 15px;
}


.hero h1 {
    margin: 0;

    color: var(--dark);

    font-size: clamp(
        42px,
        6vw,
        72px
    );

    line-height: 1.03;

    letter-spacing: -.04em;
}


.hero h1 span {
    color: var(--orange);
    display: block;
}


.hero-subtitle {
    max-width: 700px;

    margin: 28px 0;

    font-size: 20px;
    line-height: 1.6;

    color: var(--text);
}


.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 12px 24px;

    border-radius: 6px;

    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease;
}


.btn-primary {
    background: var(--orange);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}


/* HERO VISUAL */

.hero-visual {
    min-height: 380px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(244, 124, 32, .25);
}


.hero-circle-one {
    width: 330px;
    height: 330px;
}


.hero-circle-two {
    width: 240px;
    height: 240px;

    background: var(--orange-light);
}


.hero-card {
    position: relative;

    z-index: 2;

    width: 260px;
    min-height: 220px;

    padding: 35px;

    background: var(--orange);

    color: var(--white);

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.hero-card span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}


.hero-card strong {
    font-size: 23px;
    line-height: 1.35;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}


.section-intro {
    background: var(--white);
}


.section h2 {
    margin-top: 0;

    color: var(--dark);

    font-size: clamp(
        32px,
        4vw,
        48px
    );

    line-height: 1.15;

    letter-spacing: -.025em;
}


.section-intro p {
    font-size: 17px;
}


.section-intro strong {
    color: var(--dark);
}


/* TOOLKITS */

.section-toolkits {
    background: var(--light);
}


.section-heading {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 50px;
}


.section-heading p {
    margin: 0;

    font-size: 17px;
}


.toolkit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


.toolkit-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.toolkit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}


.toolkit-number {
    padding: 16px 25px;

    background: var(--orange);

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.toolkit-card-content {
    padding: 32px;
}


.toolkit-card h3 {
    margin-top: 0;

    color: var(--dark);

    font-size: 25px;

    line-height: 1.3;
}


.toolkit-card p {
    margin-bottom: 28px;
}


.toolkit-link {
    display: inline-flex;

    gap: 10px;

    color: var(--orange);

    font-weight: 800;
}


.toolkit-link span {
    transition: transform .2s ease;
}


.toolkit-card:hover .toolkit-link span {
    transform: translateX(5px);
}


/* CONTINUATION */

.continuation-section {
    background: var(--orange);

    color: var(--white);

    padding: 100px 0;
}


.continuation-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: start;
}


.section-label.light {
    color: rgba(255,255,255,.75);
}


.continuation-section h2 {
    color: var(--white);

    font-size: clamp(
        38px,
        5vw,
        60px
    );

    line-height: 1.05;
}


.continuation-section h2 span {
    opacity: .75;
}


.continuation-text {
    font-size: 17px;
}


.continuation-text strong {
    color: var(--white);
}


/* NETWORK */

.network-section {
    background: var(--white);
}


.network-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;
}


.network-grid p {
    font-size: 17px;
}


.privacy-note {
    margin-top: 30px;

    padding: 20px;

    background: var(--orange-light);

    border-left: 4px solid var(--orange);

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.privacy-note strong {
    color: var(--dark);
}


/* FINAL CTA */

.final-cta {
    background: var(--dark);

    color: var(--white);

    padding: 90px 0;
}


.final-cta-inner {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.final-cta h2 {
    color: var(--white);

    font-size: clamp(
        35px,
        4vw,
        52px
    );

    line-height: 1.1;
}


.final-cta-text {
    font-size: 17px;
}


.final-cta-text .btn {
    margin-top: 15px;
}


/* FOOTER */

.site-footer {
    background: #181818;

    color: #cccccc;

    padding: 60px 0 25px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;
}


.footer-logo {
    display: inline-flex;

    width: 50px;
    height: 50px;

    background: var(--orange);

    color: var(--white);

    align-items: center;
    justify-content: center;

    font-weight: 800;

    border-radius: 7px;
}


.footer-small {
    font-size: 13px;
}


.footer-bottom {
    border-top: 1px solid #333;

    margin-top: 45px;
    padding-top: 20px;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

    .main-navigation {
        display: none;
    }


    .hero {
        padding: 70px 0;
    }


    .hero-grid,
    .section-heading,
    .continuation-grid,
    .network-grid,
    .final-cta-inner,
    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .hero-visual {
        min-height: 300px;
    }


    .hero-circle-one {
        width: 280px;
        height: 280px;
    }


    .hero-circle-two {
        width: 210px;
        height: 210px;
    }


    .toolkit-grid {
        grid-template-columns: 1fr;
    }


    .section {
        padding: 70px 0;
    }


    .continuation-section {
        padding: 70px 0;
    }

}


@media (max-width: 480px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--max-width)
        );
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-subtitle {
        font-size: 18px;
    }


    .hero-card {
        width: 230px;
    }

}

/* =========================================================
   TOOLKIT PAGES
   ========================================================= */


.toolkit-hero,
.resource-hero {
    background:
        linear-gradient(
            135deg,
            #fff3e8 0%,
            #ffffff 75%
        );

    padding: 70px 0 85px;
}


.toolkit-breadcrumb {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;

    color: var(--muted);

    font-size: 13px;
}


.toolkit-breadcrumb a:hover {
    color: var(--orange);
}


.toolkit-hero-content {
    max-width: 900px;
}


.toolkit-hero h1,
.resource-hero h1 {
    margin: 0;

    color: var(--dark);

    font-size: clamp(
        38px,
        5vw,
        62px
    );

    line-height: 1.08;

    letter-spacing: -.035em;
}


.toolkit-hero p {
    max-width: 850px;

    margin-top: 25px;

    font-size: 20px;
}


/* TOOLKIT CONTENT */

.toolkit-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(280px, .7fr);

    gap: 80px;

    align-items: start;
}


.toolkit-main h2 {
    color: var(--dark);

    font-size: 38px;

    line-height: 1.2;
}


.toolkit-main p {
    font-size: 17px;
}


.toolkit-description {
    font-size: 18px;

    margin-bottom: 25px;
}


/* DOWNLOAD PANEL */

.download-panel {
    position: sticky;
    top: 110px;

    padding: 30px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 12px;
}


.download-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: var(--white);

    border-radius: 50%;

    font-size: 28px;

    margin-bottom: 20px;
}


.download-panel h3 {
    color: var(--dark);

    font-size: 24px;

    margin: 0 0 10px;
}


.download-panel p {
    font-size: 15px;
}


.btn-full {
    width: 100%;
}


/* RESOURCES */

.resources-section {
    background: var(--light);
}


.resource-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


.resource-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 30px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.resource-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.07);
}


.resource-type {
    display: inline-block;

    padding: 5px 10px;

    background: var(--orange-light);

    color: var(--orange-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

    border-radius: 4px;

    margin-bottom: 15px;
}


.resource-card h3 {
    margin-top: 0;

    color: var(--dark);

    font-size: 22px;

    line-height: 1.3;
}


.resource-card p {
    font-size: 15px;
}


.resource-actions {
    margin-top: 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.resource-view {
    color: var(--orange);

    font-weight: 700;
}


.resource-download {
    padding: 8px 14px;

    border: 1px solid var(--orange);

    color: var(--orange);

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;
}


.resource-download:hover {
    background: var(--orange);

    color: var(--white);
}


.empty-state {
    padding: 40px;

    background: var(--white);

    border: 1px dashed var(--border);

    border-radius: 10px;
}


/* FEEDBACK */

.toolkit-feedback {
    background: var(--dark);

    color: var(--white);

    padding: 70px 0;
}


.feedback-inner {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.feedback-inner h2 {
    color: var(--white);

    font-size: 40px;

    margin: 0;
}


.feedback-inner p {
    font-size: 17px;
}


/* RESOURCE PAGE */

.resource-hero-content {
    max-width: 900px;
}


.resource-detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(250px, .6fr);

    gap: 80px;

    align-items: start;
}


.resource-detail-main h2 {
    color: var(--dark);

    font-size: 38px;
}


.resource-detail-main p {
    font-size: 17px;
}


.resource-detail-sidebar {
    position: sticky;

    top: 110px;
}


.resource-info {
    padding: 25px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.resource-info span {
    margin-top: 15px;

    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.resource-info span:first-child {
    margin-top: 0;
}


.resource-info strong {
    color: var(--dark);
}


.resource-coming-soon {
    padding: 25px;

    background: var(--orange-light);

    border-left: 4px solid var(--orange);
}


.resource-coming-soon strong {
    color: var(--dark);
}


@media (max-width: 800px) {

    .toolkit-layout,
    .resource-grid,
    .feedback-inner,
    .resource-detail {
        grid-template-columns: 1fr;
    }


    .download-panel,
    .resource-detail-sidebar {
        position: static;
    }


    .feedback-inner {
        gap: 25px;
    }

}


@media (max-width: 500px) {

    .resource-actions {
        align-items: flex-start;

        flex-direction: column;
    }

}

/* =========================================================
   AUTHENTICATION
   ========================================================= */


.auth-section {
    min-height: calc(100vh - 82px);

    padding: 80px 20px;

    background:
        linear-gradient(
            135deg,
            #fff3e8,
            #ffffff
        );
}


.auth-container {
    width: 100%;

    max-width: 620px;

    margin: 0 auto;
}


.auth-card {
    background: var(--white);

    padding: 45px;

    border-radius: 12px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 60px rgba(0,0,0,.07);
}


.auth-card h1 {
    color: var(--dark);

    font-size: 42px;

    line-height: 1.15;

    margin: 0 0 10px;
}


.auth-intro {
    margin-bottom: 35px;

    color: var(--muted);
}


.form-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 20px;
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;
}


.form-group input {
    width: 100%;

    height: 48px;

    padding: 10px 14px;

    border: 1px solid #d7d7d7;

    border-radius: 5px;

    background: var(--white);

    font: inherit;

    outline: none;
}


.form-group input:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(244,124,32,.12);
}


.checkbox-label {
    display: flex;

    gap: 12px;

    align-items: flex-start;

    margin: 25px 0 30px;

    font-size: 13px;

    line-height: 1.6;

    color: var(--muted);
}


.checkbox-label input {
    margin-top: 4px;

    accent-color: var(--orange);
}


.form-errors {
    margin-bottom: 25px;

    padding: 15px 18px;

    background: #fff0f0;

    border-left: 4px solid #c62828;

    color: #8a1f1f;

    font-size: 14px;
}


.form-errors div + div {
    margin-top: 5px;
}


.auth-footer {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);

    text-align: center;

    font-size: 14px;

    color: var(--muted);
}


.auth-footer a {
    color: var(--orange);

    font-weight: 700;
}


/* =========================================================
   PROFILE
   ========================================================= */


.profile-section {
    padding: 80px 0;
}


.profile-section h1 {
    color: var(--dark);

    font-size: 48px;

    margin-top: 0;
}


.profile-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 30px;

    margin-top: 40px;
}


.profile-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;
}


.profile-card h2 {
    margin-top: 0;

    color: var(--dark);

    font-size: 24px;
}


.profile-row {
    display: flex;

    flex-direction: column;

    gap: 3px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}


.profile-row:last-child {
    border-bottom: 0;
}


.profile-row span {
    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.profile-row strong {
    color: var(--dark);
}


.history-item {
    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.history-item strong {
    color: var(--dark);
}


.history-item span {
    color: var(--muted);

    font-size: 13px;
}


@media (max-width: 700px) {

    .auth-card {
        padding: 30px 22px;
    }


    .form-grid,
    .profile-grid {
        grid-template-columns: 1fr;
    }


    .auth-card h1,
    .profile-section h1 {
        font-size: 36px;
    }

}

/* =========================================================
   SHARE SECTION
   ========================================================= */


.share-section {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            #fff4e9 0%,
            #ffffff 100%
        );

    border-top: 1px solid var(--border);
}


.share-container {
    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;
}


.share-heading {
    max-width: 760px;

    margin-bottom: 40px;
}


.share-heading h2 {
    margin: 0 0 15px;

    color: var(--dark);

    font-size: 42px;

    line-height: 1.15;
}


.share-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}


/* SOCIAL BUTTONS */

.share-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 45px;
}


.share-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 48px;

    padding: 10px 17px;

    border: 1px solid var(--border);

    border-radius: 6px;

    background: var(--white);

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.share-button:hover {
    transform: translateY(-2px);

    border-color: var(--orange);

    color: var(--orange);
}


.share-icon {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;
}


/* WHATSAPP */

.share-whatsapp:hover {
    border-color: #25D366;

    color: #128C7E;
}


/* QR */

.share-qr {
    display: grid;

    grid-template-columns:
        180px
        1fr;

    gap: 35px;

    align-items: center;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;
}


.qr-image {
    width: 180px;

    height: 180px;

    padding: 10px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 5px;
}


.qr-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


.qr-content h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 27px;
}


.qr-content p {
    max-width: 600px;

    color: var(--muted);

    line-height: 1.6;

    margin-bottom: 20px;
}


.btn-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 45px;

    padding: 10px 20px;

    border: 1px solid var(--orange);

    border-radius: 5px;

    background: transparent;

    color: var(--orange);

    font-weight: 700;

    cursor: pointer;
}


.btn-outline:hover {
    background: var(--orange);

    color: var(--white);
}


@media (max-width: 650px) {

    .share-heading h2 {
        font-size: 34px;
    }


    .share-qr {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .qr-image {
        margin: 0 auto;
    }


    .qr-content p {
        margin-left: auto;

        margin-right: auto;
    }


    .share-buttons {
        flex-direction: column;
    }


    .share-button {
        width: 100%;

        justify-content: center;
    }

}