/* Design System untuk BITOS (Billing Internet Terintegrasi Otomatis Sistem) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #103f6e; /* Biru Gelap Navy (sisi kanan gambar konsep) */
    --primary-light: #f0f5fa; /* Biru pudar super terang untuk background bersih */
    --primary-hover: #0c3054; /* Biru Navy yang lebih dalam */
    --accent: #20639b; /* Biru Medium Terang (sisi kiri gambar konsep dengan huruf H) */
    --accent-light: #e4eff7;
    --neutral-dark: #0a1e33; /* Biru kehitaman gelap untuk teks utama agar harmonis */
    --neutral-text: #3a4e63; /* Steel blue untuk teks sekunder */
    --neutral-light-text: #708499;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2eaf2;
    --success: #10b981;
    --danger: #ef4444;
    --font: "Montserrat", sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 4px rgba(16, 63, 110, 0.02);
    --shadow-md: 0 10px 20px rgba(16, 63, 110, 0.04);
    --shadow-lg: 0 20px 40px rgba(16, 63, 110, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--neutral-text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--neutral-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--neutral-light-text);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px; /* Lebih lebar modern */
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px; /* Lebih membulat premium */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    backface-visibility: hidden;
    will-change: transform, box-shadow, background-color, color;
}

.btn:hover {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(1px) scale(0.98) !important;
}

.btn-primary {
    background-color: var(--accent); /* Menggunakan accent biru gelap ikonis */
    color: var(--bg-white);
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translate3d(0, -2px, 0);
    box-shadow: none;
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translate3d(0, -2px, 0);
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translate3d(0, -2px, 0);
    box-shadow: none;
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--accent);
    box-shadow: none;
}

.btn-white:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translate3d(0, -2px, 0);
    box-shadow: none;
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(10, 30, 51, 0.2);
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 94px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: -0.04em;
}

.logo-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--bg-white);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bg-white);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.navbar .btn-outline:hover {
    background-color: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-sm {
    padding: 11px 24px;
    font-size: 14px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    transition: var(--transition);
}




/* Hero Section */
.hero {
    padding: 160px 0 130px 0;
    background: linear-gradient(135deg, #0a1e3d 0%, #0d2a5e 50%, #103f6e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 158, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z' fill='%23f8fafc'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}

.hero .container {
    max-width: 1540px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 45fr 55fr; /* Kolom kanan (SVG) lebih besar */
    gap: 20px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-image-card {
    max-width: 100%;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.85);
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.hero .btn-primary {
    background-color: #f5a623;
    color: #0a1e3d;
    box-shadow: none;
}

.hero .btn-primary:hover {
    background-color: #e6951a;
    color: #0a1e3d;
    transform: translate3d(0, -2px, 0);
    box-shadow: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #f5a623;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    /* Extend SVG slightly beyond right edge */
    margin-right: -48px;
}

.hero-image-container::before {
    display: none;
}

.hero-image-card {
    width: 110%; /* Slightly wider than its column */
    max-width: 960px;
    background: transparent;
    overflow: visible;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 1;
}

.hero-illustration {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* =============================================
   Scroll-Reveal Animation System
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(36px);
}

[data-animate="fade-in"] {
    opacity: 0;
    transform: translateY(0);
}

[data-animate="slide-left"] {
    opacity: 0;
    transform: translateX(-40px);
}

[data-animate="slide-right"] {
    opacity: 0;
    transform: translateX(40px);
}

[data-animate="scale-in"] {
    opacity: 0;
    transform: scale(0.9);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    border-top: 3px solid transparent;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 99, 155, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: 20px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: rgba(32,99,155,0.2);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
    font-size: 26px;
    transition: var(--transition);
    box-shadow: none;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: none;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--neutral-light-text);
    font-size: 14.5px;
    line-height: 1.65;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.5) 50%, transparent 100%);
    pointer-events: none;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.4);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    color: #f5a623;
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    position: relative;
    z-index: 2;
    box-shadow: none;
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    background: rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.4);
    color: #f5a623;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    min-height: 620px;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: none;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--neutral-light-text);
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 30px;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-dark);
    vertical-align: super;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 14px;
    color: var(--neutral-light-text);
}

.plan-features {
    list-style: none;
    margin-bottom: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--neutral-text);
}

.plan-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.plan-features li.disabled {
    color: var(--neutral-light-text);
    text-decoration: line-through;
}

