/* Import Nunito font to match superexpert.ai */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

/* CSS Variables for consistent colors */
:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-orange: #ff5722;
    --text-dark: #393c44;
    --text-light: #6b7280;
    --background-light: #fafafa;
    --white: #ffffff;
    --black: #111111;
    --border-light: #e5e7eb;
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: var(--white) !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.btn-primary {
    background: var(--gradient-orange);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e57a35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background-color: transparent;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.github-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin: 0 auto 2rem;
    width: fit-content;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-intro {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 700px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hero-intro h2 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-image {
    text-align: center;
    margin: 3rem 0;
}

.cubes-image {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: var(--background-light);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-image {
    text-align: center;
    margin-top: auto;
}

.feature-image i {
    font-size: 3rem;
    color: var(--primary-orange);
    opacity: 0.8;
}

/* Features Overview Section */
.features-overview {
    padding: 80px 0;
    background: var(--background-light);
}

.features-list {
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Demo Card Styles */
.demo-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-title {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.demo-field {
    margin-bottom: 1.5rem;
}

.demo-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.demo-input {
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.75rem;
    color: var(--text-light);
}

.demo-tags {
    display: flex;
    gap: 0.5rem;
}

.demo-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    color: var(--text-light);
}

.demo-tag.active {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.demo-slider {
    position: relative;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    margin: 1rem 0;
}

.slider-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background: var(--gradient-orange);
    border-radius: 3px;
}

.demo-button {
    width: 100%;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* API Demo Styles */
.api-demo {
    background: var(--black);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    font-family: 'Courier New', monospace;
}

.api-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.api-title {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.api-code {
    background: #1a1a1a;
    border-radius: 6px;
    padding: 1rem;
}

.code-line {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.code-keyword {
    color: #ff6b35;
}

.code-string {
    color: #4ade80;
}

.code-number {
    color: #60a5fa;
}

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

.demo-container {
    margin-top: 3rem;
}

.demo-dashboard {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h4 {
    color: var(--text-dark);
    font-weight: 700;
}

.dashboard-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.campaign-item:hover {
    background: #f0f0f0;
}

.campaign-item.active {
    border-left: 4px solid var(--primary-orange);
}

.campaign-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.campaign-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.campaign-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: #dcfce7;
    color: #16a34a;
}

.status-badge.paused {
    background: #fef3c7;
    color: #d97706;
}

.campaign-budget {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand .logo-container {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: var(--background-light);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-cards {
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0 0.25rem;
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-header-card p {
    color: var(--text-light);
    line-height: 1.5;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.pricing-faq {
    margin-top: 5rem;
    text-align: center;
}

.pricing-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.pricing-faq .faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.pricing-faq .faq-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-faq .faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: var(--background-light);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-info-section {
    margin-top: 4rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: var(--background-light);
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-section,
.technology-section,
.team-section {
    margin-top: 4rem;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.tech-features strong {
    color: var(--text-dark);
}

.tech-stats {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.team-member {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.member-info h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-contact p {
    margin-bottom: 0.5rem;
}

.member-contact i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

.member-contact a {
    color: var(--primary-orange);
    text-decoration: none;
}

.member-contact a:hover {
    text-decoration: underline;
}

.cta-section {
    background: var(--gradient-orange);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary-orange);
    border: none;
}

.cta-content .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: var(--white);
}

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-body ul {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: var(--primary-orange);
    text-decoration: none;
}

.legal-body a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-stats {
        justify-content: space-between;
        width: 100%;
    }
    
    .campaign-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .demo-card,
    .api-demo {
        max-width: 100%;
    }
}
