﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
    --ink: #0b1620;
    --slate: #132433;
    --mist: #e9f1f5;
    --sand: #f6e7d1;
    --teal: #0f8b8d;
    --cyan: #37d2d2;
    --amber: #f4b860;
    --rose: #f28482;
    --card: #ffffff;
    --muted: #5a6b7c;
    --shadow: 0 20px 45px rgba(9, 20, 35, 0.18);
    --radius-lg: 22px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}
.custom-input {
    color: #757575 !important;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f5fbfb 0%, #f1f4f7 45%, #ffffff 100%);
}

    body::before {
        content: "";
        position: fixed;
        inset: -10% 0 auto;
        height: 380px;
        background: radial-gradient(circle at 15% 20%, rgba(55, 210, 210, 0.25), transparent 55%), radial-gradient(circle at 85% 10%, rgba(244, 184, 96, 0.25), transparent 50%), linear-gradient(120deg, rgba(15, 139, 141, 0.12), rgba(19, 36, 51, 0.05));
        z-index: -1;
    }

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

ul {
    margin-bottom: 0px;
}



.header {
    height: 69px;
}

    .header .wrapper {
        margin: 0px 0 0 0;
    }


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a91e1b, #ee091c);
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 0.95rem;
}

    .nav-links a {
        padding: 8px 12px;
        border-radius: 999px;
        transition: all 0.2s ease;
        color: var(--slate);
    }

        .nav-links a.active,
        .nav-links a:hover {
            background: #da4146;
            color: #fff;
        }

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--slate);
}

.hero {
    padding: 30px 0 60px;
    position: relative;
    margin-top: 5%;
}

.form div {
    display: flex;
    flex-direction: column;
    width: 48%;
}

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


.how-why {
    display: flex;
    gap: 24px;
}

    .how-why div {
        width: 50%;
    }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgb(218 65 70);
    color: #fefefe;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.hero h1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 16px 0 10px;
    color: var(--slate);
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-panel {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #a91e1b, #da4146);
    color: white;
    box-shadow: 0 10px 25px rgba(15, 139, 141, 0.3);
}

.btn-secondary {
    background: rgb(218 15 27 / 6%);
    color: #d5101b;
    margin-top: auto;
}

.btn:hover {
    transform: translateY(-2px);
}

.section {
    padding: 30px 0;
}

    .section h2 {
        font-family: "Inter", sans-serif;
        color: var(--slate);
        font-size: 30px;
        margin-bottom: 14px;
        font-weight: 600;
    }

    .section p.lead {
        color: var(--muted);
        line-height: 1.7;
        max-width: 100%;
        font-weight: 400;
        font-size: 17px;
    }

.card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 26px;
}

.card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: 0 16px 35px rgba(16, 30, 45, 0.12);
    border: 1px solid rgba(15, 139, 141, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .card h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--slate);
        line-height: 1.6;
        font-size: 16px;
        font-weight: 600;
    }

    .card p {
        color: var(--muted);
        line-height: 1.6;
        margin: 0;
    }

.list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

    .list li {
        padding-left: 26px;
        position: relative;
        color: var(--muted);
        line-height: 1.6;
    }

        .list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 14px;
            height: 14px;
            border-radius: 4px;
            background: linear-gradient(135deg, #ff9a9e, #ffdedd);
        }

.cta {
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    gap: 18px;
    align-items: center;
    box-shadow: var(--shadow);
}

    .cta h3 {
        margin: 0;
        font-size: 23px;
        color: var(--slate);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .cta p {
        margin: 0;
        color: var(--muted);
    }

.header-item-left a img {
    padding-top: 6px;
}

.form {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .form label {
        color: var(--muted);
        margin-bottom: 5px;
    }

    .form input,
    .form select,
    .form textarea {
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid rgba(19, 36, 51, 0.15);
        font-family: inherit;
        font-size: 13px;
        /* width: 215px; */
        
    }

    .form textarea {
        min-height: 110px;
        resize: vertical;
        width: 100%;
    }

.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    padding-right: 0;
    padding-left: 0;
}

.footer {
    padding: 40px 0 60px;
    color: var(--muted);
    font-size: 0.9rem;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
    width: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links.open {
        display: grid;
        background: white;
        padding: 12px;
        border-radius: 12px;
        position: absolute;
        right: 4vw;
        top: 70px;
        box-shadow: var(--shadow);
    }

    .how-why {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

        .how-why div {
            width: 100%;
        }
}

@media (max-width: 700px) {
    .hero {
        padding: 60px 0 40px;
    }

    .cta {
        padding: 24px;
    }

        .cta h3 {
            margin: 0;
            font-size: 1rem;
            color: var(--slate);
            margin-bottom: 10px;
        }

    .hero-grid {
        flex-direction: column;
    }

    .fade-in {
        animation: fadeIn 0.8s ease forwards;
        opacity: 0;
        width: 100%;x
    }

    .hero-tag {
        padding: 6px 6px;
    }

    .section h2 {
        font-size: 25px;
        
        font-weight: 600;
    }
    .form div {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}
