/* ===================================
   RESET & VARIABLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00B8EF;
    --violet: #9B4FFF;
    --pink: #FF3FCC;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --gradient-main: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--pink) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================
   NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--violet);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.mobile-menu-link {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-link:hover {
    background: var(--gray-50);
    color: var(--violet);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 65px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--violet);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    bottom: -80px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -40px); }
    66% { transform: translate(-40px, 40px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(155, 79, 255, 0.2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    color: var(--violet);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 7vw, 58px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title-secondary {
    color: var(--gray-900);
}

.hero-value-box {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(155, 79, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(155, 79, 255, 0.08);
}

.hero-value-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.hero-value-text strong {
    color: var(--gray-900);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-label {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 600;
}

.scroll-arrow {
    width: 2px;
    height: 24px;
    background: var(--gradient-main);
    margin: 8px auto 0;
    border-radius: 2px;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 36px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-main);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 16px 32px rgba(155, 79, 255, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(155, 79, 255, 0.35);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--violet);
    border: 2px solid var(--violet);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-secondary:hover {
    background: var(--violet);
    color: var(--white);
}

.cta-glow {
    height: 56px;
    font-size: 18px;
    box-shadow: 0 0 60px rgba(155, 79, 255, 0.5);
}

.cta-large {
    height: 56px;
    font-size: 18px;
}

.cta-icon {
    font-size: 20px;
}

.cta-icon-large {
    font-size: 24px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-description {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   SOCIAL PROOF
   =================================== */
