:root {
    --bg-dark: #0F172A;
    --card-dark: #1E293B;
    --border-dark: #334155;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --secondary: #6366F1;
    --accent: #F59E0B;
    --success: #10B981;
    --danger: #EF4444;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ── HEADER & NAVBAR ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

/* ── HERO SECTION ── */
.hero {
    padding: 150px 5% 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
}

.hero-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #A5B4FC;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 900px;
    background: linear-gradient(to right, #FFF 20%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(51, 65, 85, 0.4);
    border: 1px solid var(--border-dark);
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 0.7);
    border-color: #475569;
}

/* ── FEATURES SECTION ── */
.features {
    padding: 80px 5%;
    background: rgba(30, 41, 59, 0.2);
    border-top: 1px solid rgba(51, 65, 85, 0.5);
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 0 0 10px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 0 0 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ── PRICING SECTION ── */
.pricing {
    padding: 80px 5% 120px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px 30px;
    width: 340px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.price-card.popular::before {
    content: 'TERPOPULER';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.price-card.best {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
}

.price-card.best::before {
    content: 'TERBAIK';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0F172A;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.price-title {
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: var(--text-main);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}

.price-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.price-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
    flex-grow: 1;
}

.price-features-list li {
    font-size: 0.95rem;
    color: #CBD5E1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.btn-price {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    background: rgba(51, 65, 85, 0.3);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-price:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.price-card.popular .btn-price {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.price-card.popular .btn-price:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.price-card.best .btn-price {
    background: var(--accent);
    border-color: var(--accent);
    color: #0F172A;
}

.price-card.best .btn-price:hover {
    background: #E08E0B;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* ── MODAL SYSTEM ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: relative;
}

/* ── CUSTOM SCROLLBARS ── */
.modal-card::-webkit-scrollbar,
.payment-channels-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.modal-card::-webkit-scrollbar-track,
.payment-channels-list::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb,
.payment-channels-list::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb:hover,
.payment-channels-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #334155;
    border: none;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close:hover {
    background: #475569;
    color: var(--text-main);
}

.modal-title {
    font-size: 1.4rem;
    margin: 0 0 6px;
    color: var(--text-main);
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 15px;
}

/* ── FORM ELEMENTS ── */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* ── PAYMENT METHOD SELECTOR ── */
.payment-channels-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-height: 160px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    margin-bottom: 15px;
}

.payment-channel-item {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.payment-channel-item:hover {
    border-color: #475569;
    background-color: rgba(51, 65, 85, 0.2);
}

.payment-channel-item.selected {
    border-color: var(--primary);
    background-color: rgba(59, 130, 246, 0.05);
}

.channel-logo {
    width: 45px;
    height: 25px;
    object-fit: contain;
    background: white;
    padding: 2px;
    border-radius: 4px;
}

.channel-info {
    display: flex;
    flex-direction: column;
}

.channel-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.channel-fee {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.fee-breakdown-box {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fee-row.total {
    border-top: 1px dashed var(--border-dark);
    padding-top: 10px;
    font-weight: bold;
    color: var(--text-main);
}

.fee-row.total span:last-child {
    color: var(--primary);
    font-size: 1.05rem;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── INVOICE VIEW ── */
.invoice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-status {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.license-key-box {
    background-color: var(--bg-dark);
    border: 1px dashed var(--border-dark);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.license-key-title {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.license-key-text {
    font-family: monospace;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 1px;
}

.qris-image {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pay-code-box {
    background-color: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    margin: 15px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pay-code-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.btn-copy {
    background: #334155;
    border: 1px solid var(--border-dark);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-copy:hover {
    background: #475569;
    border-color: #64748B;
}

/* ── ACCORDION INSTRUCTIONS ── */
.instructions-container {
    width: 100%;
    text-align: left;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instruction-item {
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
}

.instruction-header {
    background-color: var(--bg-dark);
    padding: 12px 15px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.instruction-content {
    background-color: rgba(30, 41, 59, 0.4);
    padding: 15px;
    font-size: 0.8rem;
    color: #CBD5E1;
    line-height: 1.5;
    display: none;
    border-top: 1px solid var(--border-dark);
}

.instruction-content ol {
    margin: 0;
    padding-left: 20px;
}

.instruction-content li {
    margin-bottom: 8px;
}

/* ── COMPLIANCE FOOTER ── */
footer {
    background-color: #0B0F19;
    border-top: 1px solid var(--border-dark);
    padding: 60px 5% 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-dark);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
    color: #64748B;
}

/* ── LOADER SPINNER ── */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ── COMPARISON SUB-SECTION ── */
.comparison-container {
    margin-top: 80px;
    padding: 60px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ── TOPOLOGY ARCHITECTURE SECTION ── */
.topology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.topology-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.topology-card.our-card {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.topology-card h3 {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.topology-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin: 0 0 25px 0;
    max-width: 400px;
    line-height: 1.4;
}

.topology-svg-container {
    width: 100%;
    height: 280px;
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG styles for lines and nodes */
.topo-line-red {
    stroke: #EF4444;
    stroke-dasharray: 6, 6;
    animation: dash-move-reverse 1s linear infinite;
}

.topo-line-green {
    stroke: #10B981;
    stroke-dasharray: 6, 6;
    animation: dash-move 1.5s linear infinite;
}

.topo-line-blue {
    stroke: #3B82F6;
    stroke-dasharray: 4, 4;
    animation: dash-move 2s linear infinite;
}

@keyframes dash-move {
    to { stroke-dashoffset: -20; }
}

@keyframes dash-move-reverse {
    to { stroke-dashoffset: 20; }
}

.topo-node {
    transition: transform 0.2s;
    cursor: pointer;
}

.topo-node:hover {
    transform: scale(1.05);
}

.topo-text {
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    fill: var(--text-main);
    text-anchor: middle;
}

.topo-subtext {
    font-size: 8px;
    font-family: 'Inter', sans-serif;
    fill: var(--text-muted);
    text-anchor: middle;
}

.topo-badge {
    font-size: 8px;
    font-weight: 700;
    fill: #fff;
    text-anchor: middle;
}

.comparison-header h2 {
    font-size: 2.2rem;
    margin: 0 0 12px;
    color: var(--text-main);
}

.comparison-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    background-color: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
    vertical-align: top;
    line-height: 1.6;
}

.comparison-table th {
    background-color: rgba(15, 23, 42, 0.6);
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.comparison-table th:first-child { width: 25%; }
.comparison-table th:nth-child(2) { width: 37.5%; color: var(--text-muted); }

.comparison-table th:nth-child(3) {
    width: 37.5%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    color: #60A5FA;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td.param-title {
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.comparison-table td.conv-val { color: #94A3B8; font-size: 0.95rem; }

.comparison-table td.our-val {
    color: #E2E8F0;
    font-size: 0.95rem;
    background-color: rgba(59, 130, 246, 0.03);
    border-left: 2px solid rgba(59, 130, 246, 0.4);
    border-right: 2px solid rgba(59, 130, 246, 0.4);
}

.comparison-table tr:last-child td.our-val {
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 1rem; }
    .nav-links { display: none; }
    .pricing-grid { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 340px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .comparison-table-wrapper { border-radius: 12px; }
    .comparison-table th,
    .comparison-table td { padding: 16px; }
    .comparison-header h2 { font-size: 1.8rem; }
    .topology-grid { grid-template-columns: 1fr; }
    .topology-svg-container { height: 240px; }
}

/* ── DEPLOYMENT MODEL SECTION ── */
.deployment-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(99,102,241,0.04) 50%, rgba(15,23,42,0) 100%);
    position: relative;
    overflow: hidden;
}

.deployment-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.deployment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.deployment-card {
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
}

.deployment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.deployment-card:hover { transform: translateY(-8px); }

.deployment-card.cloud {
    background: linear-gradient(145deg, rgba(30,41,59,0.9) 0%, rgba(30,58,138,0.15) 100%);
    border: 1px solid rgba(59,130,246,0.3);
    box-shadow: 0 8px 40px rgba(59,130,246,0.08);
}

.deployment-card.cloud:hover {
    box-shadow: 0 20px 60px rgba(59,130,246,0.18);
    border-color: rgba(59,130,246,0.6);
}

.deployment-card.onpremise {
    background: linear-gradient(145deg, rgba(30,41,59,0.9) 0%, rgba(79,70,229,0.12) 100%);
    border: 1px solid rgba(99,102,241,0.3);
    box-shadow: 0 8px 40px rgba(99,102,241,0.08);
}

.deployment-card.onpremise:hover {
    box-shadow: 0 20px 60px rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.6);
}

.deployment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

.deployment-badge.saas {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.35);
    color: #93C5FD;
}

.deployment-badge.onp {
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.35);
    color: #A5B4FC;
}

.deployment-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.deployment-icon-wrap.cloud {
    background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, rgba(99,102,241,0.2) 100%);
    box-shadow: 0 4px 20px rgba(59,130,246,0.15);
}

.deployment-icon-wrap.onpremise {
    background: linear-gradient(135deg, rgba(99,102,241,0.2) 0%, rgba(139,92,246,0.2) 100%);
    box-shadow: 0 4px 20px rgba(99,102,241,0.15);
}

.deployment-card h3 { font-size: 1.7rem; margin: 0; color: #F8FAFC; }
.deployment-card .desc { color: #94A3B8; font-size: 0.95rem; line-height: 1.65; margin: 0; }

.deployment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex-grow: 1;
}

.deployment-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #CBD5E1;
    line-height: 1.5;
}

.deployment-features li .check { font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.deployment-features li .check.blue { color: #60A5FA; }
.deployment-features li .check.purple { color: #A78BFA; }

.deployment-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.deployment-cta.saas {
    background: linear-gradient(135deg, #3B82F6 0%, #6366F1 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(59,130,246,0.3);
}

.deployment-cta.saas:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(59,130,246,0.45); }

.deployment-cta.onp {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    box-shadow: 0 6px 24px rgba(99,102,241,0.3);
}

.deployment-cta.onp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(99,102,241,0.45); }

/* ── COMPARISON TABLE ── */
.deploy-compare-wrap {
    max-width: 860px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(51,65,85,0.6);
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(10px);
}

.deploy-compare-table { width: 100%; border-collapse: collapse; }
.deploy-compare-table thead { background: rgba(30,41,59,0.8); }

.deploy-compare-table th {
    padding: 18px 24px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.deploy-compare-table th:first-child { color: #64748B; }
.deploy-compare-table th.th-saas { color: #60A5FA; text-align: center; }
.deploy-compare-table th.th-onp { color: #A78BFA; text-align: center; }

.deploy-compare-table td {
    padding: 16px 24px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(51,65,85,0.4);
    vertical-align: middle;
}

.deploy-compare-table tr:last-child td { border-bottom: none; }
.deploy-compare-table tr:hover td { background: rgba(51,65,85,0.15); }
.deploy-compare-table td:first-child { color: #94A3B8; font-weight: 600; }

.deploy-compare-table td.val-saas,
.deploy-compare-table td.val-onp { text-align: center; font-weight: 600; }

.deploy-compare-table td.val-saas { color: #93C5FD; }
.deploy-compare-table td.val-onp { color: #C4B5FD; }

.deploy-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

.deploy-pill.yes-saas { background: rgba(59,130,246,0.12); color: #93C5FD; border: 1px solid rgba(59,130,246,0.3); }
.deploy-pill.yes-onp  { background: rgba(99,102,241,0.12); color: #C4B5FD; border: 1px solid rgba(99,102,241,0.3); }
.deploy-pill.no       { background: rgba(51,65,85,0.3);    color: #64748B; border: 1px solid rgba(51,65,85,0.5); }

/* ── CONSULT BANNER ── */
.consult-banner {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30,41,59,0.9) 0%, rgba(30,58,138,0.25) 100%);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 20px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.consult-banner .left h4 { font-size: 1.2rem; margin: 0 0 6px; color: #F8FAFC; }
.consult-banner .left p { font-size: 0.88rem; color: #94A3B8; margin: 0; }

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93C5FD;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-consult:hover {
    background: rgba(59,130,246,0.2);
    border-color: rgba(59,130,246,0.6);
    color: #BFDBFE;
}

@media (max-width: 768px) {
    .deployment-cards { grid-template-columns: 1fr; }
    .consult-banner { flex-direction: column; text-align: center; }
    .deploy-compare-table th,
    .deploy-compare-table td { padding: 12px 14px; font-size: 0.8rem; }
}
