:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #22d3ee;
    --accent-soft: rgba(34, 211, 238, 0.14);
    --ink-900: #0f172a;
    --ink-700: #1f2937;
    --ink-600: #334155;
    --ink-500: #64748b;
    --ink-300: #CBD5F5;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-muted: #eef2ff;
    --border: rgba(15, 23, 42, 0.08);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-lg: 0 36px 70px -48px rgba(37, 99, 235, 0.32);
    --shadow-md: 0 28px 48px -34px rgba(15, 23, 42, 0.24);
    --shadow-sm: 0 20px 32px -26px rgba(15, 23, 42, 0.14);
    --transition: all 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink-900);
    line-height: 1.6;
    background: linear-gradient(180deg, #f5f7fb 0%, #eff3ff 55%, #ebf2ff 100%);
    min-height: 100vh;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.top-bar {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.1));
    color: var(--ink-700);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.top-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.top-bar__info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.top-bar__info span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.88;
    font-weight: 500;
}

.top-bar__info span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.top-bar__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    padding: 0.42rem 1.1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 16px 32px -28px rgba(37, 99, 235, 0.48);
    transition: var(--transition);
}

.top-bar__cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    box-shadow: 0 20px 40px -28px rgba(37, 99, 235, 0.55);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 44px -40px rgba(15, 23, 42, 0.25);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 1.25rem 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    transition: none;
    color: inherit;
}

.brand-link:hover {
    transform: none;
    background: transparent;
}

.brand-link img {
    display: block;
    height: 58px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--ink-600);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-nav a {
    position: relative;
    z-index: 1;
    padding: 0.2rem 0;
    border-radius: 0;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    transform: none;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
}

.site-nav a:hover::after {
    opacity: 0;
}

.site-nav a.active::after {
    opacity: 1;
    height: 3px;
    background: var(--primary);
    bottom: -0.4rem;
}

.site-nav a.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.25);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    background: #fff;
    color: var(--primary);
}

.btn::after {
    content: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    color: var(--primary);
    background: transparent;
    border-color: rgba(37, 99, 235, 0.25);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-dark);
    border-color: rgba(37, 99, 235, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: none;
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-dark);
}

.site-main {
    padding-bottom: 5rem;
}

.hero {
    position: relative;
    padding: 4.8rem 0 6.6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.28), transparent 55%),
                radial-gradient(circle at 86% 8%, rgba(34, 211, 238, 0.28), transparent 58%),
                linear-gradient(180deg, rgba(246, 249, 255, 0.96), rgba(255, 255, 255, 0.94));
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -40% -50% -40%;
    height: 70%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 65%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.9rem, 5vw, 3.65rem);
    margin-bottom: 1.1rem;
    letter-spacing: -0.03em;
    color: var(--ink-900);
}

.hero p {
    margin: 0 0 1.9rem 0;
    font-size: 1.1rem;
    color: var(--ink-700);
    max-width: 580px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.hero-highlight {
    min-width: 188px;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, 0.16);
    backdrop-filter: blur(6px);
}

.hero-highlight strong {
    display: block;
    font-size: 1.42rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.hero .card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2.35rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.14);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.1rem;
}

.list-check {
    margin: 1.1rem 0 0;
    padding-left: 1.2rem;
    line-height: 1.7;
    color: var(--ink-700);
}

.list-check li + li {
    margin-top: 0.4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-dark);
    background: rgba(249, 115, 22, 0.14);
    border: 1px solid rgba(249, 115, 22, 0.28);
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-list {
    display: grid;
    gap: 2.4rem;
}

.service-entry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: var(--shadow-sm);
    padding: 2.15rem;
    position: relative;
}

.service-entry::after {
    content: '';
    position: absolute;
    inset: auto 2.2rem -1.15rem;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.22;
}

.service-entry__media {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 8px);
    box-shadow: 0 20px 40px -28px rgba(17, 24, 39, 0.18);
    background: #fff;
    aspect-ratio: 16 / 9;
    min-height: 240px;
    width: min(100%, 720px);
    margin: 0 auto;
}

.service-entry__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-entry__body {
    display: grid;
    gap: 2rem;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.service-entry__header h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    letter-spacing: -0.01em;
    color: var(--ink-900);
}

.service-entry__header {
    text-align: center;
}

.service-entry__body h3 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.service-entry__header .muted {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: var(--ink-600, #4f627a);
}

.service-entry__meta {
    display: grid;
    gap: 1.3rem;
    justify-items: center;
    text-align: center;
}

.service-entry__pricing {
    display: grid;
    gap: 0.55rem;
    min-width: 0;
    text-align: center;
    justify-items: center;
}

.service-entry__pricing .tag {
    justify-content: center;
}

.service-entry__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.charge-list {
    list-style: none;
    margin: 0 auto 1.2rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    max-width: 680px;
}

.charge-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.charge-list strong {
    color: var(--ink-700);
}

.charge-list .muted {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--ink-500);
}

