/* Root Variables */
:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --accent-pink: #f472b6;
    --accent-purple: #8b5cf6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #faf5ff;
    --bg-pink: #fdf2f8;
    --bg-purple: #f5f3ff;
    --bg-gradient: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #f5f3ff 100%);
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}

.top-banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.banner-btn {
    background: #22c55e;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.banner-btn:hover {
    background: #16a34a;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active {
    background: var(--bg-purple);
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
}

.dropdown-content a:hover {
    background: var(--bg-purple);
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background: #374151;
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.hero-features li i {
    color: var(--primary-color);
    background: var(--bg-purple);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.badge img {
    height: 30px;
}

.badge .stars {
    color: #fbbf24;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.video-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-btn i {
    color: var(--primary-color);
}

/* Platform Icons */
.platforms-icons {
    padding: 50px 0;
    background: var(--white);
}

.icons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 13px;
}

.platform-icon i {
    font-size: 28px;
    color: var(--text-gray);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Social Channels */
.social-channels {
    padding: 80px 0 40px;
    background: var(--white);
}

/* Feature Section */
.feature-section {
    padding: 60px 0;
    background: var(--white);
}

.feature-section.chat-section {
    background: var(--bg-pink);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-reverse .feature-content {
    direction: rtl;
}

.feature-reverse .feature-text {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: var(--bg-purple);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 15px;
}

.feature-list li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.feature-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background: var(--white);
}

.platforms-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.platforms-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.platforms-header .highlight {
    color: var(--primary-color);
}

.platforms-header p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover {
    gap: 12px;
}

.platforms-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-gray);
    transition: var(--transition);
}

.logo-item:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Influential Section */
.influential-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.influential-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.influential-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.influential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--bg-purple);
    color: var(--primary-color);
}

.influential-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.influential-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.card-link {
    color: var(--primary-color);
    font-size: 20px;
}

/* Marketing Journey */
.marketing-journey {
    padding: 60px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.journey-text p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.journey-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.journey-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.journey-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.icon-grid i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Maximize Section */
.maximize-section {
    padding: 80px 0;
    background: var(--white);
}

.maximize-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.accordion-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.maximize-stats img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.steps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

.steps-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Favorite Section */
.favorite-section {
    padding: 80px 0;
    background: var(--white);
}

.favorite-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.favorite-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.favorite-card:hover {
    box-shadow: var(--shadow-lg);
}

.favorite-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.card-icon.purple {
    background: var(--bg-purple);
    color: var(--primary-color);
}

.card-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.card-icon.pink {
    background: var(--bg-pink);
    color: var(--secondary-color);
}

.card-icon.orange {
    background: #fef3c7;
    color: #f59e0b;
}

.card-icon.red {
    background: #fee2e2;
    color: #ef4444;
}

.card-icon.green {
    background: #d1fae5;
    color: #10b981;
}

.favorite-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.favorite-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.favorite-card .card-link {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.favorite-card .card-link:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 15px;
    margin-bottom: 3px;
}

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

.author-info .stars {
    color: #fbbf24;
    font-size: 12px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price .original {
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.price-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price-main span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.pricing-features {
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.pricing-features li i {
    color: var(--primary-color);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
}

.pricing-platforms {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-platforms > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.platforms-grid-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.platform-item i {
    font-size: 18px;
}

.features-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-column h5 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.feature-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.feature-column ul li i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Industry Section */
.industry-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.industry-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.industry-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quote-icon {
    color: var(--primary-light);
    font-size: 30px;
    margin-bottom: 20px;
}

.industry-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.industry-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.industry-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.brands-section {
    text-align: center;
}

.brands-section > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brands-logos span {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question span {
    color: var(--primary-color);
    font-weight: 700;
}

.faq-question h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 35px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-images img {
    border-radius: var(--radius-lg);
}

/* Footer */
.footer {
    background: #1e1b4b;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 100%;
    overflow: hidden;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

.newsletter h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 10px;
    max-width: 100%;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.newsletter-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h5 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--white);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus Visible Styles */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary-color, #6C63FF);
    outline-offset: 2px;
}

/* Mobile Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ==========================================
   NEW PAGES STYLES
   ========================================== */

/* Page Hero Section */
.page-hero {
    background: var(--bg-gradient);
    padding: 80px 0;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--bg-purple);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Story */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--bg-gradient);
}

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

.mv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* About Stats */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

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

.team-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card span {
    color: var(--text-gray);
    font-size: 14px;
}

.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Why Choose */
.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.choose-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choose-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Partners */
.partners-section {
    padding: 60px 0;
    background: var(--white);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partners-logos span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-weight: 400;
    color: var(--text-gray);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.method-details p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.method-details a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.quick-link:hover {
    box-shadow: var(--shadow);
}

.quick-link i {
    color: var(--primary-color);
}

/* Social Card */
.social-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    gap: 12px;
}

.social-link-item {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-gray);
    transition: var(--transition);
}

.social-link-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.map-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--text-gray);
}

