:root {
    --red: #e6402f;
    --deep-blue: #1f2b8f;
    --blue: #2e6bd7;
    --green: #3aa64a;
    --gold: #f1c232;
    --ink: #1c1f2a;
    --bg: #f6f7fb;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Barlow", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
}

.hero {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(46, 107, 215, 0.25), transparent),
        radial-gradient(800px 500px at 90% -10%, rgba(230, 64, 47, 0.25), transparent),
        linear-gradient(180deg, #fff, #f3f5ff);
    padding: 24px 24px 64px;
    border-bottom: 6px solid var(--red);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--red);
    object-fit: cover;
    background: #fff;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--deep-blue);
}

.brand-tag {
    font-size: 14px;
    color: #5a6478;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: center;
}

.hero-text h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px;
    margin: 0 0 12px;
    color: var(--deep-blue);
}

.hero-text p {
    font-size: 18px;
    color: #4a5162;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.hero-card {
    background: var(--white);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(20, 30, 60, 0.12);
    border-left: 6px solid var(--green);
    animation: floatIn 700ms ease-out;
}

.card-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.card-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e6e9f2;
}

.card-item:last-child {
    border-bottom: 0;
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px;
}

.section h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 36px;
    color: var(--deep-blue);
    margin: 0 0 8px;
}

.section-sub {
    color: #56607a;
    margin: 0 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service {
    background: var(--white);
    border-radius: 16px;
    padding: 18px;
    border-top: 4px solid var(--blue);
    box-shadow: 0 10px 24px rgba(20, 30, 60, 0.08);
}

.service h3 {
    margin: 0 0 8px;
    color: var(--red);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
}

.contact {
    background: linear-gradient(120deg, rgba(241, 194, 50, 0.18), rgba(58, 166, 74, 0.15));
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 2px solid #f0f2f7;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer {
    background: var(--deep-blue);
    color: white;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    font-size: 14px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-credit {
    text-align: right;
    font-weight: 600;
    color: #e9ecff;
}

@media (max-width: 700px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-credit {
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(20, 30, 60, 0.15);
}

.btn-primary {
    background: var(--red);
    color: white;
}

.btn-outline {
    border: 2px solid var(--deep-blue);
    color: var(--deep-blue);
}

.btn-ghost {
    color: var(--blue);
    border: 2px dashed rgba(46, 107, 215, 0.4);
}

/* Motion */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }
}