/* ============================================================
   SEMIA — Mobile Optimization
   Kompakter, weniger Scrollen, bessere UX auf Handy
   ============================================================ */

/* ── MOBILE PHONES ── */
@media (max-width: 768px) {

    /* Reduce overall section padding drastically */
    :root {
        --section-padding: 50px !important;
    }

    .section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* ── HERO COMPACT ── */
    .hero {
        min-height: calc(100vh - 60px);
        padding: 80px 0 30px;
    }
    .hero__content {
        padding: 0 20px;
    }
    .hero__badge {
        font-size: 10px !important;
        padding: 6px 14px !important;
        margin-bottom: 16px !important;
    }
    .hero__title {
        font-size: clamp(1.9rem, 7vw, 2.3rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }
    .hero__subtitle {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
        max-width: 92%;
    }
    .hero__cta {
        gap: 10px !important;
        margin-bottom: 30px !important;
    }
    .hero__cta .btn {
        padding: 14px 18px !important;
        font-size: 13px !important;
    }

    /* ── HERO STATS — stay horizontal, compact ── */
    .hero__stats {
        flex-direction: row !important;
        gap: 0 !important;
        padding: 20px 16px !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        margin-top: 20px !important;
        background: rgba(200,169,97,0.03);
        border-radius: 14px;
        border: 1px solid rgba(200,169,97,0.1);
    }
    .hero__stat {
        flex: 1;
        text-align: center;
        padding: 0 8px !important;
    }
    .hero__stat-number,
    .hero__stat-prefix {
        font-size: 26px !important;
        line-height: 1 !important;
    }
    .hero__stat-symbol {
        font-size: 18px !important;
    }
    .hero__stat-label {
        display: block;
        font-size: 10px !important;
        line-height: 1.25 !important;
        margin-top: 6px !important;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    .hero__stat-divider {
        width: 1px !important;
        height: 40px !important;
        background: rgba(200,169,97,0.25);
        align-self: center;
    }
    .hero__scroll {
        display: none !important; /* Not needed on mobile */
    }

    /* ── NAV — Make mobile menu cleaner ── */
    .nav {
        padding: 12px 16px !important;
    }
    .nav__logo-img {
        height: 38px !important;
    }

    /* ── MARQUEE — compact ── */
    .marquee {
        padding: 14px 0 !important;
    }
    .marquee__item {
        font-size: 12px !important;
    }

    /* ── SECTION HEADERS — Compact ── */
    .section__header {
        margin-bottom: 30px !important;
    }
    .section__tag {
        font-size: 11px !important;
        padding: 5px 12px !important;
        margin-bottom: 14px !important;
    }
    .section__title {
        font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
    }
    .section__subtitle {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    /* ── PROBLEMS GRID — 2 columns on mobile for density ── */
    .problems__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .problem-card {
        padding: 18px 14px !important;
    }
    .problem-card__icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 12px !important;
    }
    .problem-card__icon svg {
        width: 18px !important;
        height: 18px !important;
    }
    .problem-card__title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }
    .problem-card__text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* ── SERVICES GRID — Single column BUT very compact cards ── */
    .services__grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .service-card {
        padding: 22px 20px !important;
    }
    .service-card__icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 14px !important;
    }
    .service-card__icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .service-card__title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .service-card__text {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }
    .service-card__features {
        margin-top: 14px !important;
    }
    .service-card__feature {
        font-size: 12px !important;
        padding: 5px 0 !important;
    }

    /* ── WHY NOW — compact cards ── */
    .why-now__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .why-now__card {
        padding: 18px 14px !important;
    }
    .why-now__card-number {
        font-size: 28px !important;
        margin-bottom: 6px !important;
    }
    .why-now__card-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }
    .why-now__card-text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* ── PROCESS STEPS — Horizontal compact ── */
    .process__steps {
        gap: 20px !important;
    }
    .process__step {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 16px !important;
    }
    .process__step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
        flex-shrink: 0;
    }
    .process__step-content {
        flex: 1;
    }
    .process__step-title {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    .process__step-text {
        font-size: 12.5px !important;
        line-height: 1.55 !important;
    }

    /* ── DEMO SHOWCASE — compact ── */
    .showcase {
        padding: 16px !important;
        border-radius: 12px !important;
    }
    .showcase__slide {
        border-radius: 8px !important;
    }

    /* ── RESULTS GRID — 2 columns ── */
    .results__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .result-card {
        padding: 18px 14px !important;
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .result-card__prefix,
    .result-card__number,
    .result-card__symbol {
        display: inline !important;
        font-size: 32px !important;
        line-height: 1.1 !important;
        font-weight: 700 !important;
        color: #c8a961 !important;
    }
    .result-card__symbol {
        font-size: 22px !important;
    }
    /* Wrap number + symbol together */
    .result-card > .result-card__prefix,
    .result-card > .result-card__number,
    .result-card > .result-card__symbol {
        display: inline-block !important;
        vertical-align: middle !important;
    }
    .result-card__label {
        display: block !important;
        width: 100% !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
        margin-top: 8px !important;
        letter-spacing: 0.02em !important;
    }

    /* ── TESTIMONIALS — compact ── */
    .testimonial-card {
        padding: 20px 18px !important;
    }
    .testimonial-card__text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .testimonial-card__author {
        font-size: 13px !important;
    }

    /* ── CTA SECTION — compact ── */
    .section--cta {
        padding: 50px 0 !important;
    }
    .cta-section__title {
        font-size: clamp(1.5rem, 5.5vw, 1.9rem) !important;
        line-height: 1.2 !important;
    }
    .cta-section__subtitle {
        font-size: 14px !important;
    }

    /* ── CONTACT FORM — compact ── */
    .contact__form {
        padding: 24px 18px !important;
    }
    .form__group {
        margin-bottom: 14px !important;
    }
    .form__label {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }
    .form__input,
    .form__textarea,
    .form__select {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    .form__textarea {
        min-height: 100px !important;
    }

    /* ── FAQ — compact ── */
    .faq__item {
        padding: 16px 18px !important;
    }
    .faq__question {
        font-size: 14px !important;
    }
    .faq__answer {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* ── FOOTER — compact ── */
    .footer {
        padding: 40px 0 20px !important;
    }
    .footer__content {
        margin-bottom: 24px !important;
    }
    .footer__logo {
        max-width: 120px !important;
        margin-bottom: 16px !important;
    }
    .footer__description {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }
    .footer__links {
        gap: 24px !important;
    }
    .footer__links-column h4 {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
    .footer__links-column a {
        font-size: 13px !important;
        padding: 4px 0 !important;
    }

    /* ── HIDE CURSOR EFFECTS on mobile ── */
    .cursor, .cursor__follower {
        display: none !important;
    }

    /* ── ADD STICKY MOBILE CTA BAR ── */
    body {
        padding-bottom: 70px; /* space for sticky CTA */
    }
}

/* ── ULTRA COMPACT for small phones ── */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem !important;
    }
    .hero__subtitle {
        font-size: 13px !important;
    }
    .hero__stat-number,
    .hero__stat-prefix {
        font-size: 22px !important;
    }
    .hero__stat-label {
        font-size: 9px !important;
    }
    .section__title {
        font-size: 1.5rem !important;
    }
    .problems__grid,
    .why-now__grid,
    .results__grid {
        gap: 10px !important;
    }
    .problem-card,
    .why-now__card,
    .result-card {
        padding: 14px 12px !important;
    }
}

/* ── MOBILE STICKY CTA BAR ── */
.mobile-cta-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 10px 14px;
        background: linear-gradient(180deg, rgba(5,5,8,0.85) 0%, rgba(5,5,8,0.98) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(200,169,97,0.2);
        gap: 8px;
    }
    .mobile-cta-bar__btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 10px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-decoration: none;
        text-transform: uppercase;
        transition: transform 0.2s ease, box-shadow 0.3s ease;
    }
    .mobile-cta-bar__btn--primary {
        background: linear-gradient(135deg, #c8a961, #d4b97a);
        color: #0a0a0f;
        box-shadow: 0 4px 20px rgba(200,169,97,0.35);
    }
    .mobile-cta-bar__btn--primary:active {
        transform: scale(0.96);
    }
    .mobile-cta-bar__btn--secondary {
        background: rgba(200,169,97,0.1);
        color: #c8a961;
        border: 1px solid rgba(200,169,97,0.3);
    }
    .mobile-cta-bar__btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ── FLOATING PHONE BUTTON (always visible on mobile) ── */
@media (max-width: 768px) {
    .floating-phone {
        position: fixed;
        right: 16px;
        bottom: 80px;
        z-index: 899;
    }
}