.social-proof {
    padding: 32px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.social-proof-content {
    text-align: center;
}

.social-proof-text {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-badge {
    padding: 6px 16px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.platform-badge:hover {
    border-color: var(--violet);
    transform: translateY(-2px);
}

/* ===================================
   VIDEO PREVIEW
   =================================== */
.video-preview {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(155, 79, 255, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--gray-900);
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-title {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--gray-50);
}

.stat-item {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

.transition-text {
    max-width: 700px;
    margin: 48px auto 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(0, 184, 239, 0.08) 0%, rgba(155, 79, 255, 0.08) 100%);
    border-left: 4px solid var(--violet);
    border-radius: 12px;
    text-align: center;
}

.transition-text p {
    font-size: 17px;
    color: var(--gray-700);
    margin: 0;
}

.highlight-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.step-card {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 40px 28px 32px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--violet);
    box-shadow: 0 16px 48px rgba(155, 79, 255, 0.18);
}

.step-highlight {
    background: linear-gradient(135deg, rgba(155, 79, 255, 0.05) 0%, rgba(0, 184, 239, 0.05) 100%);
    border-color: var(--violet);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(155, 79, 255, 0.35);
}

.step-arrow {
    font-size: 36px;
    color: var(--violet);
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon {
    font-size: 56px;
    margin: 12px 0 20px;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.how-it-works-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
}

.feature-icon {
    color: var(--violet);
    font-weight: 700;
}

/* ===================================
   FEATURES
   =================================== */
.features {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    padding: 32px 24px;
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--violet);
    box-shadow: 0 16px 48px rgba(155, 79, 255, 0.15);
}

.feature-card.featured {
    background: var(--gradient-main);
    color: var(--white);
    border: none;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-icon {
    font-size: 46px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 5px 0;
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   BENEFITS
   =================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.benefit-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    background: var(--gray-50);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 16px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 24px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    background: var(--gradient-main);
    color: var(--white);
}

.final-cta-content {
    text-align: center;
    padding: 48px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}

.final-cta-description {
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 28px;
    opacity: 0.95;
}

.final-cta-guarantee {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
}

.footer-description {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 14px;
    margin-top: 14px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-keywords {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--white);
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(155, 79, 255, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(155, 79, 255, 0.5);
}

/* ===================================
   BLOG PAGES
   =================================== */
.blog-hero {
    padding-top: 120px;
    padding-bottom: 48px;
    background: var(--gradient-main);
    color: var(--white);
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(32px, 6vw, 46px);
    font-weight: 900;
    margin-bottom: 12px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(155, 79, 255, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-900);
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--violet);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s;
    font-size: 14px;
}

.read-more-btn:hover {
    gap: 10px;
}

.blog-cta {
    margin-top: 48px;
    padding: 48px 32px;
    background: var(--gradient-main);
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

/* ===================================
   ARTICLE PAGES
   =================================== */
.article-header {
    padding-top: 120px;
    padding-bottom: 48px;
    background: var(--gradient-main);
    color: var(--white);
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-excerpt {
    font-size: clamp(15px, 2vw, 18px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    padding: 60px 0;
}

.article-content .container {
    max-width: 800px;
}

.article-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.article-content h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.article-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.article-highlight {
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 184, 239, 0.08) 0%, rgba(155, 79, 255, 0.08) 100%);
    border-left: 4px solid var(--violet);
    border-radius: 8px;
    margin: 32px 0;
}

.article-highlight p {
    margin-bottom: 0;
    font-size: 15px;
}

.article-cta-box {
    padding: 36px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    margin: 48px 0;
}

.article-cta-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: var(--white);
}

.article-cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.back-link {
    display: inline-block;
    color: var(--violet);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    font-size: 14px;
}

.back-link:hover {
    color: var(--pink);
}

/* ===================================
   DOWNLOAD PAGE
   =================================== */
.download-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 48px;
    background: var(--gradient-main);
}

.download-card {
    max-width: 650px;
    margin: 32px 20px;
    padding: 48px 40px;
    background: var(--white);
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.download-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 14px;
}

.download-description {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.5;
}

.download-btn {
    display: inline-block;
    padding: 0 40px;
    height: 50px;
    line-height: 50px;
    background: var(--gradient-main);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 16px 32px rgba(155, 79, 255, 0.3);
    transition: all 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(155, 79, 255, 0.4);
}

.download-note {
    margin-top: 32px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 14px;
    text-align: left;
}

.download-note strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.download-note p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .steps-container {
        flex-direction: column;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (< 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-value-box {
        padding: 20px 24px;
        font-size: 14px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .cta-button {
        width: 100%;
    }

    .trust-indicators {
        gap: 32px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .transition-text {
        padding: 20px 24px;
        font-size: 15px;
    }

    .step-card {
        min-width: 100%;
        padding: 36px 24px 28px;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-content {
        padding: 44px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 48px 0;
    }

    .download-card {
        padding: 36px 28px;
    }

    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 24px;
        right: 24px;
    }
}

/* Small Mobile (< 575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 26px;
    }

    .cta-button {
        height: 46px;
        padding: 0 28px;
        font-size: 14px;
    }

    .trust-number {
        font-size: 24px;
    }

    .video-grid {
        gap: 12px;
    }

    .step-icon {
        font-size: 44px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .feature-icon {
        font-size: 40px;
    }
}

/* ===================================
   ARTICLE CTA BUTTON VISIBILITY FIX
   =================================== */
.article-cta-box {
    position: relative;
    padding: 36px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 20px;
    text-align: center;
    margin: 48px 0;
}

.article-cta-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: var(--white);
}

.article-cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.95;
}

.article-cta-box .cta-button,
.article-cta-box a.cta-button {
    background: white !important;
    color: #9B4FFF !important;
    border: 3px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
                0 0 0 1px rgba(155, 79, 255, 0.1) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    height: 52px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.article-cta-box .cta-button:hover,
.article-cta-box a.cta-button:hover {
    background: #f8f8f8 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(155, 79, 255, 0.2) !important;
}


/* ===================================
   CLICKABLE HIGHLIGHT TEXT
   =================================== */
.highlight-text-link {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
    position: relative;
}

.highlight-text-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.highlight-text-link::after {
    content: ' ↓';
    -webkit-text-fill-color: #9B4FFF;
    font-weight: 900;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}


/* ===================================
   SOCIAL PROOF ICONS
   =================================== */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.platform-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.platform-badge:hover {
    border-color: var(--violet);
    transform: translateY(-2px);
}

.platform-badge:hover .platform-icon {
    color: var(--violet);
}

/* Specific icon colors on hover */
.platform-badge:nth-child(1):hover .platform-icon {
    color: #000000; /* TikTok */
}

.platform-badge:nth-child(2):hover .platform-icon {
    color: #E4405F; /* Instagram */
}

.platform-badge:nth-child(3):hover .platform-icon {
    color: #FF0000; /* YouTube */
}

.platform-badge:nth-child(4):hover .platform-icon {
    color: #E60023; /* Pinterest */
}