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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: rgb(16, 16, 20);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 84px;
    padding: 0;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    text-decoration: none;
    color: #ffffff;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: rgb(20, 154, 251);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(20, 154, 251);
}

.navbar-nav .nav-link.active {
    color: rgb(20, 154, 251);
}

.navbar-nav .nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    color: #ffffff;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(20, 154, 251, 0.1);
    color: rgb(20, 154, 251);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-search {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-search:hover {
    color: rgb(20, 154, 251);
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-demo {
    background-color: transparent;
    color: rgb(20, 154, 251);
    border: 1px solid rgb(20, 154, 251);
}

.btn-demo:hover {
    background-color: rgb(20, 154, 251);
    color: #ffffff;
}

.btn-dashboard {
    background-color: rgb(20, 154, 251);
    color: #ffffff;
}

.btn-dashboard:hover {
    background-color: rgb(16, 130, 220);
}

.btn-primary {
    background-color: rgb(20, 154, 251);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: rgb(16, 130, 220);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    margin-bottom: 24px;
    color: #ffffff;
}

.accent-text {
    color: rgb(20, 154, 251);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-card {
    background: linear-gradient(135deg, rgba(20, 154, 251, 0.1), rgba(20, 154, 251, 0.05));
    border: 1px solid rgba(20, 154, 251, 0.3);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgb(20, 154, 251);
    font-weight: 600;
}

.card-header i {
    font-size: 24px;
}

.lead-stats {
    display: flex;
    gap: 24px;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: rgb(20, 154, 251);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trusted-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 16px;
}

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

.logo-item {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 24px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: rgba(20, 154, 251, 0.1);
    border-color: rgb(20, 154, 251);
    color: rgb(20, 154, 251);
}

.feature-content {
    margin-top: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-controls {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.control-group {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.control-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active,
.control-btn:hover {
    background-color: rgb(20, 154, 251);
    border-color: rgb(20, 154, 251);
}

.search-interface {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 24px;
}

.search-header {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.search-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 8px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-counter {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.filter-controls {
    margin-bottom: 20px;
}

.filter-btn {
    background: none;
    border: none;
    color: rgb(20, 154, 251);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.location-selector {
    margin-bottom: 24px;
}

.location-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
}

.btn-generate {
    width: 100%;
    background-color: rgb(20, 154, 251);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.explore-link {
    color: rgb(20, 154, 251);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.feature-preview {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.preview-header h4 {
    color: #ffffff;
    margin: 0;
}

.result-count {
    color: rgb(20, 154, 251);
    font-size: 14px;
}

.lead-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lead-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
}

.lead-info h5 {
    color: #ffffff;
    margin-bottom: 4px;
}

.lead-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.lead-score {
    color: rgb(20, 154, 251);
    font-size: 12px;
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    border-color: rgb(20, 154, 251);
    transform: translateY(-4px);
}

.product-card.highlight {
    background: linear-gradient(135deg, rgba(20, 154, 251, 0.1), rgba(20, 154, 251, 0.05));
    border-color: rgb(20, 154, 251);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-header i {
    font-size: 24px;
    color: rgb(20, 154, 251);
}

.product-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.product-description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.product-link {
    color: rgb(20, 154, 251);
    text-decoration: none;
    font-weight: 500;
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.product-visual i {
    font-size: 48px;
    color: rgba(20, 154, 251, 0.3);
}

/* Enterprise Section */
.enterprise-section {
    padding: 100px 0;
}

.enterprise-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.enterprise-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.enterprise-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.enterprise-visual i {
    font-size: 120px;
    color: rgba(20, 154, 251, 0.3);
}

/* Value Section */
.value-section {
    padding: 100px 0;
    text-align: center;
}

.value-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.value-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(20, 154, 251);
    margin-bottom: 16px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-info h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 154, 251, 0.1), rgba(20, 154, 251, 0.05));
    border-top: 1px solid rgba(20, 154, 251, 0.2);
    border-bottom: 1px solid rgba(20, 154, 251, 0.2);
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Pricing Specific Styles */
.pricing-hero {
    padding: 140px 0 80px;
    text-align: center;
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.pricing-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgb(20, 154, 251);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgb(20, 154, 251);
    background: linear-gradient(135deg, rgba(20, 154, 251, 0.1), rgba(20, 154, 251, 0.05));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(20, 154, 251);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
}

.currency {
    font-size: 24px;
    color: rgb(20, 154, 251);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: rgb(20, 154, 251);
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    color: rgb(20, 154, 251);
    font-size: 14px;
}

.pricing-action .btn {
    width: 100%;
}

.pricing-faq {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.faq-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pricing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 154, 251, 0.1), rgba(20, 154, 251, 0.05));
    border-top: 1px solid rgba(20, 154, 251, 0.2);
}

/* Contact Form Styles */
.contact-hero {
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(20, 154, 251);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #10b981;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 16px 0;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: rgb(20, 154, 251);
}

.newsletter h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: rgb(20, 154, 251);
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: rgb(16, 130, 220);
}

.newsletter-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-disclaimer a {
    color: rgb(20, 154, 251);
    text-decoration: none;
}

.footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(20, 154, 251);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: rgb(20, 154, 251);
}

.footer-contact {
    text-align: right;
}

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

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .control-group {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        gap: 30px;
    }
    
    .footer-contact {
        text-align: left;
        margin-top: 20px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-controls,
    .feature-preview {
        margin-bottom: 20px;
    }
}

/* Animation and Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgb(20, 154, 251);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(16, 130, 220);
}