.plan-features li.disabled svg {
    color: var(--neutral-light-text);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* =============================================
   Pricing Hero Card (All-In-One)
   ============================================= */

/* Wrapper & decorative blobs */
.pricing-hero-wrapper {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}

.pricing-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.pricing-blob-1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(16,63,110,0.18) 0%, transparent 70%);
    top: -80px;
    left: -80px;
}

.pricing-blob-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(32,99,155,0.12) 0%, transparent 70%);
    bottom: -60px;
    right: -60px;
}

/* Main card */
.pricing-hero-card {
    position: relative;
    z-index: 1;
    display: flex;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: none;
}

/* LEFT panel */
.pricing-hero-left {
    flex: 1 1 58%;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pricing-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(16,63,110,0.08) 0%, rgba(32,99,155,0.08) 100%);
    border: 1px solid rgba(16,63,110,0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.pricing-hero-label i {
    color: #f5a623;
    font-size: 12px;
}

.pricing-hero-name {
    font-size: 36px;
    font-weight: 900;
    color: var(--neutral-dark);
    line-height: 1.1;
    margin: 0;
}

.pricing-hero-name span {
    color: var(--primary);
}

.pricing-hero-tagline {
    font-size: 15px;
    color: var(--neutral-light-text);
    line-height: 1.6;
    margin: 0;
}

/* Feature columns */
.pricing-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.pricing-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--neutral-text);
    font-weight: 500;
}

.pf-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    margin-top: 1px;
}

/* Trust badges row */
.pricing-trust-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--neutral-light-text);
}

.pricing-trust-item i {
    color: var(--primary);
    font-size: 13px;
}

/* DIVIDER */
.pricing-hero-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
    flex-shrink: 0;
}

/* RIGHT panel */
.pricing-hero-right {
    flex: 0 0 340px;
    background: linear-gradient(160deg, #0a1e3d 0%, #103f6e 100%);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.pricing-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.45);
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    color: #f5a623;
}

.pricing-trial-badge i {
    font-size: 12px;
}

/* Big price */
.pricing-big-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-price-row {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.pricing-currency {
    font-size: 22px;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
}

.pricing-amount {
    font-size: 68px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-unit {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
}

.pricing-period {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Savings */
.pricing-savings {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07);
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
}

.pricing-savings i {
    color: #f5a623;
    flex-shrink: 0;
}

.pricing-savings strong {
    color: #f5a623;
}

/* CTA button */
.pricing-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f5a623 0%, #e6951a 100%);
    color: #0a1e3d;
    font-size: 15px;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: none;
    transition: var(--transition);
}

.pricing-cta-btn:hover {
    background: linear-gradient(135deg, #fbb73a 0%, #f5a623 100%);
    transform: translateY(-2px);
    color: #0a1e3d;
    box-shadow: none;
}

/* Demo link */
.pricing-demo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.18);
}

.pricing-demo-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

/* Guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

.pricing-guarantee i {
    color: var(--success);
}

/* Mini stats */
.pricing-mini-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: auto;
}

.pricing-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.pricing-mini-stat strong {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.pricing-mini-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.pricing-mini-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* Responsive: Pricing Hero Card */
@media (max-width: 900px) {
    .pricing-hero-card {
        flex-direction: column;
    }

    .pricing-hero-divider {
        width: 100%;
        height: 1px;
    }

    .pricing-hero-left {
        padding: 40px 32px;
    }

    .pricing-hero-right {
        flex: none;
        width: 100%;
        padding: 40px 32px;
    }
}

@media (max-width: 600px) {
    .pricing-features-columns {
        grid-template-columns: 1fr;
    }

    .pricing-hero-left {
        padding: 32px 24px;
    }

    .pricing-hero-right {
        padding: 32px 24px;
    }

    .pricing-hero-name {
        font-size: 28px;
    }

    .pricing-amount {
        font-size: 52px;
    }

    .pricing-trust-row {
        gap: 14px;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    border-top: 3px solid transparent;
    padding: 36px 32px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    left: 20px;
    font-size: 120px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.05;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
    border-color: rgba(32,99,155,0.2);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-rating {
    color: #f5a623;
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    font-size: 13px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--neutral-text);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.75;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--neutral-light-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #050f2e 0%, #0a1e3d 50%, #0d2a5e 100%);
    color: var(--bg-white);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated glow orb */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(59,158,255,0.12) 0%, rgba(245,166,35,0.06) 50%, transparent 70%);
    pointer-events: none;
    animation: cta-pulse 6s ease-in-out infinite;
}

/* Decorative top border */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.6) 50%, transparent 100%);
    pointer-events: none;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 17px;
    margin-bottom: 44px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #ffffff;
    color: #0a1e3d;
    font-weight: 800;
    font-size: 16px;
    padding: 18px 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-white:hover {
    background: #f5a623;
    color: #0a1e3d;
    transform: translateY(-3px);
}

