/*
Theme Name: LinkedIn Premium Theme
Author: Antigravity
Description: Custom WordPress theme for LinkedIn Premium landing page.
Version: 1.0
*/


/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #0077B5;
    --primary-dark: #005885;
    --primary-light: #00a0dc;
    --secondary: #F5A623;
    --secondary-dark: #d4890a;
    --accent: #10B981;
    --accent-light: #34D399;

    /* Dark Theme */
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0077B5 0%, #00a0dc 100%);
    --gradient-secondary: linear-gradient(135deg, #F5A623 0%, #f7c26b 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
    --gradient-text: linear-gradient(135deg, #00d9ff 0%, #3b82f6 30%, #a855f7 60%, #fbbf24 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(0, 119, 181, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== Disable Text Selection on Mobile ===== */
/* Prevents unwanted text highlighting when users tap, scroll, or swipe */
body {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
a,
button,
div,
section,
header,
footer,
nav,
.btn,
.nav-link,
.nav-logo,
.nav-menu,
.nav-toggle,
.hero,
.hero-content,
.hero-badge,
.hero-highlights,
.benefit-card,
.pricing-card,
.course-content,
.activation-content,
.faq-item,
.faq-question,
.final-cta,
.footer,
.section-header,
.cta-content,
.highlight-item,
.happy-customers,
.customer-card,
.customer-overlay,
.verified-badge,
.customers-trust,
.trust-item,
.trust-text,
.container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Keep inputs and textareas selectable */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 119, 181, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, rgb(245, 166, 35) 0%, rgb(247, 194, 107) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
    height: 72px;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 24px;
}

/* Desktop: Center the nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    text-decoration: none;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
    z-index: 2;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e293b 25%, #2d1b4e 50%, #1e293b 75%, #0a1628 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 40%, rgba(0, 160, 220, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(245, 166, 35, 0.2) 0%, transparent 40%);
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 30%,
            transparent 70%,
            rgba(168, 85, 247, 0.08) 100%);
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-2%, 2%) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fbbf24;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.badge-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 160, 220, 0.3), 0 0 40px rgba(168, 85, 247, 0.2);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--accent);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

.highlight-icon {
    color: var(--accent);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-trust {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* ===== Section Styles ===== */
.benefits,
.pricing,
.course,
.activation,
.faq {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.bonus-badge {
    border-color: var(--secondary);
    color: var(--secondary);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ===== Benefits Section ===== */
.benefits {
    background: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.benefit-card.career:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 119, 181, 0.2);
}

.benefit-card.business:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 40px rgba(245, 166, 35, 0.2);
}

.benefit-card-header {
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--glass);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 15px;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
}

/* ===== Pricing Section ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Career Premium Card (popular) - Blue theme */
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 35px rgba(0, 119, 181, 0.3);
}

/* Business Premium Card - Orange theme */
.pricing-card.business {
    border-color: rgb(245, 166, 35);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

.pricing-card.business:hover {
    transform: translateY(-5px);
    border-color: rgb(245, 166, 35);
    box-shadow: 0 0 35px rgba(245, 166, 35, 0.3);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card-header {
    padding: 24px 24px 12px;
    text-align: center;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.career-icon {
    background: rgba(0, 119, 181, 0.15);
}

.business-icon {
    background: rgba(245, 166, 35, 0.15);
}

.pricing-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-body {
    padding: 12px 24px 24px;
    text-align: center;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--glass);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.duration-icon {
    color: var(--primary);
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.pricing-features li span:first-child {
    color: var(--accent);
    font-weight: 700;
}

.pricing-features li.bonus {
    background: rgba(16, 185, 129, 0.1);
    margin: 10px -20px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    color: var(--accent);
    font-weight: 600;
}

/* ===== Coupon Banner Styles ===== */
.coupon-banner {
    width: 100%;
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.08) 0%, rgba(0, 160, 220, 0.12) 100%);
    border: 1.5px solid rgba(0, 119, 181, 0.3);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.coupon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.coupon-banner:hover::before {
    left: 100%;
}

.coupon-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 119, 181, 0.6);
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.25);
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.12) 0%, rgba(0, 160, 220, 0.16) 100%);
}

.coupon-banner:active {
    transform: translateY(0);
}

/* Business coupon variant with orange theme */
.coupon-banner.coupon-business {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(247, 194, 107, 0.12) 100%);
    border-color: rgba(245, 166, 35, 0.3);
}

.coupon-banner.coupon-business:hover {
    border-color: rgba(245, 166, 35, 0.6);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.12) 0%, rgba(247, 194, 107, 0.16) 100%);
}

.coupon-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.coupon-business .coupon-title {
    color: var(--secondary);
}

.coupon-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.coupon-code {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(0, 119, 181, 0.5);
    border-radius: var(--border-radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: all var(--transition-fast);
}

.coupon-business .coupon-code {
    border-color: rgba(245, 166, 35, 0.5);
    color: var(--secondary);
}

.coupon-banner:hover .coupon-code {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.coupon-note {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

/* Copied state animation */
.coupon-banner.copied {
    animation: coupon-copied 0.4s ease;
}

@keyframes coupon-copied {

    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-6px) scale(1.02);
    }
}

.coupon-banner.copied .coupon-code {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--accent);
    color: var(--accent);
}

.coupon-banner.copied .coupon-note::after {
    content: ' ✓ Copied!';
    color: var(--accent);
    font-weight: 700;
    font-style: normal;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 20px 30px;
    background: var(--glass);
    border: 1px solid var(--accent);
    border-radius: var(--border-radius);
}

