:root {
    --navy: #0b1526;
    --navy-2: #101f38;
    --navy-3: #0d1a30;
    --cyan: #29c5f6;
    --cyan-dark: #0ea5d8;
    --text-light: #eaf2fb;
    --text-muted: #93a4bd;
    --bg: #f5f7fa;
    --ink: #10192b;
    --body-text: #5a6478;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* Icon badges */
.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(41, 197, 246, 0.16), rgba(41, 197, 246, 0.04));
    color: var(--cyan-dark);
    margin-bottom: 18px;
}

.icon-badge svg {
    width: 24px;
    height: 24px;
}

.icon-badge.on-dark {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cyan);
}

.icon-badge.small {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    margin-bottom: 0;
}

.icon-badge.small svg {
    width: 17px;
    height: 17px;
}

/* Accent color set — used across icon badges, stats, process numbers and badges */
.icon-badge.c-cyan    { background: linear-gradient(135deg, rgba(41, 197, 246, .16), rgba(41, 197, 246, .04)); color: #0ea5d8; }
.icon-badge.c-violet  { background: linear-gradient(135deg, rgba(139, 92, 246, .16), rgba(139, 92, 246, .04)); color: #7c3aed; }
.icon-badge.c-amber   { background: linear-gradient(135deg, rgba(245, 158, 11, .18), rgba(245, 158, 11, .05)); color: #d97706; }
.icon-badge.c-emerald { background: linear-gradient(135deg, rgba(16, 185, 129, .16), rgba(16, 185, 129, .04)); color: #059669; }
.icon-badge.c-blue    { background: linear-gradient(135deg, rgba(59, 130, 246, .16), rgba(59, 130, 246, .04)); color: #2563eb; }
.icon-badge.c-pink    { background: linear-gradient(135deg, rgba(236, 72, 153, .16), rgba(236, 72, 153, .04)); color: #db2777; }
.icon-badge.c-rose    { background: linear-gradient(135deg, rgba(244, 63, 94, .16), rgba(244, 63, 94, .04)); color: #e11d48; }

.icon-badge.on-dark.c-cyan    { background: rgba(41, 197, 246, .16); color: #29c5f6; }
.icon-badge.on-dark.c-violet  { background: rgba(139, 92, 246, .18); color: #a78bfa; }
.icon-badge.on-dark.c-amber   { background: rgba(245, 158, 11, .18); color: #fbbf24; }
.icon-badge.on-dark.c-emerald { background: rgba(16, 185, 129, .18); color: #34d399; }
.icon-badge.on-dark.c-blue    { background: rgba(59, 130, 246, .18); color: #60a5fa; }
.icon-badge.on-dark.c-pink    { background: rgba(236, 72, 153, .18); color: #f472b6; }
.icon-badge.on-dark.c-rose    { background: rgba(244, 63, 94, .18); color: #fb7185; }

.stat-num.c-cyan    { color: #0ea5d8; }
.stat-num.c-violet  { color: #7c3aed; }
.stat-num.c-amber   { color: #d97706; }
.stat-num.c-emerald { color: #059669; }

.process-num.c-cyan    { color: #0ea5d8; }
.process-num.c-violet  { color: #7c3aed; }
.process-num.c-amber   { color: #d97706; }
.process-num.c-emerald { color: #059669; }

.badge.c-cyan svg    { color: #29c5f6; }
.badge.c-violet svg  { color: #a78bfa; }
.badge.c-amber svg   { color: #fbbf24; }
.badge.c-emerald svg { color: #34d399; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--navy);
    transition: box-shadow 0.25s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav-cta {
    background: var(--cyan);
    color: var(--navy) !important;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700 !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(41, 197, 246, 0.16), transparent 45%),
        radial-gradient(circle at 88% 78%, rgba(41, 197, 246, 0.09), transparent 42%),
        linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
    color: var(--text-light);
    padding: 88px 24px 56px;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(circle at 50% 25%, black, transparent 68%);
    mask-image: radial-gradient(circle at 50% 25%, black, transparent 68%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.hero-text {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-primary {
    background: var(--cyan);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 26px rgba(41, 197, 246, 0.3);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
    background: var(--cyan-dark);
    box-shadow: 0 14px 32px rgba(41, 197, 246, 0.38);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 10px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline svg {
    width: 16px;
    height: 16px;
}

.btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-block {
    display: block;
    width: 100%;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

.badge svg {
    width: 15px;
    height: 15px;
    color: var(--cyan);
}

/* Stats */
.stats {
    background: #fff;
    padding: 46px 24px;
    border-bottom: 1px solid #eef1f5;
}

.stats-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--body-text);
    font-size: 13px;
    margin-top: 6px;
}

/* Section shared */
.section-head {
    max-width: 640px;
    margin: 0 auto 44px;
    text-align: center;
    padding: 0 24px;
}

.section-head.light h2,
.section-head.light .eyebrow {
    color: #fff;
}

.eyebrow {
    color: var(--cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.eyebrow.light {
    color: var(--cyan);
}

.section-head h2 {
    font-size: 30px;
    color: var(--ink);
}

/* Services */
.services {
    padding: 76px 24px;
    max-width: 1120px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border-radius: 18px;
    border-top: 3px solid transparent;
    padding: 30px 26px;
    box-shadow: 0 10px 28px rgba(16, 25, 43, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(16, 25, 43, 0.1);
}

.service-card.c-cyan    { border-top-color: #29c5f6; }
.service-card.c-violet  { border-top-color: #8b5cf6; }
.service-card.c-amber   { border-top-color: #f59e0b; }
.service-card.c-emerald { border-top-color: #10b981; }
.service-card.c-blue    { border-top-color: #3b82f6; }
.service-card.c-pink    { border-top-color: #ec4899; }
.service-card.c-rose    { border-top-color: #f43f5e; }

.service-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--ink);
}

.service-card p {
    color: var(--body-text);
    font-size: 14px;
}

/* Why us */
.why-us {
    background: var(--navy-2);
    padding: 76px 24px;
}

.why-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.why-card {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Process */
.process {
    padding: 76px 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.process-card {
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 18px;
    padding: 26px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.process-card:hover {
    border-color: rgba(41, 197, 246, 0.4);
    transform: translateY(-3px);
}

.process-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan-dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.process-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink);
}

.process-card p {
    color: var(--body-text);
    font-size: 14px;
}

/* Contact */
.contact {
    background: var(--navy);
    padding: 76px 24px;
}

.contact-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
}

.contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 14px;
}

.contact-lead {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 15px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.contact-list a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.15s ease;
}

.contact-list a:hover {
    color: var(--cyan);
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #33415c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #dbe1ea;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(41, 197, 246, 0.15);
}

.form-status {
    font-size: 14px;
    font-weight: 600;
    min-height: 18px;
}

.form-status.success { color: #1c9a5b; }
.form-status.error { color: #d32f2f; }

/* Footer */
.footer {
    background: #08111f;
    color: var(--text-muted);
    text-align: center;
    padding: 26px 24px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
        gap: 16px;
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 30px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