/* Contact Form Section */
.contact-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    max-width: 420px;
    background: linear-gradient(145deg, #0a1e3d 0%, #103f6e 100%);
    border-radius: 24px;
    padding: 48px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    pointer-events: none;
}

.contact-info-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    color: #f5a623;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(245, 166, 35, 0.18);
    transform: scale(1.05);
}

.contact-item-title {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-item-value {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.contact-form-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 48px;
    box-shadow: 0 16px 50px rgba(16, 63, 110, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-light);
    color: var(--neutral-text);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.1);
    outline: none;
}

.invalid-feedback {
    color: var(--danger);
    font-size: 13px;
    margin-top: 6px;
}

.contact-form-card .btn {
    width: 100%;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
    animation: slideIn 0.3s ease forwards;
}

.toast-success {
    border-left-color: var(--success);
}

.toast-error {
    border-left-color: var(--danger);
}

.toast-message {
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark);
}

.toast-close {
    margin-left: auto;
    cursor: pointer;
    color: var(--neutral-light-text);
    font-weight: 700;
    font-size: 16px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a1620 0%, #050f1e 100%);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white);
}

.footer-logo-image {
    width: 28px;
    height: auto;
    display: block;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #f5a623;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item i,
.footer-contact-item svg {
    color: #f5a623;
    flex-shrink: 0;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .section-subtitle {
        font-size: 15px;
    }
    .hero {
        padding: 130px 0 110px 0;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .stat-number {
        font-size: 26px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 28px 24px;
    }
    .cta-title {
        font-size: 26px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
    .contact-form-card {
        padding: 28px 24px;
    }
    .contact-info {
        padding: 32px 28px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        align-items: flex-start;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .steps-grid::before {
        display: none;
    }
    .navbar-container {
        height: 72px;
    }
    .logo-image {
        height: 32px;
    }
    .logo-name {
        font-size: 1.1rem;
    }
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 26px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Toggle Switch */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-dark);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-tag {
    background-color: #e6f4ea;
    color: #137333;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-dark);
    cursor: pointer;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: var(--neutral-light-text);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */
.login-page {
    min-height: 100vh;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--font);
}

.login-wrapper {
    width: 100%;
    max-width: 460px;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    text-align: center;
}

.login-logo-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(0, 45, 128, 0.25);
}

.login-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.login-logo-text span {
    color: var(--neutral-dark);
}

.login-logo-tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--neutral-light-text);
    margin-top: 4px;
}

.login-card {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: 0 4px 32px rgba(0, 45, 128, 0.07);
}

.login-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--neutral-dark);
    margin-bottom: 6px;
}

.login-card-subtitle {
    font-size: 14px;
    color: var(--neutral-light-text);
    margin-bottom: 28px;
}

.login-alert-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid var(--danger);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 24px;
}

.login-form-group {
    margin-bottom: 20px;
}

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

.login-input-wrapper {
    position: relative;
}

.login-form-control {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    font-family: var(--font);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-light);
    color: var(--neutral-dark);
    transition: var(--transition);
    outline: none;
}

.login-form-control:focus {
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.1);
}

.login-form-control.is-invalid {
    border-color: var(--danger);
    background-color: #fef2f2;
}

.login-form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.login-form-control.has-toggle {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-light-text);
    font-size: 16px;
    padding: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.password-toggle:hover {
    color: var(--primary);
}

.login-invalid-feedback {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 500;
    margin-top: 7px;
}

.login-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.login-checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 14px;
    color: var(--neutral-text);
    font-weight: 500;
    user-select: none;
}

.login-checkbox-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    cursor: pointer;
    accent-color: var(--primary);
}

.login-forgot-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.login-forgot-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.login-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 45, 128, 0.25);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.login-divider {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--neutral-light-text);
}

