/* Reset and Base Styles */
:root {
    --primary-color: #25D366;
    --secondary-color: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #25D366;
    text-decoration: none;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #25D366;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-primary:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-secondary {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
}

.btn-secondary:hover {
    background: #25D366;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card.clickable {
    cursor: pointer;
}

.feature-card.clickable:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-card.clickable:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: #25D366;
    font-size: 1.2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #25D366;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Detailed Features */
.detailed-features {
    padding: 80px 0;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse > * {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.feature-content p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.feature-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.feature-grid-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #25D366;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Compact Pricing Grid */
.pricing-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid-compact {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #25D366;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Compact Pricing Card */
.pricing-card-compact {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    height: fit-content;
}

.pricing-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card-compact.featured {
    border: 3px solid #25D366;
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.2);
}

.pricing-card-compact.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.plan-header p {
    color: #666;
    font-size: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #25D366;
}

.annual-price {
    display: none;
}

.period {
    font-size: 1rem;
    color: #666;
}

/* Feature Categories */
.plan-features {
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #25D366;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.feature-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-category li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-category i.fas {
    color: #25D366;
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.feature-category i.fa-times {
    color: #dc3545;
}

.plan-footer {
    text-align: center;
}

/* Compact Plan Features */
.plan-features-compact {
    margin-bottom: 1.5rem;
}

.plan-features-compact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-features-compact li {
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.plan-features-compact i.fas {
    color: #25D366;
    font-size: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.plan-features-compact i.fa-times {
    color: #dc3545;
}

.pricing-card-compact .plan-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.pricing-card-compact .plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pricing-card-compact .plan-header p {
    font-size: 0.9rem;
}

.pricing-card-compact .price {
    margin-bottom: 0.75rem;
}

.pricing-card-compact .currency {
    font-size: 1.2rem;
}

.pricing-card-compact .amount {
    font-size: 2.5rem;
}

.pricing-card-compact .period {
    font-size: 0.9rem;
}

/* Feature Comparison Table */
.feature-comparison {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    position: sticky;
    top: 0;
}

.comparison-table th:first-child {
    text-align: left;
    font-weight: 700;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #333;
}

.comparison-table td {
    color: #666;
}

.comparison-table .text-green {
    color: #25D366;
}

.comparison-table .text-red {
    color: #dc3545;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* Responsive pricing styles */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .feature-comparison {
        padding: 2rem 1rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    padding: 80px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.member-title {
    color: #25D366;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #25D366;
    border-color: white;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #25D366;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #25D366;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-section,
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-section.reverse,
    .about-section.reverse {
        direction: ltr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features,
    .detailed-features,
    .about-content,
    .values,
    .team,
    .contact {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Advanced Features Styles */
.feature-highlights {
    margin: 2rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.highlight-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.use-cases {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.use-cases h4 {
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.use-cases ul {
    list-style: none;
    padding: 0;
}

.use-cases li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.use-cases li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.code-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #1e293b;
    border-radius: 8px;
    color: #e2e8f0;
}

.code-example h4 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.code-example pre {
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hierarchy-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.hierarchy-example h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.hierarchy-tree {
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.tree-item {
    color: #374151;
    margin-bottom: 0.2rem;
}

.tree-item.level-2 {
    padding-left: 1rem;
}

.tree-item.level-3 {
    padding-left: 2rem;
}

.tree-item.level-4 {
    padding-left: 3rem;
}

.performance-stats {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ecfdf5;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.performance-stats h4 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.performance-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.performance-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.performance-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
}

.performance-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.interactive-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.interactive-example h4 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.whatsapp-message {
    background: #dcf8c6;
    border-radius: 8px;
    padding: 1rem;
    max-width: 300px;
    margin: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.message-content p {
    margin: 0 0 0.5rem 0;
    color: #374151;
}

.interactive-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.wa-button {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.wa-button:hover {
    background: #f3f4f6;
    border-color: var(--primary-color);
}

/* Industry Templates */
.industry-templates {
    padding: 4rem 0;
    background: #f8f9fa;
}

.industry-templates h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.industry-templates p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.template-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.template-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.template-icon i {
    font-size: 1.5rem;
    color: white;
}

.template-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.template-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: left;
}

.template-card ul {
    list-style: none;
    padding: 0;
}

.template-card li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.template-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Technical Specifications */
.tech-specs {
    padding: 4rem 0;
    background: #1f2937;
    color: white;
}

.tech-specs h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: #374151;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.spec-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.spec-category li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Additional Responsive Design for Advanced Features */
@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-message {
        max-width: 100%;
    }
    
    .code-example {
        padding: 1rem;
    }
    
    .code-example code {
        font-size: 0.8rem;
    }
}
/* Features CTA */
.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.features-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
/* Tech Highlights */
.tech-highlights {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tech-highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.tech-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.tech-highlights .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.tech-highlights .stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}
/* Text Buttons Styling */
.text-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.text-button {
    background: #f0f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #374151;
    font-family: monospace;
}

/* Contact Form Enhancements */
.char-counter {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
    text-align: right;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    margin-right: 0.5rem;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: #25D366;
}

.notification-error {
    background: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Form validation states */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

/* Contact info click-to-copy styling */
.contact-details p {
    transition: background-color 0.2s ease;
    padding: 0.25rem;
    border-radius: 4px;
    margin: 0.25rem 0;
}

.contact-details p:hover {
    background-color: rgba(37, 211, 102, 0.1);
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #fff;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    border-left: 4px solid var(--primary-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    color: #444;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    color: #555;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    color: #666;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-section li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.legal-section li:before {
    content: "•";
    position: absolute;
    left: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section .contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.legal-section .contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-section .contact-info p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-section a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-section a[target="_blank"]:after {
    content: " ↗";
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-document {
        padding: 0 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section li {
        padding-left: 1.5rem;
    }
    
    .legal-section li:before {
        left: 0.5rem;
    }
}

/* Mobile responsiveness for contact form */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .char-counter {
        font-size: 0.75rem;
    }
}
/* Support Pages Styles */

/* Help Center Styles */
.help-center {
    padding: 80px 0;
    background: #fff;
}

.help-search {
    text-align: center;
    margin-bottom: 4rem;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-links {
    margin-bottom: 4rem;
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-link-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.quick-link-card p {
    color: #666;
    margin: 0;
}
/* FAQ Categories */
.faq-categories {
    margin-bottom: 4rem;
}

.faq-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category h3 i {
    font-size: 1.25rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer ol,
.faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
    font-size: 0.9rem;
}
/* Support Contact */
.support-contact {
    text-align: center;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.support-contact h2 {
    margin-bottom: 1rem;
    color: #333;
}

.support-contact p {
    margin-bottom: 2rem;
    color: #666;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.support-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-option h3 {
    margin-bottom: 1rem;
    color: #333;
}

.support-option p {
    margin-bottom: 1rem;
    color: #666;
}

.support-option span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Documentation Styles */
.documentation {
    padding: 80px 0;
    background: #fff;
}

.doc-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.doc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.doc-nav h3 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.doc-nav h3:first-child {
    margin-top: 0;
}

.doc-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.doc-nav li {
    margin-bottom: 0.5rem;
}

.doc-nav a {
    display: block;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.doc-nav a:hover,
.doc-nav a.active {
    background: var(--primary-color);
    color: white;
}

.doc-content {
    max-width: none;
}

.doc-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.doc-section:last-child {
    border-bottom: none;
}

.doc-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.doc-section h3 {
    color: #444;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.doc-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/* Documentation Steps */
.doc-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 1rem 0;
    color: #333;
}

.step-content p {
    margin-bottom: 1rem;
    color: #666;
}

.step-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.step-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
    color: #333;
    font-size: 0.9rem;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.requirement-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-item ul {
    list-style: none;
    padding: 0;
}

.requirement-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.requirement-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Component Grid */
.component-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.component-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.component-item:hover {
    transform: translateY(-5px);
}

.component-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.component-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.component-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}
/* Variable Table */
.variable-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.variable-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.variable-table th,
.variable-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.variable-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.variable-table td code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
    font-size: 0.9rem;
}

/* Community Styles */
.community {
    padding: 80px 0;
    background: #fff;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    margin: 0;
}

.community-platforms {
    margin-bottom: 4rem;
}

.community-platforms h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.community-platforms p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.platform-icon.discord {
    background: #5865F2;
}

.platform-icon.reddit {
    background: #FF4500;
}

.platform-icon.telegram {
    background: #0088cc;
}

.platform-icon.github {
    background: #333;
}

.platform-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.platform-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.platform-stats span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-stats i {
    color: var(--primary-color);
}
/* Community Guidelines */
.community-guidelines {
    margin-bottom: 4rem;
}

.community-guidelines h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.community-guidelines p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-5px);
}

.guideline-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guideline-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.guideline-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Popular Topics */
.popular-topics {
    margin-bottom: 4rem;
}

.popular-topics h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.topic-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.topic-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.topic-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Community Events */
.community-events {
    margin-bottom: 4rem;
}

.community-events h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
}

.event-date {
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.event-details p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta i {
    color: var(--primary-color);
}
/* Community Resources */
.community-resources {
    margin-bottom: 4rem;
}

.community-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 1rem;
}

/* Get Involved */
.get-involved {
    text-align: center;
}

.get-involved h2 {
    margin-bottom: 1rem;
    color: #333;
}

.get-involved p {
    color: #666;
    margin-bottom: 3rem;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.involvement-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.involvement-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.involvement-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.involvement-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Status Page Styles */
.status-page {
    padding: 80px 0;
    background: #fff;
}

.overall-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #28a745;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator i {
    font-size: 3rem;
    color: #28a745;
}

.status-text h2 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.status-text p {
    margin: 0;
    color: #666;
}

.uptime-stats {
    display: flex;
    gap: 2rem;
}

.uptime-item {
    text-align: center;
}

.uptime-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
}

.uptime-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Services Status */
.services-status {
    margin-bottom: 4rem;
}

.services-status h2 {
    margin-bottom: 2rem;
    color: #333;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.service-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.service-status.operational {
    color: #28a745;
}

.service-status.degraded {
    color: #ffc107;
}

.service-status.partial {
    color: #fd7e14;
}

.service-status.major {
    color: #dc3545;
}

.service-status.maintenance {
    color: #6f42c1;
}

.service-status i {
    font-size: 0.8rem;
}
/* Performance Metrics */
.performance-metrics {
    margin-bottom: 4rem;
}

.performance-metrics h2 {
    margin-bottom: 2rem;
    color: #333;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.metric-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.metric-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-value .value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.trend.up {
    color: #28a745;
}

.trend.down {
    color: #dc3545;
}

.trend.stable {
    color: #6c757d;
}

.metric-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Incident History */
.incident-history {
    margin-bottom: 4rem;
}

.incident-history h2 {
    margin-bottom: 2rem;
    color: #333;
}

.incidents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.incident-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.incident-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.incident-status i {
    font-size: 1.5rem;
}

.incident-status span {
    font-size: 0.8rem;
    font-weight: 600;
}

.incident-item.resolved .incident-status i,
.incident-item.resolved .incident-status span {
    color: #28a745;
}

.incident-details h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.incident-details p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.incident-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.incident-meta span {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.incident-meta i {
    color: var(--primary-color);
}

/* Maintenance Schedule */
.maintenance-schedule {
    margin-bottom: 4rem;
}

.maintenance-schedule h2 {
    margin-bottom: 2rem;
    color: #333;
}

.maintenance-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maintenance-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    align-items: center;
}

.maintenance-date {
    text-align: center;
    background: #6f42c1;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
}

.maintenance-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.maintenance-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.maintenance-details {
    flex: 1;
}

.maintenance-details h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.maintenance-details p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.maintenance-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.maintenance-meta span {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maintenance-meta i {
    color: #6f42c1;
}
/* Status Subscriptions */
.status-subscriptions {
    margin-bottom: 4rem;
}

.status-subscriptions h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.status-subscriptions p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.subscription-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.subscription-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.subscription-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subscription-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.subscription-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subscription-form {
    display: flex;
    gap: 0.5rem;
}

.subscription-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.subscription-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscription-form button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Status Legend */
.status-legend {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.status-legend h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-item i {
    font-size: 1rem;
}

.legend-item i.operational {
    color: #28a745;
}

.legend-item i.degraded {
    color: #ffc107;
}

.legend-item i.partial {
    color: #fd7e14;
}

.legend-item i.major {
    color: #dc3545;
}

.legend-item i.maintenance {
    color: #6f42c1;
}

.legend-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Support Pages */
@media (max-width: 768px) {
    .doc-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .doc-sidebar {
        position: static;
        order: 2;
    }
    
    .quick-links-grid,
    .platforms-grid,
    .guidelines-grid,
    .topics-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card,
    .maintenance-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .overall-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .uptime-stats {
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .legend-items {
        gap: 0.75rem;
    }
    
    .incident-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .metric-value {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .help-center,
    .documentation,
    .community,
    .status-page {
        padding: 60px 0;
    }
    
    .search-container input {
        font-size: 1rem;
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .platform-stats,
    .event-meta,
    .incident-meta,
    .maintenance-meta {
        justify-content: center;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}
/* Careers Page Styles */
.careers {
    padding: 80px 0;
    background: #fff;
}

.why-work-section {
    margin-bottom: 5rem;
    text-align: center;
}

.why-work-section h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.why-work-section p {
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.open-positions {
    margin-bottom: 5rem;
}

.open-positions h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.open-positions > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.position-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.position-header {
    margin-bottom: 1.5rem;
}

.position-header h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.position-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.position-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.position-meta i {
    color: var(--primary-color);
}

.position-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.requirements h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.requirements li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.application-process {
    margin-bottom: 5rem;
}

.application-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.company-culture {
    margin-bottom: 5rem;
}

.company-culture h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.culture-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.careers-contact {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.careers-contact h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 2rem;
}

.careers-contact p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design for Careers Page */
@media (max-width: 768px) {
    .careers {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .why-work-section h2,
    .open-positions h2,
    .application-process h2,
    .company-culture h2 {
        font-size: 2rem;
    }
    
    .careers-contact h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .benefit-card,
    .position-card,
    .step,
    .culture-item {
        padding: 1.5rem;
    }
    
    .careers-contact {
        padding: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
/* PayPal Button Styles */
.paypal-button-container {
    margin-top: 1rem;
    min-height: 45px;
}

.paypal-button-container .paypal-buttons {
    border-radius: 8px;
    overflow: hidden;
}

/* Ensure PayPal buttons match the card styling */
.pricing-card-compact .paypal-button-container {
    width: 100%;
}

/* Loading state for PayPal buttons */
.paypal-button-container:empty::after {
    content: "Loading payment options...";
    display: block;
    text-align: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}