.guarantee-icon {
    font-size: 40px;
}

.guarantee-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.guarantee-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Course Section ===== */
.course {
    background: var(--bg-darker);
}

.course-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-intro {
    text-align: center;
    margin-bottom: 50px;
}

.course-value {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.value-label {
    font-size: 14px;
    color: var(--text-muted);
}

.value-original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.value-free {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    padding: 4px 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--border-radius-sm);
}

.course-note {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.course-modules h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.module-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateX(5px);
}

.module-item.highlight,
.module-item.active {
    background: rgba(0, 119, 181, 0.1);
    border-color: var(--primary);
}

.module-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.module-item:hover .module-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.module-title {
    font-size: 14px;
    font-weight: 500;
}

/* ===== Activation Section ===== */
.activation-content {
    max-width: 800px;
    margin: 0 auto;
}

.activation-notice {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid var(--secondary);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.notice-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.notice-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.notice-points {
    margin: 16px 0;
}

.notice-points p {
    margin-bottom: 8px;
}

.notice-highlight {
    font-size: 16px !important;
    color: var(--accent) !important;
}

.activation-steps {
    margin-bottom: 40px;
}

.activation-steps h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.step-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.activation-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent);
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.result-icon {
    font-size: 24px;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-darker);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Career Premium CTA Button - Blue gradient with enhanced visibility */
.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #0088d1 0%, #00b8ff 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(0, 136, 209, 0.5), 0 0 0 2px rgba(0, 136, 209, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 136, 209, 0.6), 0 0 0 3px rgba(0, 184, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Business Premium CTA Button - Orange gradient with enhanced visibility */
.cta-buttons .btn-secondary {
    background: linear-gradient(135deg, rgb(255, 176, 45) 0%, rgb(255, 204, 117) 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(255, 176, 45, 0.5), 0 0 0 2px rgba(255, 176, 45, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 176, 45, 0.6), 0 0 0 3px rgba(255, 204, 117, 0.4);
    background: linear-gradient(135deg, rgb(255, 176, 45) 0%, rgb(255, 204, 117) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Sticky CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 999;
    transition: bottom var(--transition-base);
    display: none;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: #0F172A;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 20px;
        font-size: 18px;
        color: var(--text-primary);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Hide CTA on mobile */
    .nav-cta {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .nav-toggle {
        display: flex;
        z-index: 100;
    }

    .logo-image {
        height: 32px;
        max-width: 140px;
    }

    .nav-logo {
        z-index: 101;
    }

    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-scroll {
        display: none;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile-optimized Pricing Cards */
    .pricing-card {
        border-radius: var(--border-radius);
    }

    .pricing-card-header {
        padding: 24px 20px 12px;
    }

    .pricing-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .pricing-card-header h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .pricing-desc {
        font-size: 13px;
    }

    .pricing-body {
        padding: 12px 20px 24px;
    }

    .pricing-amount {
        margin-bottom: 8px;
    }

    .currency {
        font-size: 18px;
    }

    .price {
        font-size: 40px;
    }

    .period {
        font-size: 12px;
    }

    .pricing-duration {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 16px;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-features li {
        padding: 6px 0;
        font-size: 13px;
        gap: 8px;
    }

    .pricing-features li.bonus {
        margin: 8px -12px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .pricing-card .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .popular-badge {
        top: 14px;
        right: -38px;
        padding: 6px 45px;
        font-size: 10px;
    }

    .pricing-guarantee {
        padding: 16px 20px;
        margin-top: 30px;
    }

    .guarantee-icon {
        font-size: 32px;
    }

    .guarantee-content h4 {
        font-size: 14px;
    }

    .guarantee-content p {
        font-size: 12px;
    }

    .activation-notice {
        flex-direction: column;
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        grid-column: auto;
    }

    .sticky-cta {
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    body {
        padding-bottom: 80px;
        /* Space for sticky CTA */
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .module-item {
        padding: 12px 16px;
    }

    .module-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===== Happy Customers Section ===== */
.happy-customers {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.happy-customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.customer-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(245, 166, 35, 0.1));
    padding: 3px;
    transition: all var(--transition-base);
}

.customer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.customer-card:hover::before {
    opacity: 1;
}

.customer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 119, 181, 0.15),
        0 0 30px rgba(0, 119, 181, 0.1);
}

.customer-image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--bg-card);
}

.customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.customer-card:hover .customer-image {
    transform: scale(1.08);
}

.customer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.customer-card:hover .customer-overlay {
    opacity: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.customer-card:hover .verified-badge {
    transform: translateY(0);
}

/* Trust Items Below Grid */
.customers-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.trust-item:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.1);
}

.trust-icon {
    font-size: 24px;
}

.trust-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Happy Customers Responsive Styles */
@media (max-width: 992px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .customers-trust {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .customer-card {
        border-radius: var(--border-radius-sm);
    }

    .customer-image-wrapper {
        border-radius: calc(var(--border-radius-sm) - 3px);
    }

    .customer-overlay {
        opacity: 1;
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0) 40%);
    }

    .verified-badge {
        transform: translateY(0);
        padding: 6px 12px;
        font-size: 10px;
    }

    .customers-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .trust-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }

    .trust-icon {
        font-size: 20px;
    }

    .trust-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .customer-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .verified-badge {
        padding: 5px 10px;
        font-size: 9px;
    }
}