.login-divider a {
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.login-divider a:hover {
    text-decoration: underline;
}

.login-footer-note {
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    color: var(--neutral-light-text);
}

.login-footer-note a {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 480px) {
    .login-card {
        padding: 28px 20px;
    }
    .login-card-title {
        font-size: 19px;
    }
    .login-logo-text {
        font-size: 24px;
    }
    .login-options-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ============================================
   DASHBOARD PANEL STYLES
   ============================================ */
.dashboard-body {
    background-color: var(--bg-light);
    color: var(--neutral-dark);
    font-family: var(--font);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
}

/* Sidebar Styling */
.db-sidebar {
    width: 280px;
    background-color: #0f172a; /* Slate 900 gelap elegan */
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
}

.db-sidebar-brand {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-brand-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.3);
}

.db-brand-text h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
}

.db-brand-text h3 span {
    color: var(--primary);
}

.db-brand-text .db-tag {
    font-size: 10px;
    color: var(--neutral-light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.db-nav {
    padding: 24px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.db-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.db-nav-item:hover,
.db-nav-item.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.06);
}

.db-nav-item.active {
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.2);
}

.db-nav-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.db-sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.2);
}

.db-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-user-avatar {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--primary);
}

.db-user-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.db-user-role {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
    margin-top: 2px;
}

.db-logout-btn {
    color: #94a3b8;
    font-size: 18px;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.db-logout-btn:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

/* Content Wrapper */
.db-main-wrapper {
    margin-left: 280px;
    width: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: var(--transition);
}

/* Topbar Styling */
.db-topbar {
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
}

.db-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.db-sidebar-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--neutral-dark);
    display: none; /* Hanya aktif di layar kecil */
}

.db-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--neutral-light-text);
    font-weight: 500;
}

.db-breadcrumb i {
    font-size: 10px;
}

.db-breadcrumb .active {
    color: var(--neutral-dark);
    font-weight: 700;
}

.db-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.db-status-pill {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-green {
    background-color: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
}

.status-red {
    background-color: #fef2f2;
    color: var(--danger);
    border: 1px solid #fecaca;
}

.db-bell {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: var(--neutral-text);
    transition: var(--transition);
}

.db-bell:hover {
    color: var(--primary);
}

.db-bell .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid #fff;
}

/* Content Layout */
.db-content {
    padding: 32px;
    flex-grow: 1;
}

/* Welcome Banner */
.db-welcome-banner {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, #004ac7 100%);
    color: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 45, 128, 0.15);
}

.db-banner-text h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.db-banner-text p {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
}

.db-banner-meta {
    display: flex;
    gap: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
}

.meta-value {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

/* Stats Cards Grid */
.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.db-stat-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.card-icon.blue {
    background-color: #eff6ff;
    color: var(--primary);
}

.card-icon.green {
    background-color: #ecfdf5;
    color: var(--success);
}

.card-icon.orange {
    background-color: #fff7ed;
    color: var(--warning);
}

.card-icon.red {
    background-color: #fef2f2;
    color: var(--danger);
}

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

.card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--neutral-light-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 22px;
    font-weight: 800;
    margin: 4px 0;
    color: var(--neutral-dark);
}

.card-sub {
    font-size: 12px;
    color: var(--neutral-light-text);
    font-weight: 500;
}

.text-green {
    color: var(--success) !important;
    font-weight: 600;
}

.text-red {
    color: var(--danger) !important;
    font-weight: 600;
}

/* Rows & Panels */
.db-content-row {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.flex-2 {
    flex: 2;
}
.flex-1 {
    flex: 1;
}

.db-card-panel {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.panel-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--neutral-dark);
    margin: 0;
}

.btn-panel-action {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.btn-panel-action:hover {
    text-decoration: underline;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.db-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.db-table th {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--neutral-light-text);
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
    background-color: var(--bg-light);
}

.db-table td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    color: var(--neutral-text);
}

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

.db-table tr:hover td {
    background-color: #f8fafc;
}

.font-bold {
    font-weight: 700;
}
.text-dark {
    color: var(--neutral-dark) !important;
}

/* Status Badges */
.badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.badge-success {
    background-color: #ecfdf5;
    color: var(--success);
}
.badge-warning {
    background-color: #fffbeb;
    color: var(--warning);
}
.badge-danger {
    background-color: #fef2f2;
    color: var(--danger);
}

