:root {
    --brand: #3660AD;
    --brand-ink: #0B1B34;
    --ink: #0E1320;
    --muted: #6B7280;
    --bg: #ffffff;
    --bg-alt: #F6F8FB;
    --card: #ffffff;
    --border: #E5E7EB;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(2, 12, 27, .08);
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--ink);
    background: var(--bg)
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.text-center {
    text-align: center!important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-primary:hover {
    opacity: .9
}

.btn-secondary {
    background: #fff;
    border-color: #CBD5E1;
    color: #0f172a
}

.btn-secondary:hover {
    background: #F8FAFC
}

.btn-ghost {
    background: transparent;
    border-color: #ffffff33;
    color: #fff
}

.btn-ghost:hover {
    border-color: #fff
}

.badge {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .375rem .625rem;
    border-radius: 999px;
    border: 1px solid #BFDBFE;
    background: #EFF6FF;
    color: #1D4ED8;
    font-weight: 600;
    font-size: .875rem
}

.check {
    color: #16a34a;
    margin-top: 2px
}

/* Layout */
header {
    padding: 20px 0;
    border-bottom: 1px solid #F1F5F9;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.nav-links {
    display: none;
    gap: 24px;
    color: #475569
}

.nav-links a {
    text-decoration: none;
    color: inherit
}

.nav-cta {
    display: flex;
    gap: 12px
}

@media (min-width: 768px) {
    .nav-links {
        display: flex
    }
}

.promo {
    background: #0f172a;
    color: #fff
}

.promo .bar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    font-size: 14px
}

.hero {
    padding: 32px 0 64px;
    background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.75)),
    url('/img/background.png') center/cover no-repeat
}

.grid-2 {
    display: grid;
    gap: 40px
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns:1fr 1fr
    }
}

.list {
    display: grid;
    gap: 10px;
    padding-left: 5px;
}

@media (min-width: 640px) {
    .list {
        grid-template-columns:1fr 1fr
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: none;
}

.card.shadow {
    box-shadow: var(--shadow);
    border-color: #BFDBFE;
    background: #F0F7FF
}

.section {
    padding: 64px 0
}

.section.alt {
    background: var(--bg-alt)
}

.pricing {
    display: grid;
    gap: 20px
}

@media (min-width: 1200px) {
    .pricing {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .pricing {
        grid-template-columns:repeat(2, 1fr)
    }
}

table {
    border-collapse: separate;
    border-spacing: 0 8px;
    width: 100%;
    min-width: 800px
}

th, td {
    padding: 14px 16px;
    text-align: left
}

tbody tr {
    background: #fff;
    border: 1px solid var(--border)
}

.industries {
    display: grid;
    gap: 20px
}

@media (min-width: 900px) {
    .industries {
        grid-template-columns:repeat(3, 1fr)
    }
}

.team {
    display: grid;
    gap: 20px
}

@media (min-width: 900px) {
    .team {
        grid-template-columns:repeat(4, 1fr)
    }
}

.footer {
    padding: 40px 0;
    border-top: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 14px
}

/* Typography */
h1 {
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 8px;
    font-weight: 800
}

@media (min-width: 768px) {
    h1 {
        font-size: 52px
    }
}

h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    font-weight: 800
}

h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700
}

p {
    color: #334155;
    font-size: 18px;
    line-height: 1.6;
    margin: 8px 0 0
}

small, .muted {
    color: var(--muted);
    font-size: 12px
}

/* Reveal on scroll (fade-up) */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

/* FAQ */
details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff
}

details + details {
    margin-top: 12px
}

summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between
}

summary::-webkit-details-marker {
    display: none
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 6, 23, .08), transparent);
    margin: 16px 0;
}
.pricing-popular {
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:700;
    font-size:12px;
}
.pricing-amount {
    margin-top:10px;
    font-size:28px;
    font-weight:800;
}
.pricing-desc {
    line-height: 1.3;
    margin: 20px 0 30px;
}
.pricing-list {
    margin-top:10px;
    color:#334155;
    padding: 0;
    text-align: left;
}
.pricing-list-item {
    display:flex;
    gap:4px;
    align-items:flex-start;
    margin-bottom: 10px;
}

.work {
    text-align: center;
}
.work-title {
    font-size: 35px;
    margin-bottom: 20px;
}
.work-step-wrap {
    display: flex;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}
.work-step-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 15px;
}
.work-step-item-img {
    width: 200px;
    height: 200px;
}
.work-step-item-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.work-buttons {
    margin-top: 25px;
}

.industry-img {
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .work-step-wrap {
        display: block;
    }
}