/* Contact FAQ */
.contact-faq {
    background: var(--white);
}

/* ==========================================
   FEATURES PAGE STYLES
   ========================================== */

.feature-categories {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: var(--bg-light);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Features Detail Section */
.features-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.features-detail-section.bg-light {
    background: var(--bg-light);
}

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

.feature-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.features-detail-section.bg-light .feature-detail-card {
    box-shadow: var(--shadow);
    border: none;
}

.feature-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-detail-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-purple);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-detail-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-detail-card > p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-points li {
    color: var(--text-gray);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.feature-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Customization Section */
.customization-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

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

.custom-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.custom-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.custom-card p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--text-dark);
    color: var(--white);
    font-weight: 600;
}

.comparison-header > div {
    padding: 20px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-us {
    background: var(--bg-purple);
}

.comp-us i {
    color: #10b981;
}

.comp-others i {
    color: #ef4444;
}

/* ==========================================
   DOCUMENTATION PAGE STYLES
   ========================================== */

.doc-hero .doc-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.doc-search input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
}

.doc-search button {
    padding: 15px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.doc-search button:hover {
    background: var(--primary-dark);
}

/* Quick Start */
.quick-start-section {
    padding: 80px 0;
    background: var(--white);
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-card {
    text-align: center;
    padding: 30px 20px;
}

.quick-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.quick-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.quick-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Doc Categories */
.doc-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.doc-category-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.doc-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.doc-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-purple);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.doc-category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.doc-category-card > p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.doc-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.doc-links li a {
    color: var(--text-gray);
    font-size: 14px;
    transition: var(--transition);
}

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

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Video Tutorials */
.video-tutorials {
    padding: 80px 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
}

.video-card h4 {
    padding: 15px 15px 5px;
    font-size: 15px;
}

.video-card p {
    padding: 0 15px 15px;
    color: var(--text-gray);
    font-size: 13px;
}

.video-cta {
    text-align: center;
}

/* Popular Articles */
.popular-articles {
    padding: 80px 0;
    background: var(--bg-light);
}

.articles-list {
    max-width: 800px;
    margin: 0 auto;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.article-item:hover {
    box-shadow: var(--shadow);
}

.article-item > i {
    font-size: 24px;
    color: var(--primary-color);
}

.article-content {
    flex: 1;
}

.article-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.article-content span {
    color: var(--text-light);
    font-size: 13px;
}

.article-item > i:last-child {
    color: var(--text-light);
}

/* Need Help Section */
.need-help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.help-text p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.help-buttons {
    display: flex;
    gap: 15px;
}

.help-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.help-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.help-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.help-card i {
    font-size: 30px;
    margin-bottom: 15px;
}

.help-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.help-card p {
    font-size: 13px;
    opacity: 0.8;
}

/* ==========================================
   BLOG PAGE STYLES
   ========================================== */

.blog-categories {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Featured Post */
.featured-post {
    padding: 60px 0;
    background: var(--bg-light);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.featured-content {
    padding: 40px 40px 40px 0;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-meta .category {
    background: var(--bg-purple);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.post-meta .date,
.post-meta .read-time {
    color: var(--text-gray);
    font-size: 13px;
}

.featured-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.featured-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Blog Grid */
.blog-grid-section {
    padding: 60px 0;
    background: var(--white);
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-content .post-meta {
    margin-bottom: 10px;
}

.blog-content .post-meta span {
    font-size: 12px;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.search-box {
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    padding: 12px 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 14px;
}

.category-list li a:hover {
    color: var(--primary-color);
}

.category-list li a span {
    color: var(--text-light);
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.popular-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Newsletter Widget */
.newsletter-widget p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.sidebar-newsletter .btn {
    justify-content: center;
}

/* Tags */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 15px;
    background: var(--white);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ==========================================
   DEMO PAGE STYLES
   ========================================== */

.demo-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: var(--white);
}

.demo-hero .page-badge {
    background: rgba(255, 255, 255, 0.2);
}

.demo-hero h1,
.demo-hero p {
    color: var(--white);
}

.demo-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.demo-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.demo-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
}

/* Demo Categories */
.demo-categories {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.demo-tab {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.demo-tab:hover,
.demo-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Demo Section */
.demo-section {
    padding: 60px 0;
    background: var(--white);
}

.demo-section.bg-light {
    background: var(--bg-light);
}

/* Demo Block */
.demo-block {
    margin-bottom: 60px;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-title i {
    font-size: 30px;
    color: var(--primary-color);
}

.demo-title h3 {
    font-size: 24px;
}

.demo-layouts {
    display: flex;
    gap: 10px;
}

.layout-btn {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.layout-btn:hover,
.layout-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Demo Preview */
.demo-preview {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
}

/* Instagram Feed Demo */
.instagram-feed-demo .feed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.feed-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.feed-overlay span {
    color: var(--white);
    font-size: 14px;
}

.feed-follow-btn {
    text-align: center;
}

.feed-follow-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
}

/* Facebook Feed Demo */
.facebook-feed-demo {
    max-width: 600px;
    margin: 0 auto;
}

.fb-post {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
}

.fb-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.fb-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.fb-page-info h4 {
    font-size: 16px;
}

.fb-page-info span {
    font-size: 12px;
    color: var(--text-light);
}

.fb-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.fb-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.fb-actions {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.fb-actions span {
    font-size: 14px;
    color: var(--text-gray);
}

/* YouTube Feed Demo */
.youtube-feed-demo .yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yt-video {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.yt-thumbnail {
    position: relative;
}

.yt-thumbnail img {
    width: 100%;
    display: block;
}

.yt-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.yt-info {
    padding: 15px;
}

.yt-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.yt-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Reviews Demo */
.reviews-demo {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-header-demo {
    text-align: center;
    margin-bottom: 30px;
}

.rating-big {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
}

.rating-stars {
    font-size: 24px;
    color: #fbbf24;
}

.rating-count {
    color: var(--text-gray);
    font-size: 14px;
}

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

.review-card-demo {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-info h5 {
    font-size: 15px;
}

.review-stars {
    color: #fbbf24;
    font-size: 12px;
}

.review-card-demo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    color: var(--text-light);
    font-size: 12px;
}

/* Chat Demo */
.chat-preview {
    padding: 40px;
}

.chat-demo-area {
    text-align: center;
}

.chat-demo-area > p {
    margin-bottom: 30px;
    color: var(--text-gray);
}

.demo-page-mock {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
}

.mock-header {
    background: var(--text-dark);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

.mock-content {
    padding: 60px;
}

.mock-hero h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.mock-hero p {
    color: var(--text-gray);
}

.chat-widgets-demo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.chat-bubble {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.9);
}

.chat-bubble:hover {
    transform: scale(1);
}

.chat-bubble.whatsapp {
    background: #25d366;
}

.chat-bubble.messenger {
    background: #0084ff;
}

.chat-bubble.telegram {
    background: #0088cc;
}

.chat-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

/* Admin Demo Section */
.admin-demo-section {
    padding: 80px 0;
    background: var(--bg-gradient);
}

.admin-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.admin-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.admin-text > p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.admin-features {
    margin-bottom: 30px;
}

.admin-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.admin-features li i {
    color: var(--primary-color);
}

.admin-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ========================================== */

@media (max-width: 1024px) {
    .story-content,
    .contact-grid,
    .admin-demo-content,
    .help-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid,
    .choose-grid,
    .team-grid,
    .quick-start-grid,
    .doc-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .reviews-grid-demo {
        grid-template-columns: 1fr;
    }
    
    .help-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .instagram-grid, .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .mv-grid,
    .choose-grid,
    .team-grid,
    .quick-start-grid,
    .doc-grid,
    .video-grid,
    .customization-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .instagram-feed-demo .feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .youtube-feed-demo .yt-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .comparison-table-wrapper, .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .help-cards {
        grid-template-columns: 1fr;
    }
    
    .demo-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 26px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .category-tabs,
    .demo-tabs,
    .category-filter {
        gap: 10px;
    }
    
    .category-tab,
    .demo-tab,
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .instagram-feed-demo .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .demo-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-reverse .feature-content {
        direction: ltr;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .maximize-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .industry-testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        padding-top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
        display: none;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .icons-grid {
        gap: 20px;
    }
    
    .platform-icon {
        flex: 0 0 calc(25% - 15px);
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .feature-text h3 {
        font-size: 24px;
    }
    
    .influential-cards {
        grid-template-columns: 1fr;
    }
    
    .favorite-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .features-comparison {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .platforms-header h2 {
        font-size: 24px;
    }
    
    .journey-text h3 {
        font-size: 24px;
    }
    
    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .chat-demo, .demo-preview {
        padding: 15px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .platform-icon {
        flex: 0 0 calc(33.333% - 13px);
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .feature-text h3 {
        font-size: 20px;
    }
    
    .platforms-header h2 {
        font-size: 20px;
    }
    
    .price-main {
        font-size: 36px;
    }
    
    .brands-logos {
        gap: 20px;
    }
    
    .brands-logos span {
        font-size: 14px;
    }
    
    .icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .icon-grid i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        position: fixed;
        z-index: 999;
    }
    
    .top-banner {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .top-banner p {
        flex-direction: column;
        gap: 8px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .header {
        padding: 12px 0;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .feature-text h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .price-main {
        font-size: 30px;
    }
    
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
