:root {
    --bg-dark: #0a0e17;
    --bg-card: #151a25;
    --primary-color: #ffd700;
    /* Gold */
    --secondary-color: #1e90ff;
    /* Electric Blue */
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(255, 215, 0, 0.15);
    --glass-bg: rgba(21, 26, 37, 0.90);
    --border-color: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typo Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.gradient-text {
    background: linear-gradient(120deg, var(--primary-color), #fff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: black !important;
    padding: 10px 25px;
    border-radius: 4px;
    opacity: 1 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Master Hero */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(30, 144, 255, 0.1), transparent 60%), radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05), transparent 50%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.new-year {
    background: rgba(30, 144, 255, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.badge.secure {
    background: rgba(0, 255, 127, 0.15);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    opacity: 0.7;
    font-size: 0.85rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Visual (Floating Cards) */
.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    font-family: monospace;
}

.c1 {
    top: 20%;
    right: 10%;
    transform: rotate(5deg);
    animation: float 6s infinite ease-in-out;
}

.c2 {
    top: 50%;
    right: 20%;
    transform: rotate(-5deg);
    animation: float 7s infinite ease-in-out 1s;
    z-index: 2;
    background: rgba(30, 144, 255, 0.2);
    border-color: var(--secondary-color);
    font-size: 1.2rem;
}

.c3 {
    top: 70%;
    right: 0%;
    transform: rotate(10deg);
    animation: float 8s infinite ease-in-out 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(var(--r));
    }

    50% {
        transform: translateY(-20px) rotate(var(--r));
    }
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: white;
    font-weight: 800;
}

.stat span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.text-block {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* TV Section */
.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tv-features ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tv-features ul li::before {
    content: '▶';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

.tv-mockup {
    background: black;
    border-radius: 12px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 0 50px rgba(30, 144, 255, 0.2);
}

.tv-mockup .screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
    background: radial-gradient(circle, #222, #000);
}

.tv-mockup .controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.tv-mockup .controls span {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
}

/* DICTIONARY GRID (New) */
.dictionary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.term-card {
    background: var(--bg-card);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    transition: 0.3s;
}

.term-card:hover {
    transform: translateX(5px);
    background: #1a212e;
}

.term-card h4 {
    color: white;
    margin-bottom: 10px;
}

.term-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    z-index: 2;
    position: relative;
}

.step-card h4 {
    color: var(--primary-color);
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* TABLE */
.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.premium-table th {
    background: #1a212e;
    padding: 15px;
    text-align: left;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.premium-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: #ccc;
}

.detailed-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.detailed-table th,
.detailed-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.detailed-table th {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .year {
    width: 100px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-align: right;
    flex-shrink: 0;
}

.timeline-item .content {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    flex-grow: 1;
    border: 1px solid var(--border-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

/* COMPARISON */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 30px;
}

.comp-col {
    padding: 40px;
}

.comp-col.brand {
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid var(--secondary-color);
    border-right: none;
}

.comp-col.other {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    opacity: 0.7;
}

.comp-col ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

/* ACCORDION FAQ */
.faq-accordion details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-accordion summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-accordion details[open] summary::after {
    content: '-';
}

.faq-accordion p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Footer */
.main-footer {
    padding: 80px 0 30px;
    background: #05070a;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-logo {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.f-col h4 {
    color: white;
    margin-bottom: 25px;
}

.f-col ul li {
    margin-bottom: 12px;
}

.f-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    margin-right: 15px;
    color: var(--text-muted);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-license {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-copy {
    text-align: center;
    color: #444;
    border-top: 1px solid #111;
    padding-top: 30px;
}

.tags-cloud {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #222;
}

/* MEDIA QUERIES */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .features-grid,
    .stats-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .columns-2 {
        grid-template-columns: 1fr;
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
    }

    .comp-col.brand {
        border-right: 1px solid var(--secondary-color);
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links-wrapper {
        order: 3;
        width: 100%;
        display: none;
    }

    /* Hide checks, use JS toggle */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}