/* =========================================
   LANDING.CSS - SchedWave SMM Panel
   ========================================= */

/* Fonts override (applied globally when loaded) */
body {
    font-family: 'DM Sans', sans-serif;
}

/* ---- Hero ---- */
.hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #003d7a 0%, #001d47 100%);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 60%, rgba(0, 100, 220, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 60, 140, 0.3) 0%, transparent 50%);
    animation: gradientShift 12s ease infinite;
}

/* Animated orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.18;
    animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: #1d8cf8; top: -100px; left: -100px; animation-duration: 18s; }
.orb-2 { width: 400px; height: 400px; background: #4b7cf3; bottom: -100px; right: 10%; animation-duration: 25s; animation-delay: -8s; }
.orb-3 { width: 300px; height: 300px; background: #00d4ff; top: 40%; left: 40%; animation-duration: 22s; animation-delay: -14s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* --- Hero Animations --- */
.slide-up {
    animation: slideUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.slide-in-right {
    animation: slideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #7dd3fc 0%, #a5f3fc 50%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-primary {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-item h3.counter::after {
    content: '+';
    font-size: 1.4rem;
}

.stat-item:last-child h3.counter::after { content: ''; }

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* --- Dashboard Mockup --- */
.hero-dashboard {
    position: relative;
}

.dashboard-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}

.dashboard-browser-bar {
    background: #1e2a3a;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 14px 14px 0 0;
}

.browser-dots {
    display: flex;
    gap: 0.35rem;
}
.browser-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
}

.dashboard-screen {
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    background: #0f172a;
    /* Maintains 1920:823 aspect ratio so placeholder matches real screenshot */
    aspect-ratio: 1920 / 823;
    display: flex;
    align-items: stretch;
    position: relative;
}

.dashboard-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    position: absolute;
    inset: 0;
}