.charge-list__price {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    white-space: nowrap;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem 1.6rem;
    margin: 0 auto;
    padding: 0;
    max-width: 760px;
}

.feature-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ink-700);
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.section {
    padding: 4.8rem 0;
    background: var(--surface);
    position: relative;
}

.section--intro {
    padding-top: 3.6rem;
}

.section--flush-top {
    padding-top: 0;
}

.section-title {
    margin: 1.1rem 0 0;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    letter-spacing: -0.03em;
    color: var(--ink-900);
}

.section:nth-of-type(odd) {
    background: var(--surface-soft);
    box-shadow: inset 0 1px 0 rgba(37, 99, 235, 0.06), inset 0 -1px 0 rgba(37, 99, 235, 0.06);
}

.section h2 {
    font-size: clamp(2.2rem, 3.4vw, 2.85rem);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    color: var(--ink-900);
}

.section p.lead {
    color: var(--ink-700);
    max-width: 640px;
    font-size: 1.08rem;
}

.section--muted {
    background: linear-gradient(180deg, rgba(238, 242, 255, 0.9), rgba(250, 253, 255, 0.95));
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.1rem;
    margin-top: 2.8rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    padding: 2.05rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, 0.14);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-card::after {
    content: '';
    position: absolute;
    inset: auto auto -48px 58%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 60%);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px -36px rgba(15, 23, 42, 0.26);
}
.image-box {
  aspect-ratio: 1480 / 382;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.14);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
    align-items: start;
}

.grid-two--center {
    align-items: center;
    gap: 2.6rem;
}

.card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    padding: 2.15rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, 0.12);
    backdrop-filter: blur(4px);
}

.card h3 {
    margin-top: 0;
}

.card--compact {
    padding: 1.7rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.1em;
}

.stack {
    display: grid;
    gap: 1.4rem;
}

.btn-inline {
    width: fit-content;
}

.embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.caption {
    display: block;
    margin-top: 0.75rem;
    color: var(--ink-500);
    font-size: 0.85rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin: 1.8rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    font-weight: 600;
    color: var(--ink-700);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
select,
textarea {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
    color: var(--ink-900);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.2);
}

.alert {
    padding: 1rem 1.15rem;
    border-radius: 14px;
    margin-bottom: 1.7rem;
    font-weight: 600;
}

.alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #15803d;
}

.alert-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #b91c1c;
}

.muted {
    color: var(--ink-500);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    text-align: left;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 208, 0.2);
    font-size: 0.97rem;
}

.table thead {
    background: rgba(37, 99, 235, 0.08);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status[data-status="pending"] {
    background: rgba(250, 204, 21, 0.22);
    color: #854d0e;
}

.status[data-status="scheduled"] {
    background: rgba(191, 219, 254, 0.42);
    color: #1d4ed8;
}

.status[data-status="in_progress"] {
    background: rgba(221, 214, 254, 0.45);
    color: #5b21b6;
}

.status[data-status="completed"] {
    background: rgba(187, 247, 208, 0.4);
    color: #166534;
}

.status[data-status="cancelled"] {
    background: rgba(254, 202, 202, 0.42);
    color: #b91c1c;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.1rem;
}

.metric-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.55rem 1.6rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow-sm);
}

.metric-card strong {
    display: block;
    font-size: 1.85rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.6rem;
}

.empty-state {
    text-align: center;
    padding: 3.2rem 1.2rem;
    border: 1px dashed rgba(148, 163, 208, 0.32);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-500);
}

.site-footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
    color: #e2e8ff;
    padding: 3.6rem 0;
    margin-top: 4rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-layout strong {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.footer-layout a {
    color: inherit;
    opacity: 0.85;
    display: inline-flex;
    margin-bottom: 0.35rem;
    transition: var(--transition);
}

.footer-layout a:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 1024px) {
    .hero-grid,
    .grid-two {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 5.4rem;
    }

    .service-entry {
        grid-template-columns: 1fr;
        padding: 1.9rem;
    }

    .service-entry__media {
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .header-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }

    .brand-link {
        order: 1;
    }

    .site-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.6rem 1.2rem;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .service-entry {
        gap: 1.8rem;
    }
}

@media (max-width: 640px) {
    .top-bar__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar__cta {
        align-self: stretch;
        justify-content: center;
    }

    .hero {
        padding: 4rem 0 4.6rem;
    }

    .service-entry {
        padding: 1.6rem;
    }

    .service-entry__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-entry__pricing {
        text-align: left;
        min-width: 0;
    }

    .site-main {
        padding-bottom: 3.6rem;
    }
}
