/* ============== Services: Private Deployment & Integration (New Theme) ============== */
:root {
    --svc-primary: #29b6f6;
    --svc-deep: #04205F;
    --svc-ink: #101828;
    --svc-muted: #475467;
    --svc-bg: #f6f7fb;
    --svc-card: #ffffff;
    --svc-border: rgba(16, 24, 40, 0.10);
    --svc-shadow: 0 14px 46px rgba(16, 24, 40, 0.10);
}

.svc-hero {
    position: relative;
    padding: 120px 0 96px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 70% 20%, rgba(41, 182, 246, 0.26), rgba(0, 0, 0, 0)),
        radial-gradient(900px 500px at 20% 30%, rgba(126, 156, 255, 0.22), rgba(0, 0, 0, 0)),
        linear-gradient(135deg, rgba(3, 18, 58, 1) 0%, rgba(4, 32, 95, 1) 55%, rgba(11, 59, 107, 1) 100%);
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.35;
    mask-image: radial-gradient(circle at 35% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.svc-hero .container {
    position: relative;
    z-index: 2;
}

.svc-hero h1 {
    font-size: 3.1rem;
    font-weight: 950;
    line-height: 1.12;
    margin: 0 0 14px 0;
    letter-spacing: 0.2px;
    color: #fff;
}

.svc-hero .subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    margin: 0 0 22px 0;
    max-width: 760px;
}

.svc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.svc-badge i.material-symbols-outlined {
    font-size: 18px;
    color: var(--svc-primary);
}

.svc-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.svc-btn.primary {
    background: var(--svc-primary);
    color: #fff !important;
}

.svc-btn.primary:hover {
    background: #039be5;
    transform: translateY(-2px);
}

.svc-btn.secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff !important;
}

.svc-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.svc-note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* Right hero graphic card */
.svc-hero-graphic {
    position: relative;
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    min-height: 340px;
}

.svc-hero-graphic .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.svc-hero-graphic .title i.material-symbols-outlined {
    font-size: 20px;
    color: var(--svc-primary);
}

.svc-hero-graphic .shield {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 220px;
    height: 220px;
    border-radius: 26px;
    background: radial-gradient(circle at 30% 20%, rgba(41, 182, 246, 0.24), rgba(255, 255, 255, 0) 60%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-2deg);
}

.svc-hero-graphic .shield i.material-symbols-outlined {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 12px 36px rgba(41, 182, 246, 0.25);
}

.svc-hero-graphic svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    pointer-events: none;
}

.svc-hero-graphic .node {
    fill: rgba(41, 182, 246, 0.95);
}

.svc-hero-graphic .line {
    stroke: rgba(255, 255, 255, 0.45);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6 10;
    animation: svcDash 6s linear infinite;
}

@keyframes svcDash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -160; }
}

/* Body sections */
.svc-wrap {
    background: var(--svc-bg);
    padding: 64px 0;
}

.svc-section-title h2 {
    color: var(--svc-deep);
    font-weight: 950;
    margin: 0 0 10px 0;
}

.svc-section-title p {
    margin: 0;
    color: var(--svc-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.svc-quote {
    margin-top: 16px;
    background: rgba(250, 94, 94, 0.1);
    border: 1px solid rgba(252, 35, 72, 0.2);
    padding: 14px 14px;
    border-radius: 14px;
    color: #0b3b6b;
    font-weight: 750;
    line-height: 1.8;
}

/* Feature cards */
.svc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.svc-card {
    background: var(--svc-card);
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(16, 24, 40, 0.08);
    padding: 22px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 182, 246, 0.9), rgba(4, 32, 95, 0.9));
    opacity: 0.65;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--svc-shadow);
    border-color: rgba(4, 32, 95, 0.18);
}

.svc-card .top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(41, 182, 246, 0.12);
    border: 1px solid rgba(41, 182, 246, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.svc-icon i.material-symbols-outlined {
    font-size: 24px;
    color: var(--svc-deep);
}

.svc-card h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 950;
    color: var(--svc-deep);
    line-height: 1.3;
}

.svc-card .value {
    margin: 10px 0 0 0;
    color: #344054;
    line-height: 1.85;
    font-size: 1rem;
}

