:root {
    --ink: #14201c;
    --muted: #6b7280;
    --border: #eceff1;
    --accent-green: #1e5b3a;
    --accent-orange: #f97316;
    --bg-glow-1: #eaf3ec;
    --bg-glow-2: #eef2f6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

/* .top-bar {
    height: 4px;
    background: linear-gradient(90deg, #111, #111);
} */

/* Hero */
.hero {
    position: relative;
    padding: 110px 40px 70px;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
    /* background:
        radial-gradient(ellipse 900px 500px at 78% 10%, #f2f5f9, transparent 60%),
        radial-gradient(ellipse 800px 500px at 20% 90%, #f2f5f9, transparent 60%),
        #ffffff; */
}

.hero h1 {
    /* font-family: Georgia, 'Times New Roman', serif; */
    font-weight: 400;
    font-size: 52px;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    color: #0d0d0d;
}

.hero h1 .highlight {
    color: var(--accent-black);
}

.hero p {
    max-width: 640px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.6;
}

.cta {
    margin-top: 38px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #015fc9;
    color: #fff;
    border: none;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.cta:hover {
    background: #000;
    transform: translateY(-1px);
}

.cta .arrow {
    display: inline-block;
    transition: transform .15s ease;
}

.cta:hover .arrow {
    transform: translateX(3px);
}

/* Service strip */
.services {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1180px;
    margin: 110px auto 0;
    padding-top: 34px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.service {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 0 26px;
    border-right: 1px solid var(--border);
    flex: 1;
    max-width: 220px;
    cursor: default;
}

.service:last-child {
    border-right: none;
}

.service-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.service-icon.startup {
    background: #eef2ee;
    color: #2f6b4f;
}

.service-icon.gst {
    background: #e9edfb;
    color: #3454d1;
}

.service-icon.mca {
    background: #f2ecfb;
    color: #7c4dcf;
}

.service-icon.tax {
    background: #fdece2;
    color: #e0682f;
}

.service-icon.trademark {
    background: #e6f6ec;
    color: #1e9a4b;
}

.service h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.service p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
}

.clients-label {
    text-align: center;
    margin-top: 70px;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #3d4f8f;
    padding-bottom: 40px;
}

/* ============ TABLET / MOBILE ============ */
@media (max-width: 1024px) {

    .hero {
        padding: 60px 22px 50px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .services {
        margin-top: 60px;
        gap: 24px 16px;
        justify-content: center;
    }

    .service {
        border-right: none;
        max-width: 46%;
        flex: 1 1 46%;
    }
}

@media (max-width: 640px) {

    .hero {
        padding: 50px 18px 40px;
    }

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

    .hero p {
        font-size: 14px;
    }

    .cta {
        padding: 13px 22px;
        font-size: 14px;
    }

    .services {
        margin-top: 44px;
        gap: 20px;
    }

    .service {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 6px;
    }

    .clients-label {
        margin-top: 46px;
        padding-bottom: 30px;
    }
}