:root {
    --primary: #00c0b2;
    --primary-dark: #00a89b;
    --primary-soft: rgba(0, 192, 178, 0.1);
    --secondary: #1e293b;
    --accent: #14a0be;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-slate: #475569;
    --text-muted: #94a3b8;
    --border-soft: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;
}

.new-service-body {
    min-height: 100vh;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.new-service-header {
    padding-top: 24px;
}

.new-service-member-nav {
    margin: 20px 0 24px;
}

.new-service-member-nav-brand {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
}

.new-service-member-nav-brand a,
.new-service-member-nav-brand img {
    display: block;
}

.new-service-member-nav-logo {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    height: auto;
    flex: 0 0 auto;
}

.new-service-member-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 18px 20px;
    background: #ececec;
    border-radius: 28px;
}

.new-service-member-nav li {
    margin: 0;
}

.new-service-member-nav ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.new-service-member-nav li.current a {
    background: #fff;
    color: #795b51;
}

.new-service-shell {
    padding: 0 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.new-service-hero {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin: 20px 0 32px 0;
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.new-service-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.new-service-hero h1 {
    margin: 0 0 12px 0;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.new-service-hero p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 18px;
    color: var(--text-slate);
    line-height: 1.6;
}

.new-service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.new-service-pill {
    background: var(--bg-main);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
    line-height: 1;
    padding: 10px 16px;
    color: var(--text-slate);
    transition: all 0.2s ease;
}

.new-service-pill-muted {
    opacity: 0.7;
}

.new-service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 24px !important;
}

.new-service-hero .btn.btn-secondary,
.new-service-hero a.btn.btn-secondary {
    background: var(--secondary);
}

.new-service-hero .btn.btn-secondary:hover,
.new-service-hero a.btn.btn-secondary:hover {
    background: #334155;
}

.new-service-hero .btn.btn-ghost,
.new-service-hero a.btn.btn-ghost {
    background: #ffffff;
    color: var(--secondary) !important;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.new-service-hero .btn.btn-ghost:hover,
.new-service-hero a.btn.btn-ghost:hover {
    background: #f8fafc;
    color: var(--secondary) !important;
    box-shadow: var(--shadow-md);
}

.new-service-hero .btn,
.new-service-hero a.btn {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: var(--radius-full);
    color: #fff !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.05em;
    line-height: 1;
    min-width: 180px;
    padding: 14px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(0, 192, 178, 0.39);
}

.new-service-hero .btn:hover,
.new-service-hero a.btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 160, 190, 0.23);
}

