/* ============================================
   VARIATION 1: DARK THEME (Reference Match)
   - Dark background matching iptvnorwaypro.com
   - Fonts: Plus Jakarta Sans (headings), DM Sans (body)
   - Colors: Red CTA (#d60000), Dark backgrounds
   ============================================ */

/* Fonts loaded via HTML link tag with display=swap for better performance */

:root {
    --primary: #d60000;
    --primary-hover: #b30000;
    --primary-light: rgba(214, 0, 0, 0.1);

    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-surface: #111111;

    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);

    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);

    --accent-gold: #fbbf24;
    --accent-green: #22c55e;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --nav-height: 80px;

    --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-large { padding: 18px 40px; font-size: 16px; }

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(214, 0, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(214, 0, 0, 0.5);
}

.btn-cta {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(214, 0, 0, 0.4);
}

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

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--text-white);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
}

.logo-icon { color: var(--primary); width: 28px; height: 28px; }

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

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--text-white); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Fallback image for when video doesn't load */
.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1593784991095-a205069470b6?w=1920&q=80') center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-video-container.video-error::after {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.75) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-disclaimer {
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-dim);
}

/* ===== TITLE BAR ===== */
.title-bar {
    background: var(--bg-surface);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.title-bar h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--text-white);
}

/* ===== STEPS ===== */
.steps {
    background: var(--bg-surface);
    padding: 0 24px 70px;
}

.steps-row {
    display: flex;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    background: var(--bg-card);
    padding: 40px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(214, 0, 0, 0.15);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
}

.step-icon i { width: 32px; height: 32px; }

.step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 14px;
}

.step p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ===== ABOUT ===== */
.about {
    background: var(--bg-dark);
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-txt { flex: 1; }

.about-txt h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-white);
    margin-bottom: 28px;
}

.about-txt p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-txt strong { color: var(--text-white); font-weight: 600; }

.about-img { flex: 1; text-align: center; }

.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.about-img .cap {
    font-size: 14px;
    color: var(--text-muted);
    margin: 16px 0;
}

/* ===== SERVER INFRASTRUCTURE ===== */
.server-section {
    background: var(--bg-dark);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

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

.server-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-white);
    margin-bottom: 18px;
}

.server-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.text-red { color: var(--primary); }
.text-green { color: var(--accent-green); }

.server-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.server-card:hover {
    border-color: var(--border-light);
}

.server-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.server-card-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
}

.server-card-header .icon-red {
    width: 28px;
    height: 28px;
    color: #ef4444;
}

.server-card-header .icon-green {
    width: 28px;
    height: 28px;
    color: var(--accent-green);
}

.server-bad .server-card-header h3 { color: #ef4444; }
.server-good .server-card-header h3 { color: var(--accent-green); }

.server-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    min-height: 180px;
}

