/* PloCast - NoLogin Site Styles */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary: #0ea5e9;
    --dark: #1e293b;
    --gray-900: #0f172a;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-custom {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
}

.navbar-custom.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary);
    font-size: 1.75rem;
}

.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-register {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 65, 85, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    color: var(--white);
}

.btn-hero-secondary {
    background: var(--white);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #22c55e; }

.mockup-content {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 20px;
    min-height: 300px;
}

.mockup-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-item {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mockup-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mockup-item-info {
    flex: 1;
}

.mockup-item-title {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.mockup-item-time {
    color: var(--gray-500);
    font-size: 12px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    margin-top: 70px;
}

.hero-slider .carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85), rgba(14, 165, 233, 0.75));
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-slider .slide-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-slider .slide-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-slider .slide-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-slider .btn-slide {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

.hero-slider .btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #fff;
    color: var(--primary-dark);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    backdrop-filter: blur(5px);
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255,255,255,0.4);
}

.hero-slider .carousel-indicators {
    bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255,255,255,0.5);
    border: none;
}

.hero-slider .carousel-indicators button.active {
    background: #fff;
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ========================================
   FEATURES
   ======================================== */
.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========================================
   AUTH PAGES
   ======================================== */
.auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: var(--gray-50);
}

.auth-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
}

.auth-card h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .subtitle {
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card .form-group {
    margin-bottom: 1.5rem;
}

.auth-card label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.auth-card .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.auth-card .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.auth-card .checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-card .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.auth-card .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gray-600);
}

.auth-card .btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-card .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--gray-400);
    font-size: 0.8rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

#google-signin-btn {
    display: flex;
    justify-content: center;
}

.auth-card .auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.auth-card .auth-footer p {
    color: var(--gray-600);
    margin: 0;
}

.auth-card .auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-card .auth-footer a:hover {
    text-decoration: underline;
}

.auth-card .validation-summary,
.auth-card .field-validation-error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ========================================
   PAGE HEADER (Common)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-700) 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.contact-info-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    color: var(--gray-500);
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-card .subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.social-section {
    padding: 60px 0;
    background: #fff;
}