/* Quick Action Buttons */
.db-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-action-block {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-action-block:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-action-block.secondary {
    background-color: var(--bg-light);
    color: var(--neutral-dark);
    border: 1px solid var(--border-color);
}

.btn-action-block.secondary:hover {
    background-color: #e2e8f0;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-icon:hover {
    background-color: var(--bg-light);
}

/* Network resource item bar */
.db-network-summary {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.db-network-summary .sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--neutral-light-text);
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.progress-item {
    margin-bottom: 16px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.progress-bar {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
}

/* Responsive Dashboard Breakpoints */
@media (max-width: 1024px) {
    .db-content-row {
        flex-direction: column;
    }
    .flex-2,
    .flex-1 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .db-sidebar {
        transform: translateX(-100%);
    }
    .db-sidebar.active {
        transform: translateX(0);
    }
    .db-main-wrapper {
        margin-left: 0;
        width: 100%;
    }
    .db-sidebar-toggle {
        display: block;
    }
    .db-welcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .db-banner-meta {
        width: 100%;
        justify-content: space-around;
    }
    .db-topbar {
        padding: 0 16px;
    }
    .db-content {
        padding: 16px;
    }
}
/* Custom Dashboard Styles */
.chart-container {
    position: relative;
    height: 320px;
    width: 100%;
    margin-top: 15px;
}

.db-activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #fafbfe;
    border: 1px solid #f1f3f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-color: #e2e7f3;
}

.activity-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-icon-badge.info {
    background-color: rgba(30, 144, 255, 0.1);
    color: #1e90ff;
}

.activity-icon-badge.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.activity-icon-badge.warning {
    background-color: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.activity-icon-badge.danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.activity-meta {
    flex-grow: 1;
}

.activity-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 2px;
}

.activity-desc {
    font-size: 12px;
    color: var(--neutral-light-text);
}

.activity-time {
    font-size: 11px;
    color: #9eabbc;
    font-weight: 500;
}

/* ── Filter Bar & Search ── */
.db-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    background-color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-text);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #002d80;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.1);
}

.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #002d80;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.1);
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-light-text);
    font-size: 14px;
}

/* ── Badge Status Pelanggan ── */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-status.aktif {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-status.ditangguhkan {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.badge-status.lunas {
    background-color: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.badge-status.tunggakan {
    background-color: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
}

.badge-status.belum_bayar {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.badge-status.isolir {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.badge-status.expired {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

/* ── Modal Add Customer (Warna #002D80, Montserrat) ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 580px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-header {
    background-color: #002d80;
    color: #fff;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.3px;
}

.modal-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 28px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--neutral-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form-control {
    padding: 11px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.modal-form-control:focus {
    border-color: #002d80;
    box-shadow: 0 0 0 3px rgba(0, 45, 128, 0.1);
}

.modal-footer {
    padding: 20px 28px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-modal {
    padding: 11px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal.cancel {
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--neutral-text);
}

.btn-modal.cancel:hover {
    background-color: #f1f3f9;
}

.btn-modal.save {
    background-color: #002d80;
    color: #fff;
}

.btn-modal.save:hover {
    background-color: #001f5c;
    box-shadow: 0 4px 12px rgba(0, 45, 128, 0.2);
}

/* ── Custom Pagination ── */
.db-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding: 16px 24px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pagination-info {
    font-size: 13px;
    color: var(--neutral-light-text);
    font-weight: 500;
}

.pagination-buttons {
    display: flex;
    gap: 8px;
}

.btn-page {
    padding: 8px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--neutral-text);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-page:hover:not(.disabled) {
    background-color: #002d80;
    color: #fff;
    border-color: #002d80;
}

.btn-page.active {
    background-color: #002d80;
    color: #fff;
    border-color: #002d80;
}

.btn-page.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =============================================
   Responsive — Tablet (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 120px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-container {
        margin-right: -24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 30px;
    }
}

/* =============================================
   Responsive — Mobile (max 768px)
   ============================================= */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px 0;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-image-container {
        margin-right: 0;
        justify-content: center;
    }

    .hero-image-card {
        width: 100%;
        max-width: 100%;
    }

    /* SVG background */
    .hero::after {
        height: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section {
        padding: 70px 0;
    }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 30, 61, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 9999;
        backdrop-filter: blur(10px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
        color: #fff;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Contact / Footer */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

/* =============================================
   Responsive — Small Mobile (max 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .feature-card,
    .step-card {
        padding: 28px 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }
}