.svc-card .tag {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.08);
    color: #344054;
    font-weight: 750;
    font-size: 12px;
}

/* Workflow */
.svc-workflow {
    margin-top: 34px;
    background: #fff;
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    overflow: hidden;
}

.svc-workflow-head {
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(4, 32, 95, 1) 0%, rgba(41, 182, 246, 1) 130%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.svc-workflow-head .left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-workflow-head .left .t {
    font-weight: 950;
    letter-spacing: 0.2px;
    font-size: 15px;
}

.svc-workflow-head .left .s {
    opacity: 0.9;
    font-size: 13px;
    line-height: 1.5;
}

.svc-workflow-head .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 900;
    font-size: 12px;
    white-space: nowrap;
}

.svc-steps {
    padding: 10px 16px 20px;
}

.svc-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.svc-step:last-child {
    border-bottom: none;
}

.svc-step .num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(41, 182, 246, 0.12);
    border: 1px solid rgba(41, 182, 246, 0.22);
    color: var(--svc-deep);
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-step h4 {
    margin: 0;
    font-weight: 950;
    color: var(--svc-ink);
    font-size: 1.06rem;
}

.svc-step .meta {
    margin-top: 6px;
    color: var(--svc-muted);
    line-height: 1.85;
}

.svc-deliver {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(41, 182, 246, 0.10);
    border: 1px solid rgba(41, 182, 246, 0.18);
    color: #0b3b6b;
    font-weight: 800;
    font-size: 12px;
}

/* Integration */
.svc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.svc-panel {
    background: #fff;
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    padding: 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, rgba(41, 182, 246, 0.9), rgba(4, 32, 95, 0.9));
    opacity: 0.55;
}

.svc-panel h3 {
    margin: 0 0 8px 0;
    font-weight: 950;
    color: var(--svc-deep);
    font-size: 1.22rem;
}

.svc-panel p {
    margin: 0 0 10px 0;
    color: var(--svc-muted);
    line-height: 1.9;
}

.svc-panel ul {
    margin: 10px 0 0 0;
    padding-left: 1.05rem;
    color: #344054;
    line-height: 1.9;
}

.svc-panel li {
    margin-bottom: 8px;
}

/* Tech stack */
.svc-stack {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--svc-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    overflow: hidden;
}

.svc-stack table {
    width: 100%;
    border-collapse: collapse;
}

.svc-stack thead th {
    text-align: left;
    padding: 16px 18px;
    background: rgba(4, 32, 95, 0.06);
    color: var(--svc-deep);
    font-weight: 950;
    border-bottom: 1px solid rgba(16, 24, 40, 0.10);
}

.svc-stack tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    vertical-align: top;
    color: #344054;
    line-height: 1.9;
}

.svc-stack tbody tr:last-child td {
    border-bottom: none;
}

.svc-kv {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.08);
    color: #344054;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
}

/* Footer CTA */
.svc-final {
    margin-top: 34px;
    background: linear-gradient(135deg, rgba(4, 32, 95, 1) 0%, rgba(41, 182, 246, 1) 150%);
    color: #fff;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 18px 56px rgba(16, 24, 40, 0.18);
}

.svc-final .t {
    font-weight: 950;
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.svc-final .d {
    opacity: 0.92;
    line-height: 1.7;
    margin: 0;
}

.svc-final .right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.svc-final .right a {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 950;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.svc-final .right a.primary {
    background: #fff;
    color: var(--svc-deep) !important;
    border-color: rgba(255, 255, 255, 0.40);
}

.svc-final .right a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.20);
}

.svc-final .right a.primary:hover {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 992px) {
    .svc-hero h1 { font-size: 2.25rem; }
    .svc-grid-3 { grid-template-columns: 1fr; }
    .svc-two-col { grid-template-columns: 1fr; }
    .svc-hero { padding: 105px 0 70px; }
}

@media (max-width: 768px) {
    .svc-hero { padding: 96px 0 56px; }
    .svc-hero .subtitle { font-size: 1.05rem; }
    .svc-final { flex-direction: column; align-items: flex-start; }
    .svc-final .right { justify-content: flex-start; }
}