.server-icon-main {
    width: 80px;
    height: 60px;
    background: var(--bg-surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-icon-main i {
    width: 36px;
    height: 36px;
    color: var(--text-muted);
}

.server-lines {
    width: 200px;
    height: 60px;
}

.server-lines.bad svg {
    width: 100%;
    height: 100%;
}

.server-users {
    display: flex;
    gap: 20px;
}

.user-icon {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon i {
    width: 20px;
    height: 20px;
    color: #ef4444;
}

/* Distributed Server Diagram */
.server-diagram.distributed {
    position: relative;
}

.distributed-grid {
    position: relative;
    width: 200px;
    height: 180px;
}

.distributed-grid .node {
    position: absolute;
    width: 50px;
    height: 40px;
    background: var(--bg-surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.distributed-grid .node i {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
}

.distributed-grid .node.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 50px;
    border-color: var(--accent-green);
    background: rgba(34, 197, 94, 0.1);
}

.distributed-grid .node.center i {
    color: var(--accent-green);
}

.distributed-grid .node.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.distributed-grid .node.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.distributed-grid .node.left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.distributed-grid .node.right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* Connection lines */
.distributed-grid::before,
.distributed-grid::after {
    content: '';
    position: absolute;
    background: var(--accent-green);
    opacity: 0.4;
}

.distributed-grid::before {
    width: 2px;
    height: calc(100% - 80px);
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.distributed-grid::after {
    height: 2px;
    width: calc(100% - 100px);
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.server-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.server-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.problem-list {
    list-style: none;
    margin: 20px 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 15px;
}

.problem-list li i {
    width: 18px;
    height: 18px;
    color: #ef4444;
}

.server-note {
    font-size: 14px !important;
    color: var(--text-muted) !important;
}

.highlight-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px !important;
    color: var(--accent-green) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .server-grid {
        grid-template-columns: 1fr;
    }

    .distributed-grid {
        width: 160px;
        height: 150px;
    }

    .distributed-grid .node {
        width: 40px;
        height: 35px;
    }

    .distributed-grid .node.center {
        width: 50px;
        height: 45px;
    }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: var(--bg-surface);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-proof .sec-hd { margin-bottom: 60px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.review-stars i {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.review-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-white);
}

.review-info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.review-info span {
    font-size: 13px;
    color: var(--text-dim);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    text-align: center;
}

.trust-badge .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-badge .label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing {
    background: var(--bg-dark);
    padding: 100px 0;
}

.pricing-hdr {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-hdr h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-white);
    margin-bottom: 16px;
}

.disc-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.legal {
    color: var(--text-dim);
    font-size: 13px;
    max-width: 600px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: 1px solid var(--border);
}

.tab {
    flex: 1;
    padding: 16px 28px;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    transition: var(--transition);
}

.tab:hover { color: var(--text-white); }

.tab.on {
    background: var(--primary);
    color: var(--text-white);
}

.cards {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.cards.on { display: grid; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
}

.card.pop {
    background: linear-gradient(180deg, rgba(214, 0, 0, 0.15), var(--bg-card));
    border-color: var(--primary);
    transform: scale(1.05);
}

.card.pop:hover { transform: scale(1.07); }

.card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.card .price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.75rem;
    color: var(--text-white);
    margin-bottom: 28px;
}

.card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.card ul li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 700;
    font-size: 16px;
}

.card .buy {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
}

.card .buy:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* ===== FEATURES ===== */
.features {
    background: var(--bg-surface);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.sec-hd {
    text-align: center;
    margin-bottom: 60px;
}

.sec-hd h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-white);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.feat:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(214, 0, 0, 0.1);
}

.feat-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--primary);
    border: 1px solid rgba(214, 0, 0, 0.2);
}

.feat-icon i { width: 28px; height: 28px; }

.feat h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feat p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SHOWCASE ===== */
.showcase {
    background: var(--bg-dark);
    padding: 100px 0;
}

.show-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.show-img { flex: 1.2; }

.show-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.show-txt { flex: 1; }

.show-txt p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-surface);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.faq-hd {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-white);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-col details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-col details:hover { border-color: var(--border-light); }

.faq-col details[open] { border-color: var(--primary); }

.faq-col summary {
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.faq-col summary::-webkit-details-marker { display: none; }

.faq-col summary:hover { background: var(--bg-card-hover); }

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-col details[open] .faq-icon { transform: rotate(180deg); }

.faq-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== SUBSCRIPTION SECTION ===== */
.sub-sec {
    background: var(--bg-dark);
    padding: 100px 0;
}

.sub-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.sub-img { flex: 1; }

.sub-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.sub-txt { flex: 1; }

.sub-txt h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    color: var(--text-white);
    margin-bottom: 28px;
}

.sub-txt p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.sub-txt strong { color: var(--text-white); font-weight: 600; }

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-surface);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.contact-in { text-align: center; }

.contact-in h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 40px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.ci {
    width: 72px;
    height: 72px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.ci:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.ci i { width: 32px; height: 32px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.footer-in { text-align: center; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer p {
    color: var(--text-dim);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .card.pop { transform: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-badges { gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 24px;
        gap: 0;
    }

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

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-actions { display: none; }
    .menu-toggle { display: block; }

    .menu-toggle.active i {
        transform: rotate(90deg);
    }

    .hero h1 { font-size: 1.75rem; }

    .steps-row { flex-direction: column; }

    .about-grid, .show-grid, .sub-grid { flex-direction: column; }

    .feat-grid, .cards { grid-template-columns: 1fr; }

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

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

    .trust-badges {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trust-badge .number { font-size: 2rem; }
}
