:root {
    --bg: #f5f5f5;
    --primary: #35d6c5;
    --secondary: #6f4fff;
    --text: #000000;
    --muted: #666666;
    --surface: #ffffff;
    --surface2: rgba(0, 0, 0, 0.12);
    --accent: #f9a825;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--text);
}

a {
    color: var(--primary);
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    overflow: hidden;
    background-image: url('https://source.unsplash.com/1600x900/?truck,transportation');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(53, 214, 197, 0.3), rgba(111, 79, 255, 0.25), rgba(245, 82, 82, 0.25)), rgba(255, 255, 255, 0.3);
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
}

.glow {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: none;
}

.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--muted);
    margin-top: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 0.8rem 1.4rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #031321;
    box-shadow: 0 15px 30px rgba(53, 214, 197, 0.36);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-light {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.hero-balls {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-balls span {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.22;
    background: radial-gradient(circle, #f40 0%, transparent 65%);
    animation: float 14s ease-in-out infinite;
    filter: blur(10px);
}

.hero-balls span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-duration: 12s;
    background: radial-gradient(circle, #35d6c5 0%, transparent 70%);
}

.hero-balls span:nth-child(2) {
    left: 65%;
    top: 8%;
    animation-duration: 18s;
    background: radial-gradient(circle, #6f4fff 0%, transparent 70%);
}

.hero-balls span:nth-child(3) {
    left: 30%;
    top: 55%;
    animation-duration: 17s;
    background: radial-gradient(circle, #ff7373 0%, transparent 70%);
}

.hero-balls span:nth-child(4) {
    left: 80%;
    top: 45%;
    animation-duration: 20s;
    background: radial-gradient(circle, #e6f168 0%, transparent 70%);
}

.hero-balls span:nth-child(5) {
    left: 50%;
    top: 75%;
    animation-duration: 16s;
    background: radial-gradient(circle, #ffa741 0%, transparent 70%);
}

.section {
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-trim {
    padding-top: 2.2rem;
}

.section h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text);
}

.section p,
.section li {
    line-height: 1.68;
    color: var(--text);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 1.3rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    transform: translateY(20px);
    opacity: 0;
}

.card h3 {
    margin-top: 0;
    color: var(--text);
}

.card-icon {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.card ul {
    margin: 0.7rem 0 0 1rem;
    padding: 0;
}

.card ul li {
    margin: 0.4rem 0;
}

.loan-list {
    list-style: none;
    padding-left: 0;
    margin: 0.8rem 0;
}

.loan-list li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.8rem 0;
}

.loan-list li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
}

.steps {
    counter-reset: step;
    padding-left: 0;
    list-style: none;
    margin: 1rem 0 0;
}

.steps li {
    counter-increment: step;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.section-light {
    background: rgba(0, 0, 0, 0.05);
    border-top: 1px solid #eee;
}

.section-primary {
    background: linear-gradient(120deg, rgba(53, 214, 197, 0.2), rgba(111, 79, 255, 0.18));
    border-top: 1px solid #eee;
}

.footer {
    text-align: center;
    padding: 1.2rem 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
        opacity: .15;
    }

    50% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: .28;
    }

    100% {
        transform: translate(0, 10px);
        opacity: .15;
    }
}

@keyframes pulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(53, 214, 197, 0.8), 0 0 35px rgba(111, 79, 255, 0.6);
    }

    50% {
        text-shadow: 0 0 30px rgba(53, 214, 197, 1), 0 0 45px rgba(111, 79, 255, 0.8);
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: reveal 0.9s ease forwards;
}

.delay-1 {
    animation-delay: .16s;
}

@media (max-width: 700px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}