:root {
    --bg: #0f1115;
    --bg-soft: #161a22;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f6f3ee;
    --muted: rgba(246, 243, 238, 0.72);
    --accent: #e7c692;
    --accent-strong: #f3e2bc;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 24%),
        linear-gradient(180deg, #0d1014 0%, #11151b 48%, #0c0f13 100%);
    color: var(--text);
}

a {
    color: inherit;
}

.service-page.service-saas {
    --accent: #8fb4ff;
    --accent-strong: #d9e5ff;
}

.service-page.service-mobile {
    --accent: #c2a8ff;
    --accent-strong: #eadfff;
}

.topbar,
.hero,
.section,
.footer {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.topbar-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
}

.topbar-nav .topbar-cta {
    color: #111;
    background: var(--accent-strong);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.hero {
    padding: 3.4rem 0 1.8rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
}

.hero-copy,
.hero-panel,
.card,
.price-card,
.cta-box {
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
    border-radius: calc(var(--radius) + 6px);
    padding: 2rem;
}

.hero-badge,
.section-kicker,
.step-number,
.price-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-badge {
    margin-bottom: 1rem;
    color: var(--accent-strong);
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 10ch;
    margin-bottom: 1rem;
}

.hero p,
.section-header p,
.hero-point p,
.card p,
.price-card p,
.footer a,
.footer p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-strong);
    color: #111;
}

.btn-secondary {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.hero-point strong,
.card h3,
.price-card h3,
.footer h4 {
    display: block;
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
}

.section {
    padding-top: 0.8rem;
}

.section-header {
    margin-bottom: 1.25rem;
    max-width: 780px;
}

.section-kicker,
.step-number,
.price-label {
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.grid {
    display: grid;
    gap: 1rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.price-card,
.cta-box {
    border-radius: var(--radius);
    padding: 1.15rem;
}

.card ul,
.price-card ul {
    list-style: none;
    margin-top: 1rem;
}

.card li,
.price-card li {
    color: var(--muted);
    padding: 0.45rem 0;
    line-height: 1.65;
    display: flex;
    gap: 0.65rem;
}

.card li::before,
.price-card li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
    flex: 0 0 auto;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0.35rem 0 0.5rem;
}

.price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

.cta {
    padding: 1.25rem 0 4rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer {
    padding: 0 0 3rem;
    display: grid;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
}

@media (max-width: 980px) {
    .hero,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding-top: 2.75rem;
    }

    .hero-copy,
    .hero-panel,
    .card,
    .price-card,
    .cta-box {
        padding: 1.2rem;
    }

    .hero h1 {
        max-width: none;
    }
}
