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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #222222;
    min-height: 100vh;
}

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

button,
input {
    font-family: inherit;
}


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

.header {
    width: 100%;
    padding: 22px 6%;

    border-bottom: 1px solid #eeeeee;

    background: rgba(255, 255, 255, 0.96);

    position: relative;
    z-index: 10;
}

.header-inner {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: #555555;

    transition: 0.25s ease;
}

.nav a:hover {
    color: #e00000;
}


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

.hero {
    min-height: 620px;

    padding: 90px 20px 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 30, 30, 0.08),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafafa 100%
        );
}

.hero-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(220, 0, 0, 0.07);

    left: 50%;

    transform: translateX(-50%);

    pointer-events: none;
}

.hero-circle-one {
    width: 500px;
    height: 500px;

    top: -250px;
}

.hero-circle-two {
    width: 700px;
    height: 700px;

    top: -350px;

    border-color: rgba(220, 0, 0, 0.04);
}

.hero-content {
    width: 100%;
    max-width: 800px;

    text-align: center;

    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    border-radius: 50px;

    background: #fff0f0;
    color: #d80000;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 22px;
}

.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #e00000;

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(224, 0, 0, 0.4);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(224, 0, 0, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(224, 0, 0, 0);
    }
}

.hero h1 {
    font-size: clamp(36px, 6vw, 62px);

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;

    color: #171717;

    margin-bottom: 20px;
}

.hero h1 span {
    color: #e00000;
}

.hero-description {
    max-width: 620px;

    margin:
        0 auto 35px;

    color: #777777;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   SEARCH
========================= */

.search-wrapper {
    width: 100%;
    max-width: 720px;

    margin: auto;
}

.search-box {
    display: flex;

    width: 100%;

    background: #ffffff;

    padding: 7px;

    border-radius: 14px;

    border: 1px solid #dddddd;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.search-box:focus-within {
    border-color: #e00000;

    box-shadow:
        0 15px 50px rgba(224, 0, 0, 0.12);
}

.search-icon {
    width: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #999999;
}

.search-box input {
    flex: 1;

    border: none;
    outline: none;

    font-size: 15px;

    color: #222222;

    background: transparent;

    min-width: 0;
}

.search-box input::placeholder {
    color: #aaaaaa;
}

.search-button {
    border: none;
    outline: none;

    padding: 0 28px;

    min-height: 52px;

    border-radius: 10px;

    background: #e00000;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.search-button:hover {
    background: #c80000;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(224, 0, 0, 0.25);
}

.search-button:active {
    transform: translateY(0);
}

.search-message {
    min-height: 24px;

    margin-top: 15px;

    font-size: 13px;

    color: #777777;
}


/* =========================
   QUICK LINKS
========================= */

.quick-links {
    margin-top: 20px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.quick-link {
    padding: 9px 14px;

    border-radius: 8px;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    color: #666666;

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition: 0.2s ease;
}

.quick-link:hover {
    background: #fff0f0;

    border-color: #ffd0d0;

    color: #d80000;
}


/* =========================
   INFO SECTION
========================= */

.info-section {
    padding: 80px 20px;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
}

.section-container {
    width: 100%;
    max-width: 1100px;

    margin: auto;
}

.section-heading {
    text-align: center;

    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: 30px;

    font-weight: 800;

    color: #181818;

    margin-bottom: 12px;
}

.section-heading p {
    font-size: 14px;

    color: #888888;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.step {
    padding: 30px;

    border: 1px solid #eeeeee;

    border-radius: 16px;

    background: #ffffff;

    transition: 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);

    border-color: #ffd5d5;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #fff0f0;

    color: #df0000;

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 22px;
}

.step h3 {
    font-size: 17px;

    margin-bottom: 10px;

    color: #222222;
}

.step p {
    font-size: 13px;

    line-height: 1.7;

    color: #888888;
}


/* =========================
   NOTICE
========================= */

.notice {
    margin-top: 50px;

    padding: 22px 25px;

    border-radius: 14px;

    background: #fff8f8;

    border: 1px solid #ffe0e0;

    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.notice-icon {
    color: #d80000;
}

.notice-content strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;

    color: #c90000;
}

.notice-content p {
    font-size: 13px;

    line-height: 1.7;

    color: #777777;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #151515;

    color: #ffffff;

    padding: 45px 20px 25px;
}

.footer-container {
    max-width: 1100px;

    margin: auto;
}

.footer-top {
    display: flex;

    justify-content: space-between;

    gap: 40px;

    padding-bottom: 35px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.footer-brand h3 span {
    color: #ff3030;
}

.footer-brand p {
    color: #999999;

    font-size: 13px;

    line-height: 1.7;
}

.footer-links {
    display: flex;

    gap: 45px;
}

.footer-column h4 {
    font-size: 13px;

    margin-bottom: 15px;
}

.footer-column a {
    display: block;

    color: #999999;

    font-size: 12px;

    margin-bottom: 9px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777777;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .header {
        padding: 18px 20px;
    }

    .nav {
        display: none;
    }

    .hero {
        min-height: 580px;

        padding:
            70px 20px
            60px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .search-box {
        padding: 6px;
    }

    .search-icon {
        width: 45px;
    }

    .search-button {
        padding: 0 20px;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: 50px;
    }

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


@media (max-width: 480px) {

    .logo {
        font-size: 19px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .search-box {
        flex-wrap: wrap;

        background: transparent;

        border: none;

        box-shadow: none;

        padding: 0;
    }

    .search-icon {
        display: none;
    }

    .search-box input {
        width: 100%;

        flex: none;

        min-height: 54px;

        padding: 0 18px;

        background: #ffffff;

        border: 1px solid #dddddd;

        border-radius: 11px;

        margin-bottom: 9px;
    }

    .search-button {
        width: 100%;
    }

    .quick-links {
        gap: 7px;
    }

    .quick-link {
        font-size: 11px;
    }

    .info-section {
        padding: 60px 20px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .footer-links {
        flex-direction: column;

        gap: 25px;
    }
}