/* ==========================================
   Jascus Webcraft Agency - Official CSS
   Design System: Electric Cyan Blue & Dark Charcoal (CMS Admin Enabled)
   ========================================== */

:root {
    /* Color Palette - Aligned with Logo */
    --bg-light: #f8fafc;
    --bg-dark: #080b11;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-card-hover: rgba(255, 255, 255, 0.99);
    --border-color: rgba(226, 232, 240, 0.85);
    --border-color-active: rgba(2, 132, 199, 0.5);

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #94a3b8;

    /* Primary & Secondary Color Matched to Logo (Electric Cyan Blue) */
    --primary: #0284c7;
    --primary-hover: #0369a1;
    --primary-glow: rgba(2, 132, 199, 0.25);

    --secondary: #38bdf8;
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.15);
    --warning: #d97706;
    --danger: #ef4444;

    /* Typography & Radii */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transition & Shadows */
    --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glass: 0 12px 32px -5px rgba(2, 132, 199, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-light);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(2, 132, 199, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(2, 132, 199, 0.4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(2, 132, 199, 0.7); }

/* Layout Container */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Card Component */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 16px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 10px 24px;
    margin-top: 16px;
    box-shadow: 0 8px 30px rgba(2, 132, 199, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 14px rgba(2, 132, 199, 0.35);
    transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-info h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.brand-info h2 span { color: var(--primary); }
.brand-info small { color: var(--text-dim); font-size: 0.72rem; display: block; font-weight: 500; }

.nav-links {
    display: flex;
    gap: 24px;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

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

.btn-wa-nav {
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-wa-nav:hover { background: #1da851; }

/* ==========================================
   ADMIN PANEL SECTION
   ========================================== */
.admin-panel-section {
    padding: 30px 0;
    animation: fadeIn 0.3s ease;
}

.admin-card {
    padding: 30px;
}

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

.admin-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.admin-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.admin-actions {
    display: flex;
    gap: 12px;
}

.admin-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.data-table th {
    padding: 14px 16px;
    background: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.data-table tr:hover td {
    background: rgba(2, 132, 199, 0.03);
}

.action-btn-group {
    display: flex;
    gap: 8px;
}

.btn-icon-only {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-icon-only:hover {
    background: #e2e8f0;
}

/* HERO SECTION */
.hero-section {
    padding: 70px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
}

.hero-content h1 {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
}

.stat-item h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.stat-item p { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 24px; background: var(--border-color); }

/* ==========================================
   ISOMETRIC ANIMATED BANNER (COLOR MATCHED)
   ========================================== */
.agency-banner-section {
    margin: 40px 0;
    background: linear-gradient(135deg, #090d16, #0284c7, #0369a1);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.25);
    overflow: hidden;
    position: relative;
}

.banner-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.iso-mockup {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-screen {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: #0f172a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.iso-header {
    height: 20px;
    background: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}

.iso-body {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.iso-desktop {
    width: 220px;
    height: 140px;
    top: 10px;
    left: 20px;
    z-index: 1;
    transform: rotateX(15deg) rotateY(-15deg);
}

.iso-laptop {
    width: 200px;
    height: 120px;
    bottom: 10px;
    right: 40px;
    z-index: 2;
    background: #0f172a;
    color: #38bdf8;
    border: 2px solid #38bdf8;
}

.iso-mobile {
    width: 90px;
    height: 130px;
    top: 40px;
    right: 180px;
    z-index: 3;
    border: 2px solid #0284c7;
}

.iso-chart-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    z-index: 4;
}

.banner-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.banner-quote {
    padding-left: 20px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* SERVICES GRID */
.services-section { padding: 50px 0 70px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    transition: all var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-active);
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.icon-cyan { background: rgba(2, 132, 199, 0.1); color: var(--primary); }
.icon-emerald { background: rgba(16, 185, 129, 0.1); }
.icon-blue { background: rgba(56, 189, 248, 0.15); color: #0284c7; }
.icon-rose { background: rgba(244, 114, 182, 0.15); }
.icon-amber { background: rgba(217, 119, 6, 0.1); }

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.service-link:hover { text-decoration: underline; }

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* CATEGORY PILLS */
.category-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.pill {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pill:hover { background: #f1f5f9; color: var(--text-main); }
.pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
}

/* CATALOG GRID & CARDS */
.catalog-section { padding: 40px 0 70px; }

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-active);
    box-shadow: 0 16px 35px rgba(2, 132, 199, 0.14);
}

.card-banner {
    height: 180px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(56, 189, 248, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.card-icon {
    font-size: 4rem;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.1));
}

.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

.badge-featured { background: #fef3c7; color: #b45309; }
.badge-category { background: #e0f2fe; color: #0369a1; }

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tech-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tech-tag {
    font-size: 0.72rem;
    padding: 2px 8px;
    background: #f1f5f9;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.card-price-row small { font-size: 0.75rem; color: var(--text-dim); display: block; }
.card-price-row strong { font-size: 1.25rem; font-weight: 800; color: var(--primary); }

.card-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* WHY US SECTION */
.why-us-section { padding: 60px 0; }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.why-card {
    padding: 24px;
    background: #fff;
    text-align: center;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* PRICING SECTION */
.pricing-section { padding: 60px 0 80px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: #fff;
}

.featured-pkg {
    border: 2px solid var(--primary);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.18);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pricing-header h3 { font-size: 1.3rem; font-weight: 800; margin: 10px 0; }

.price-tag { margin: 16px 0; }
.price-tag h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.price-tag small { color: var(--text-dim); }

.pricing-features {
    list-style: none;
    margin: 20px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* TRUST SECTION */
.trust-section { padding: 40px 0 60px; text-align: center; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge-item {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* FAQ & FOOTER */
.faq-section { padding: 40px 0 80px; }

.faq-accordion { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { padding: 20px; background: #fff; }
.faq-question { font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.faq-answer { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

.footer { padding: 40px 0; border-top: 1px solid var(--border-color); margin-top: 40px; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-brand h2 { font-size: 1.2rem; font-weight: 800; }
.footer-brand h2 span { color: var(--primary); }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; max-width: 450px; }

/* FLOATING WIDGETS */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    text-decoration: none;
    animation: pulseWa 2s infinite;
}

@keyframes pulseWa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: #090d16;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.floating-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-top-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* KEYFRAME ANIMATIONS */
@keyframes floatAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes floatSlow {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.anim-float { animation: floatAnim 3.5s ease-in-out infinite; }
.anim-float-slow { animation: floatSlow 6s ease-in-out infinite; }

.anim-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition-fast);
}

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

.modal-container {
    width: 90%; max-width: 520px; max-height: 90vh;
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex; flex-direction: column; overflow: hidden;
}

.demo-modal-container { max-width: 900px; height: 85vh; }

.modal-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 1.15rem; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 1.5rem; color: var(--text-dim); cursor: pointer; }

.modal-body { padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.demo-modal-body { padding: 0; height: 100%; }

.demo-frame-wrapper { width: 100%; height: 100%; border: none; }
.demo-frame-wrapper iframe { width: 100%; height: 100%; border: none; }

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

/* Checkout Modal Styling */
.checkout-summary-box {
    padding: 16px;
    background: rgba(2, 132, 199, 0.06);
    border: 1px solid rgba(2, 132, 199, 0.15);
    border-radius: var(--radius-md);
}

.checkout-summary-box small { color: var(--text-muted); }
.checkout-summary-box h3 { color: var(--text-main); font-size: 1.15rem; margin: 4px 0 8px; }

.checkout-price-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.checkout-price-row strong { color: var(--primary); font-size: 1.2rem; }

.payment-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.pay-method-card {
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #f8fafc;
}

.pay-method-card input { display: none; }
.pay-method-card.active { border-color: var(--primary); background: #e0f2fe; color: var(--primary); }

.pay-details-area {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Toast */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast { padding: 12px 20px; background: #0f172a; color: #fff; border-radius: var(--radius-md); font-size: 0.88rem; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* Responsive */
@media (max-width: 992px) {
    .banner-container { grid-template-columns: 1fr; text-align: center; }
    .banner-quote { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.1rem; }
    .footer-container { flex-direction: column; gap: 20px; text-align: center; }
}