.social-card {
    text-align: center;
    padding: 2rem;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.social-icon.twitter { background: #1da1f2; }
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-icon.youtube { background: #ff0000; }

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.social-card p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.9rem;
}

.social-card a {
    text-decoration: none;
}

.faq-quick {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-quick-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-quick-item h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-quick-item h5 i {
    color: var(--primary);
}

.faq-quick-item p {
    color: var(--gray-500);
    margin: 0;
    padding-left: 2rem;
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */
.step-section {
    padding: 80px 0;
}

.step-section:nth-child(even) {
    background: #f8fafc;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.step-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
}

.step-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.step-features li {
    padding: 0.75rem 0;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.step-image {
    background: var(--gray-700);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-image-inner {
    background: var(--dark);
    border-radius: 12px;
    padding: 20px;
    min-height: 250px;
}

.demo-upload {
    border: 2px dashed rgba(99, 102, 241, 0.5);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.demo-upload i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.demo-timeline-item {
    background: rgba(99, 102, 241, 0.2);
    border-left: 4px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-timeline-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.demo-timeline-info {
    flex: 1;
}

.demo-timeline-title {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.demo-timeline-time {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}

.demo-live-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.live-indicator {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.live-indicator i {
    color: #fff;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.live-info {
    text-align: left;
}

.live-info h4 {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 5px;
}

.live-info p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 14px;
}

/* ========================================
   HLS PLAYER SECTION
   ======================================== */
.hls-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
}

.hls-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hls-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.hls-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-light);
}

.hls-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.hls-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.hls-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* HLS Demo Player */
.hls-demo {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.hls-demo-player {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hls-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
}

.hls-demo-live {
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hls-demo-viewers {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

.hls-demo-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.15);
    font-size: 4rem;
}

.hls-demo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hls-demo-left, .hls-demo-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hls-demo-time {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.hls-demo-quality {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* HLS Flow */
.hls-demo-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hls-flow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hls-flow-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hls-flow-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.hls-flow-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.hls-flow-text p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray-500);
    margin: 0;
}

/* ========================================
   PACKAGES PAGE
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.popular::before {
    content: 'En Populer';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #fff;
}

.pricing-card.popular .pricing-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.pricing-card.enterprise .pricing-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-500);
    vertical-align: super;
}

.price-period {
    color: var(--gray-500);
    font-size: 1rem;
}

.price-vat {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.pricing-features li i.bi-check-circle-fill {
    color: #22c55e;
}

.pricing-features li i.bi-x-circle-fill {
    color: #ef4444;
}

.pricing-features li.highlight {
    font-weight: 600;
    color: var(--dark);
}

.pricing-button {
    margin-top: 2rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    color: #fff;
}

.btn-pricing-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-pricing-outline:hover {
    background: var(--primary);
    color: #fff;
}

.comparison-section {
    padding: 80px 0;
    background: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table thead th {
    background: var(--dark);
    color: #fff;
    font-weight: 600;
}

.comparison-table thead th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table .feature-name {
    font-weight: 500;
    color: var(--dark);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.25rem;
}

.comparison-table .value {
    font-weight: 600;
    color: var(--dark);
}

.guarantee-section {
    padding: 60px 0;
    background: #f8fafc;
}

.guarantee-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.guarantee-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.guarantee-card p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar-custom {
        padding: 0.5rem 0;
    }

    .navbar-custom .container {
        padding: 0 12px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-brand i {
        font-size: 1.5rem;
    }

    .btn-login,
    .btn-register {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .navbar-collapse .nav-link {
        padding: 0.75rem 0.5rem !important;
    }

    .navbar-collapse .d-flex {
        margin-top: 0.5rem;
        width: 100%;
        gap: 8px;
    }

    .navbar-collapse .btn-login,
    .navbar-collapse .btn-register {
        flex: 1;
        text-align: center;
    }

    /* Hero */
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-mockup {
        padding: 12px;
        border-radius: 14px;
    }

    .mockup-content {
        padding: 12px;
        min-height: 200px;
    }

    /* Hero Slider */
    .hero-slider .carousel-item {
        height: 380px;
    }

    .hero-slider .slide-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-slider .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-slider .slide-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-slider .btn-slide {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    .hero-slider .carousel-control-prev {
        left: 8px;
    }

    .hero-slider .carousel-control-next {
        right: 8px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Features */
    .feature-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Pricing / Packages */
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-card {
        padding: 1.75rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .pricing-name {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .pricing-button {
        margin-top: 1.5rem;
    }

    /* Comparison Table */
    .comparison-section {
        padding: 50px 0;
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* HLS Section */
    .hls-section {
        padding: 60px 0;
    }

    .hls-demo {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hls-demo-info h3 {
        font-size: 1.35rem;
    }

    .hls-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    /* How It Works */
    .step-section {
        padding: 50px 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h2 {
        font-size: 1.5rem;
    }

    .step-image {
        padding: 16px;
        border-radius: 14px;
    }

    /* Page Header */
    .page-header {
        padding: 110px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Auth */
    .auth-page {
        padding: 90px 16px 40px;
    }

    .auth-card {
        padding: 1.75rem;
        border-radius: 18px;
    }

    .auth-card h1 {
        font-size: 1.5rem;
    }

    /* Contact */
    .contact-section {
        padding: 50px 0;
    }

    .contact-form-card {
        padding: 1.75rem;
        border-radius: 16px;
    }

    .contact-info-card {
        padding: 0.85rem 1rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    footer .col-md-4,
    footer .col-md-2 {
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
    }

    /* Guarantee */
    .guarantee-section {
        padding: 40px 0;
    }

    .guarantee-card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }

    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h4 {
        font-size: 0.95rem;
    }

    .faq-quick-item {
        padding: 1rem;
    }

    .faq-quick-item h5 {
        font-size: 0.95rem;
    }

    .faq-quick-item p {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
}