.new-service-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.new-service-grid-tight {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.new-service-card {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.new-service-card h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.new-service-card-status {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.new-service-card-status-live {
    background: #e8fbf7;
    color: #0f8f73;
    border-color: rgba(16, 185, 129, 0.18);
}

.new-service-card-status-coming {
    background: #f1f5f9;
    color: #64748b;
    border-color: rgba(100, 116, 139, 0.18);
}

.new-service-card p {
    min-height: 20px;
    line-height: 1.6;
}

.new-service-form {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.new-service-form-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.new-service-form-row-single {
    grid-template-columns: minmax(0, 1fr);
}

.new-service-form-field {
    min-width: 0;
}

.new-service-form-label {
    display: block;
    margin-bottom: 8px;
    color: #8aa0bf;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.new-service-form-control {
    width: 100%;
    min-height: 72px;
    padding: 18px 18px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    color: var(--text-slate);
    font-size: 16px;
    line-height: 1.3;
    box-shadow: none;
}

.new-service-form-control:focus {
    outline: none;
    border-color: rgba(0, 192, 178, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 192, 178, 0.12);
}

.new-service-form-control.company-name-control {
    font-size: 15px;
    letter-spacing: 0;
}

.new-service-form-actions {
    justify-content: flex-start;
    margin-top: 10px !important;
}

.new-service-card-compact p {
    min-height: 0;
}

.new-service-section {
    margin-top: 32px;
}

.new-service-kicker {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.new-service-stat-card {
    justify-content: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    position: relative;
    padding-left: 32px; /* For accent line */
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.new-service-stat-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--primary);
    border-radius: 999px 0 0 999px;
    transition: width 0.2s ease;
}

.new-service-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.new-service-stat-card:hover::after {
    width: 8px;
}

.new-service-stat-label {
    color: var(--text-muted);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.new-service-stat-value {
    color: var(--secondary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Stat card variants for status results */
.new-service-stat-card[data-status="danger"]::after { background: var(--danger); }
.new-service-stat-card[data-status="danger"] .new-service-stat-value { color: var(--danger); }
.new-service-stat-card[data-status="warning"]::after { background: var(--warning); }
.new-service-stat-card[data-status="success"]::after { background: var(--success); }
.new-service-stat-card[data-status="success"] .new-service-stat-value { color: var(--success); }


.new-service-lead-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    margin-top: 24px;
}

.new-service-detail-list {
    display: grid;
    gap: 16px;
}

.new-service-detail-row {
    border-bottom: 1px solid var(--border-soft);
    display: grid;
    gap: 16px;
    grid-template-columns: 220px 1fr;
    padding-bottom: 14px;
}

.new-service-detail-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.new-service-detail-row strong {
    color: var(--text-slate);
    font-weight: 600;
}

.new-service-score-figure {
    font-size: 72px;
    font-weight: 800;
    margin: 0;
    text-align: center;
    color: var(--secondary);
    letter-spacing: -0.04em;
}

.new-service-score-band {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 12px;
    text-align: center;
    color: var(--primary-dark);
}

.new-service-score-message {
    margin: 0 auto 32px;
    max-width: 820px;
    text-align: center;
    color: var(--text-slate);
    font-size: 16px;
}

.new-service-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: #fff;
}

.new-service-card table {
    margin: 0;
    width: 100%;
    border-collapse: collapse;
}

.new-service-card th {
    background: #f8fafc;
    color: var(--text-slate);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 16px;
    text-align: left;
}

.new-service-card td {
    padding: 16px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-slate);
    font-size: 14px;
}

.new-service-card tr:last-child td {
    border-bottom: 0;
}

.new-service-card tr:hover td {
    background: rgba(0, 192, 178, 0.03);
}

.new-service-note {
    color: var(--text-slate);
    margin-top: 14px;
    padding: 16px;
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.new-service-notice {
    margin-top: 14px;
    padding: 16px 18px;
    background: #fff8e6;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-left: 4px solid var(--warning);
    border-radius: 10px;
    color: #7c5a10;
}

.new-service-notice strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.new-service-notice p {
    margin: 0;
    min-height: 0;
    font-size: 15px;
    line-height: 1.6;
    color: inherit;
}

.new-service-notice-compact {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 16px;
}

.new-service-notice-compact strong {
    margin-bottom: 4px;
    font-size: 12px;
}

.new-service-notice-compact p {
    font-size: 14px;
}

.new-service-card .btn {
    align-items: center;
    align-self: flex-start;
    background: var(--primary);
    border-radius: var(--radius-full);
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.05em;
    margin-top: 20px;
    min-width: 140px;
    padding: 12px 24px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.new-service-card .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.new-service-card-disabled {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(148, 163, 184, 0.24);
}

.new-service-card-disabled:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.new-service-card-disabled h2,
.new-service-card-disabled p {
    color: #475569;
}

.new-service-card .btn.btn-disabled,
.new-service-card span.btn.btn-disabled {
    background: linear-gradient(180deg, #dbe4ee 0%, #cbd5e1 100%);
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, 0.18);
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
    text-shadow: none;
}

.new-service-card .btn.btn-disabled.btn-coming-soon,
.new-service-card span.btn.btn-disabled.btn-coming-soon {
    letter-spacing: 0.08em;
    opacity: 1;
}

.new-service-gauge-container {
    width: 100%;
    height: 20px;
    background: #f1f5f9;
    border-radius: 999px;
    position: relative;
    margin: 60px auto 30px;
    max-width: 720px;
    overflow: visible;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    display: block;
}

.new-service-gauge-track {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: #ef4444; /* fallback */
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    border-radius: 999px;
    z-index: 1;
}

.new-service-gauge-marker {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 6px solid #1e293b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: left 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.new-service-gauge-marker::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

.new-service-gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .new-service-member-nav-logo {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
    }

    .new-service-member-nav ul a {
        min-width: 0;
        width: 100%;
    }

    .new-service-member-nav li {
        flex: 1 1 100%;
    }

    .new-service-form-row {
        grid-template-columns: 1fr;
    }

    .new-service-form-control {
        min-height: 60px;
        padding: 14px 16px;
    }
}

/* Entrance Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.new-service-card, .new-service-hero {
    animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

/* Staggered entry */
.new-service-section:nth-child(1) .new-service-card { animation-delay: 0.1s; }
.new-service-section:nth-child(2) .new-service-card { animation-delay: 0.2s; }
.new-service-section:nth-child(3) .new-service-card { animation-delay: 0.3s; }
.new-service-section:nth-child(4) .new-service-card { animation-delay: 0.4s; }

@media only screen and (max-width: 768px) {
    .new-service-shell {
        padding: 0 16px 60px;
    }
    .new-service-hero {
        padding: 40px 24px;
    }
    .new-service-hero h1 {
        font-size: 28px;
    }
    .new-service-lead-grid {
        grid-template-columns: 1fr;
    }
    .new-service-detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-bottom: 20px;
    }
    .new-service-stat-value {
        font-size: 36px;
    }
}

