* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

.app-wrapper {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ============= BACKGROUND ============= */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.bg-glow-2 {
    bottom: -200px;
    left: -100px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

/* ============= NAVBAR ============= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.6rem 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.15);
}

.nav-link-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #7c7ff2, #9d7ff7);
}

/* ============= MOBILE MENU ============= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #8b5cf6;
}

/* ============= MAIN CONTENT ============= */
.main-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding-top: 88px;
}

/* ============= HERO SECTION ============= */
.mini-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #111827 0%, #1e1b4b 50%, #0f172a 100%);
}

.mini-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    pointer-events: none;
}

.mini-hero-orb-1 {
    width: 320px;
    height: 320px;
    top: 40px;
    left: 6%;
    background: #3b82f6;
}

.mini-hero-orb-2 {
    width: 360px;
    height: 360px;
    bottom: -60px;
    right: 8%;
    background: #8b5cf6;
}

.mini-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.mini-hero-icon {
    font-size: 4.5rem;
    margin-bottom: 1.25rem;
}

.mini-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 45%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============= GENERIC SECTIONS ============= */
.services-section,
.benefits-section,
.process-section,
.dual-actions-section,
.cta-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.benefits-section {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.035), transparent);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.section-title-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.section-emoji {
    font-size: 2rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* ============= PLATFORMS GRID ============= */
.platforms-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.platform-card {
    background: #243043;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.platform-card-top {
    padding: 1.25rem 1.35rem;
}

.platform-card-top.netflix {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.platform-card-top.spotify {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.platform-card-top.disney {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.platform-card-top.max {
    background: linear-gradient(135deg, #9333ea, #6b21a8);
}

.platform-card-top.amazon {
    background: linear-gradient(135deg, #fb923c, #ea580c);
}

.platform-card-top.youtube {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.platform-card-top.appletv {
    background: linear-gradient(135deg, #374151, #1f2937);
}

.platform-card-top.crunchyroll {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.platform-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.platform-icon {
    font-size: 2rem;
    line-height: 1;
}

.platform-name {
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
}

.platform-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.2rem;
}

.platform-card-body {
    padding: 1.2rem 1.1rem 1.1rem;
}

.platform-benefits {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.platform-benefits li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #dbe7f7;
    font-size: 0.98rem;
    line-height: 1.45;
}

.platform-benefits li::before {
    content: "✓";
    color: #4ade80;
    font-weight: 700;
    flex-shrink: 0;
}

.platform-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.platform-details.expanded {
    max-height: 220px;
}

.platform-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1rem 0 1.1rem;
}

.platform-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.platform-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.platform-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.platform-period {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.platform-toggle {
    background: transparent;
    border: none;
    color: #60a5fa;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.25s ease;
}

.platform-toggle:hover {
    color: #93c5fd;
}

/* ============= BENEFITS ============= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.benefit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

.benefit-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ============= TIMELINE ============= */
.process-timeline {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 999px;
}

.timeline-step {
    width: 50%;
    position: relative;
    display: flex;
}

.timeline-step.left {
    justify-content: flex-end;
    padding-right: 3.4rem;
}

.timeline-step.right {
    margin-left: auto;
    justify-content: flex-start;
    padding-left: 3.4rem;
}

.timeline-badge {
    position: absolute;
    top: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.28);
    z-index: 2;
}

.timeline-step.left .timeline-badge {
    right: -24px;
}

.timeline-step.right .timeline-badge {
    left: -24px;
}

.timeline-card {
    width: 100%;
    max-width: 470px;
    background: #243043;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.9rem;
    transition: all 0.35s ease;
}

.timeline-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: #fff;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ============= ACTION CARDS ============= */
.dual-actions-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-action-card {
    position: relative;
    border-radius: 24px;
    padding: 2rem;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: all 0.35s ease;
    min-height: 220px;
}

.feature-action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.feature-action-card-blue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.feature-action-card-purple {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.feature-action-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.feature-action-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-action-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 92%;
}

.feature-action-arrow {
    position: absolute;
    right: 1.4rem;
    bottom: 1rem;
    font-size: 1.5rem;
    opacity: 0.95;
}

/* ============= FAQ ============= */
.faq-list {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-arrow {
    color: #a5b4fc;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 240px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* ============= TESTIMONIALS ============= */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.testimonial-stars {
    color: #facc15;
    margin-bottom: 0.9rem;
    letter-spacing: 1px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-platform {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
}

/* ============= CTA ============= */
.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(139, 92, 246, 0.18));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-main-button {
    background: #ffffff;
    color: #2563eb;
    border: none;
    border-radius: 999px;
    padding: 1rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    position: relative;
}

.cta-main-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: #f8fafc;
}

/* ============= FOOTER ============= */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.footer-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.25rem;
}

.footer-contact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.85rem;
}

/* ============= TOAST ============= */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}

/* ============= RESPONSIVE - Desktop/Tablet ============= */
@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .timeline-line {
        left: 24px;
        transform: none;
    }

    .timeline-step,
    .timeline-step.left,
    .timeline-step.right {
        width: 100%;
        margin-left: 0;
        padding-left: 4.5rem;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-step.left .timeline-badge,
    .timeline-step.right .timeline-badge {
        left: 0;
        right: auto;
    }

    .timeline-card {
        max-width: 100%;
    }
}

/* ============= RESPONSIVE - Tablet (768px) ============= */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-content {
        padding-top: 76px;
    }

    .mini-hero {
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .mini-hero-title {
        font-size: clamp(1.9rem, 4vw, 2.8rem);
    }

    .mini-hero-subtitle {
        font-size: 1rem;
    }

    .services-section,
    .benefits-section,
    .process-section,
    .dual-actions-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .platforms-grid,
    .benefits-grid,
    .testimonials-grid,
    .dual-actions-grid {
        grid-template-columns: 1fr;
    }

    .platform-card-body,
    .timeline-card,
    .testimonial-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }
}

/* ============= RESPONSIVE - Mobile (480px) ============= */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .navbar {
        padding: 0.7rem 1rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .main-content {
        padding-top: 68px;
    }

    .mini-hero {
        padding: 3rem 1rem;
    }

    .mini-hero-icon {
        font-size: 3.5rem;
    }

    .mini-hero-title {
        font-size: clamp(1.7rem, 4vw, 2.2rem);
        line-height: 1.15;
    }

    .mini-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .services-section,
    .benefits-section,
    .process-section,
    .dual-actions-section,
    .cta-section {
        padding: 2.75rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .platform-card-top,
    .platform-card-body,
    .benefit-card,
    .timeline-card,
    .feature-action-card,
    .testimonial-card {
        padding: 1.2rem;
    }

    .platform-price {
        font-size: 1.8rem;
    }

    .feature-action-card {
        min-height: auto;
        border-radius: 18px;
    }

    .feature-action-card h3 {
        font-size: 1.08rem;
    }

    .feature-action-card p {
        font-size: 0.92rem;
    }

    .timeline-step,
    .timeline-step.left,
    .timeline-step.right {
        padding-left: 3.75rem;
    }

    .timeline-line {
        left: 18px;
    }

    .timeline-badge {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .timeline-step.left .timeline-badge,
    .timeline-step.right .timeline-badge {
        left: -3px;
    }

    .faq-question {
        padding: 1.05rem 1.1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.1rem;
        font-size: 0.9rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.1rem 1.1rem;
    }

    .cta-card {
        padding: 1.7rem 1.2rem;
        border-radius: 16px;
    }

    .cta-title {
        font-size: clamp(1.2rem, 2.5vw, 1.75rem);
        margin-bottom: 0.6rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .cta-main-button {
        width: 100%;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-logo-text {
        font-size: 1.05rem;
    }

    .footer-desc,
    .footer-contact-link,
    .footer-bottom {
        font-size: 0.85rem;
    }

    .toast {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

    .toast-content {
        width: 100%;
        justify-content: center;
    }
}

/* ============= RESPONSIVE - Extra Small (360px) ============= */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .mini-hero-title {
        font-size: clamp(1.45rem, 3vw, 1.9rem);
    }

    .section-title {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c7ff2, #9d7ff7);
}

/* ============= TOUCH DEVICES ============= */
@media (hover: none) and (pointer: coarse) {
    a,
    button {
        -webkit-tap-highlight-color: transparent;
    }
}