.dashboard-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    width: 100%;
    color: rgba(255,255,255,0.3);
    text-align: center;
}
.dashboard-placeholder svg { opacity: 0.3; }
.dashboard-placeholder p { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.dashboard-placeholder span { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* Dashboard Floating Cards */
.db-float-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 10;
}

.db-float-1 {
    bottom: -18px;
    left: -24px;
    animation: floatCard1 4s ease-in-out infinite;
}
.db-float-2 {
    top: 60px;
    right: -24px;
    animation: floatCard2 4s ease-in-out 1.5s infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.db-float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.db-green { background: #dcfce7; color: #16a34a; }
.db-blue  { background: #dbeafe; color: #2563eb; }

.db-float-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 2px;
}
.db-float-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ---- Platforms Bar ---- */
.platforms-bar {
    background: #f8faff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e8eef8;
}
.platforms-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.platforms-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.platforms-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.plat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}
.plat-item:hover { color: var(--primary-color); }

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Common Section Styles ---- */
.features-modern,
.services-modern,
.how-it-works,
.testimonials-modern,
.faq-section {
    padding: 6rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background-color: rgba(0, 61, 122, 0.08);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---- Features Grid ---- */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card-modern {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0, 30, 80, 0.06);
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 61, 122, 0.12);
    border-color: var(--primary-color);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a6cc4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-card-modern h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ---- Services Section ---- */
.services-modern {
    background-color: #f5f8ff;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card-modern {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e8eef8;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E1306C, #F56040, #FCAF45);
    transition: height 0.3s ease;
}
.service-card-modern:hover::before { height: 5px; }
.service-card-modern.youtube::before { background: #FF0000; }
.service-card-modern.tiktok::before { background: linear-gradient(90deg, #000, #69C9D0); }
.service-card-modern.twitter::before { background: #1DA1F2; }
.service-card-modern.facebook::before { background: #1877F2; }
.service-card-modern.spotify::before { background: #1DB954; }

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0,61,122,0.15);
}

.service-icon-modern { margin-bottom: 1.25rem; }

.service-card-modern.instagram .service-icon-modern { color: #E1306C; }
.service-card-modern.youtube .service-icon-modern { color: #FF0000; }
.service-card-modern.tiktok .service-icon-modern { color: #000; }
.service-card-modern.twitter .service-icon-modern { color: #1DA1F2; }
.service-card-modern.facebook .service-icon-modern { color: #1877F2; }
.service-card-modern.spotify .service-icon-modern { color: #1DB954; }

.service-card-modern h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card-modern p { color: var(--text-light); font-size: 0.9rem; }

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), #1a6cc4);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- How It Works ---- */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid #e8eef8;
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,61,122,0.1);
    border-color: var(--primary-color);
}

.step-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,61,122,0.07);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-color), #1a6cc4);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #7ab9f5);
    margin-top: 80px;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -6px; top: -5px;
    width: 12px; height: 12px;
    border-right: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

/* ---- Testimonials ---- */
.testimonials-modern {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #f8faff;
    padding: 2rem;
    border-radius: 16px;
    border: 1.5px solid #e8eef8;
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0,61,122,0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,61,122,0.1);
    border-color: rgba(0,61,122,0.2);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a6cc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

/* ---- FAQ Section ---- */
.faq-section { background: #f5f8ff; }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid #e8eef8;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.active { border-color: var(--primary-color); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary-color); }
.faq-item.active .faq-question { color: var(--primary-color); }

.faq-icon {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.2s;
}
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary-color); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 1.5rem 1.25rem; }

.faq-answer p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #003d7a 0%, #001d47 100%);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 60%, rgba(100,180,255,0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(0,80,180,0.2) 0%, transparent 60%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content { text-align: center; }

.cta-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 2.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.btn-cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}

/* ---- Footer ---- */
.footer-modern {
    background-color: #001229;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-col > p { margin-bottom: 0.6rem; opacity: 0.75; font-size: 0.9rem; line-height: 1.6; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    text-decoration: none;
}
.footer-social-link:hover { background: var(--primary-color); color: white; }

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.85rem; opacity: 0.5; }

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-whatsapp:hover { color: #4ade80; }

/* =====================
   Responsive
   ===================== */

/* ---- Tablet (≤1100px) ---- */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 7rem 1.5rem 4rem;
        gap: 3.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title { font-size: 3rem; }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-dashboard {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {

    /* --- Hero --- */
    .hero-container {
        padding: 6rem 1.25rem 3rem;
        gap: 2.5rem;
    }

    .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.85rem; }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 480px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
        padding: 1.25rem 0.5rem;
        width: 100%;
        max-width: 360px;
    }

    .stat-divider {
        width: 1px;
        height: 100%;
        background: rgba(255,255,255,0.15);
    }

    .stat-item h3 { font-size: 1.4rem; }
    .stat-item p { font-size: 0.72rem; }

    /* Dashboard: shown below hero on mobile, full width */
    .hero-dashboard {
        width: 100%;
        max-width: 100%;
        padding: 0 0.25rem;
    }

    .dashboard-wrapper {
        border-radius: 12px;
    }

    .dashboard-browser-bar {
        border-radius: 12px 12px 0 0;
        padding: 0.55rem 0.75rem;
    }

    .browser-dots span { width: 8px; height: 8px; }
    .browser-url { font-size: 0.65rem; padding: 0.25rem 0.6rem; }

    .dashboard-screen { border-radius: 0 0 12px 12px; }

    .dashboard-img {
        border-radius: 0 0 12px 12px;
    }

    /* Hide floating cards on mobile — they overflow badly */
    .db-float-1, .db-float-2 { display: none; }

    /* --- Platforms bar --- */
    .platforms-inner { flex-direction: column; gap: 1rem; }
    .platforms-logos { gap: 1.25rem; }
    .plat-item span { display: none; }
    .plat-item svg { width: 26px; height: 26px; }

    /* --- Sections padding --- */
    .features-modern,
    .services-modern,
    .how-it-works,
    .testimonials-modern,
    .faq-section,
    .cta-modern { padding: 4rem 1.25rem; }

    /* --- Section Headers --- */
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.75rem; }
    .section-header p { font-size: 0.95rem; }

    /* --- Features grid: single column --- */
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card-modern { padding: 1.5rem; }

    /* --- Services grid: single column, centered --- */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 440px;
        margin: 0 auto;
    }

    .service-card-modern { padding: 2rem 1.5rem; }

    /* --- How it Works --- */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .step-card {
        width: 100%;
        max-width: 380px;
    }

    .step-connector {
        width: 2px;
        height: 36px;
        margin: 0 auto;
        background: linear-gradient(180deg, var(--primary-color), #7ab9f5);
    }

    .step-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(-50%) rotate(135deg);
        border-right: 2px solid var(--primary-color);
        border-top: 2px solid var(--primary-color);
        border-left: none;
        border-bottom: none;
    }

    /* --- Testimonials: single column, centered --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 480px;
        margin: 0 auto;
    }

    .testimonial-card { padding: 1.5rem; }

    /* --- FAQ --- */
    .faq-grid { max-width: 100%; }
    .faq-question { font-size: 0.9rem; padding: 1rem 1.25rem; }
    .faq-answer { padding: 0 1.25rem; }
    .faq-item.active .faq-answer { padding: 0 1.25rem 1rem; }

    /* --- CTA --- */
    .cta-content h2 { font-size: 1.8rem; }
    .cta-content > p { font-size: 1rem; }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-links { justify-content: center; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.75rem; }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-divider { width: 100%; height: 1px; }

    .stat-item { text-align: center; }

    .services-grid-modern { max-width: 100%; }
    .testimonials-grid { max-width: 100%; }
}