/* ============================================================
   Application page styles — /aplikacja
   Scoped to: .app-page wrapper
   ============================================================ */

/* CSS Variables (reusing project colours — override only if needed) */
.app-page {
    --green: #2bc76e;
    --green-dark: #1fa558;
    --green-light: #e8f9ef;
    --green-mid: #c5f0d9;
    --orange: #e8721e;
    --white: #ffffff;
    --bg: #f4f8f6;
    --dark: #1c2b25;
    --dark-mid: #2f4038;
    --text: #2c3e35;
    --text-light: #6b7f74;
    --muted: #9ab0a3;
    --border: #deeee5;
    --border-mid: #c8e0d0;

    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.app-page .hero {
    min-height: calc(100vh - 76px);
    background: linear-gradient(135deg, #f0faf5 0%, var(--white) 55%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 32px;
}

.app-page .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.app-page .hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(43, 199, 110, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.app-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid var(--green-mid);
}

.app-page .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.app-page .hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.18;
    text-transform: none;
    color: var(--dark);
    margin-bottom: 22px;
}

.app-page .hero h1 em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--green);
}

.app-page .hero-desc {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
}

.app-page .hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.app-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(43, 199, 110, 0.4);
    transition: all 0.3s;
}

.app-page .btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(43, 199, 110, 0.5);
    color: white;
}

.app-page .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-mid);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 24px;
    border: 2px solid var(--border-mid);
    border-radius: 8px;
    transition: all 0.25s;
}

.app-page .btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.app-page .hero-trust {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.app-page .trust-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.app-page .trust-label {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 3px;
    line-height: 1.3;
}

/* PHONE MOCKUP */
.app-page .hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-page .phone-wrap {
    position: relative;
    animation: appFloatPhone 4s ease-in-out infinite;
}

@keyframes appFloatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.app-page .phone {
    width: 258px;
    background: #1a2420;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 40px 100px rgba(28, 43, 37, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.app-page .phone-screen {
    background: #f4faf7;
    border-radius: 36px;
    overflow: hidden;
    min-height: 515px;
}

.app-page .phone-status {
    background: #1a2420;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-page .phone-notch {
    width: 70px;
    height: 18px;
    background: #1a2420;
    border-radius: 0 0 16px 16px;
}

.app-page .app-content {
    padding: 18px 16px;
}

.app-page .app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.app-page .app-greet {
    font-size: 0.67rem;
    color: var(--text-light);
}

.app-page .app-greet b {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 800;
}

.app-page .app-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
}

.app-page .app-card-main {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 12px;
    color: white;
}

.app-page .ac-label {
    font-size: 0.6rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.app-page .ac-val {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 4px 0 2px;
}

.app-page .ac-bar-bg {
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-top: 8px;
}

.app-page .ac-bar {
    height: 5px;
    width: 72%;
    background: white;
    border-radius: 10px;
}

.app-page .ac-sub {
    font-size: 0.6rem;
    opacity: 0.72;
    margin-top: 5px;
}

.app-page .app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.app-page .app-mini {
    background: white;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(28, 43, 37, 0.06);
}

.app-page .am-icon {
    font-size: 1rem;
    margin-bottom: 3px;
}

.app-page .am-val {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text);
}

.app-page .am-label {
    font-size: 0.55rem;
    color: var(--text-light);
}

.app-page .app-meals-box {
    background: white;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(28, 43, 37, 0.06);
}

.app-page .ambox-title {
    font-size: 0.62rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 9px;
    font-weight: 700;
}

.app-page .meal-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.app-page .meal-row:last-child {
    border: none;
}

.app-page .meal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.app-page .meal-dot.o {
    background: var(--orange);
}

.app-page .meal-dot.y {
    background: #e8c84a;
}

.app-page .meal-n {
    font-size: 0.68rem;
    color: var(--text);
    flex: 1;
}

.app-page .meal-k {
    font-size: 0.62rem;
    color: var(--text-light);
}

.app-page .chip {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 40px rgba(28, 43, 37, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.app-page .chip-icon {
    font-size: 1.3rem;
}

.app-page .chip-text {
    font-size: 0.68rem;
}

.app-page .chip-text b {
    display: block;
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 800;
}

.app-page .chip-text span {
    color: var(--text-light);
}

.app-page .chip-1 {
    top: 40px;
    right: -50px;
}

.app-page .chip-2 {
    bottom: 70px;
    left: -50px;
    background: var(--green);
    color: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.app-page .chip-2 .chip-big {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.app-page .chip-2 .chip-sm {
    font-size: 0.65rem;
    opacity: 0.88;
}

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
.app-page .app-sec {
    padding: 90px 80px;
}

.app-page .app-sec-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.app-page .app-sec-bg {
    background: var(--bg);
}

.app-page .s-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    display: block;
    margin-bottom: 12px;
}

.app-page .s-title {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
}

.app-page .s-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--green);
}

.app-page .s-desc {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 560px;
}

/* ══════════════════════════════════
   FEATURES
══════════════════════════════════ */
.app-page .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.app-page .feat-card {
    background: white;
    border-radius: 16px;
    padding: 34px 28px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-page .feat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.app-page .feat-card:hover::before {
    transform: scaleX(1);
}

.app-page .feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(43, 199, 110, 0.12);
    border-color: var(--green-mid);
}

.app-page .feat-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.app-page .feat-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 9px;
}

.app-page .feat-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.app-page .pricing-sec {
    padding: 90px 80px;
    background: var(--white);
}

.app-page .pricing-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.app-page .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 56px;
}

.app-page .pricing-promo-text {
    margin: 18px auto 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: 999px;
    padding: 10px 16px;
    width: fit-content;
}

.app-page .btl {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s;
}

.app-page .btl.on {
    color: var(--dark);
}

.app-page .tgl-btn {
    width: 48px;
    height: 26px;
    background: var(--border-mid);
    border-radius: 100px;
    padding: 3px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.app-page .tgl-btn.on {
    background: var(--green);
}

.app-page .tgl-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: block;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.app-page .tgl-btn.on .tgl-thumb {
    transform: translateX(22px);
}

.app-page .save-pill {
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--green-mid);
}

.app-page .plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.app-page .plans-grid-single {
    grid-template-columns: 1fr;
    max-width: 460px;
}

.app-page .plan {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border);
    transition: all 0.35s;
    position: relative;
}

.app-page .plan:not(.plan-feat):hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(43, 199, 110, 0.1);
    border-color: var(--green-mid);
}

.app-page .plan-feat {
    background: linear-gradient(145deg, #389764 0%, #44ab73 60%, #54bd82 100%);
    border-color: #389764;
    transform: scale(1.04);
    box-shadow: 0 30px 80px rgba(43, 199, 110, 0.2);
}

.app-page .plan-top-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(43, 199, 110, 0.4);
}

.app-page .plan-name {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.app-page .plan-feat .plan-name {
    color: #e8f9ef;
}

.app-page .plan-sub {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 26px;
}

.app-page .plan-feat .plan-sub {
    color: rgba(232, 249, 239, 0.55);
}

.app-page .price-block {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 6px;
}

.app-page .p-curr {
    font-size: 1rem;
    color: var(--green);
    font-weight: 800;
    margin-top: 6px;
}

.app-page .plan-feat .p-curr {
    color: #7ee8b0;
}

.app-page .p-amt {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.app-page .p-amt-old {
    font-size: 2.6rem;
    font-weight: 700;
    color: rgba(47, 64, 56, 0.6);
    text-decoration: line-through;
    margin-right: 4px;
}

.app-page .plan-feat .p-amt-old {
    color: rgba(232, 249, 239, 0.88);
}

.app-page .plan-feat .p-amt {
    color: white;
}

.app-page .p-period {
    font-size: 0.82rem;
    color: var(--text-light);
}

.app-page .plan-feat .p-period {
    color: rgba(232, 249, 239, 0.55);
}

.app-page .p-yearly {
    font-size: 0.78rem;
    color: var(--green);
    margin-bottom: 24px;
    display: none;
}

.app-page .p-code-note {
    font-size: 0.78rem;
    color: rgba(232, 249, 239, 0.85);
    margin-bottom: 8px;
    font-weight: 700;
}

.app-page .p-yearly-old {
    color: rgba(232, 249, 239, 0.9);
    text-decoration: line-through;
    margin-left: 8px;
}

.app-page .p-yearly.show {
    display: block;
}

.app-page .plan-feat .p-yearly {
    color: #7ee8b0;
}

.app-page .plan-div {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.app-page .plan-feat .plan-div {
    background: rgba(255, 255, 255, 0.1);
}

.app-page .plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
    padding: 0;
}

.app-page .plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.87rem;
    color: var(--text-light);
}

.app-page .plan-feat .plan-feats li {
    color: rgba(232, 249, 239, 0.85);
}

.app-page .plan-feats li.off {
    opacity: 0.35;
}

.app-page .pf-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    background: var(--green-light);
    color: var(--green-dark);
}

.app-page .plan-feat .pf-check {
    background: rgba(43, 199, 110, 0.2);
    color: #7ee8b0;
}

.app-page .pf-x {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    background: var(--border);
    color: var(--muted);
}

.app-page .plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.25s;
}

.app-page .plan-btn-ghost {
    border: 2px solid var(--border-mid);
    color: var(--dark);
}

.app-page .plan-btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.app-page .plan-btn-solid {
    background: var(--green);
    color: white;
    box-shadow: 0 6px 20px rgba(43, 199, 110, 0.35);
}

.app-page .plan-btn-solid:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: white;
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.app-page .how-sec {
    padding: 90px 80px;
    background: var(--bg);
}

.app-page .how-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.app-page .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 56px;
    position: relative;
}

.app-page .steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 55px;
    right: 55px;
    height: 1px;
    background: var(--green-mid);
}

.app-page .step-card {
    position: relative;
}

.app-page .step-n {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(43, 199, 110, 0.35);
    transition: all 0.3s;
}

.app-page .step-card:hover .step-n {
    background: var(--green-dark);
    transform: scale(1.08);
}

.app-page .step-ttl {
    font-weight: 800;
    font-size: 0.97rem;
    color: var(--dark);
    margin-bottom: 9px;
}

.app-page .step-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ══════════════════════════════════
   APP SCREENSHOTS
══════════════════════════════════ */
.app-page .app-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 56px;
}

.app-page .screenshot-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.app-page .screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(43, 199, 110, 0.15);
    border-color: var(--green-mid);
}

.app-page .screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.app-page .screenshot-desc {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}

/* ══════════════════════════════════
   RESULTS GALLERY
══════════════════════════════════ */
.app-page .results-sec {
    padding: 90px 80px;
    background: var(--bg);
}

.app-page .results-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.app-page .results-gallery {
    margin-top: 56px;
    columns: 4;
    column-gap: 20px;
}

.app-page .result-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-page .result-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(43, 199, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.app-page .result-item:hover::before {
    opacity: 1;
}

.app-page .result-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.app-page .result-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(43, 199, 110, 0.25);
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.app-page .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.app-page .testi {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}

.app-page .testi:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(43, 199, 110, 0.1);
    border-color: var(--green-mid);
}

.app-page .testi-stars {
    color: var(--green);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.app-page .testi-q {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.app-page .testi-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.app-page .testi-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: 800;
}

.app-page .testi-name {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--dark);
}

.app-page .testi-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.app-page .faq-sec {
    padding: 80px;
    background: var(--white);
}

.app-page .faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.app-page .faq-head {
    text-align: center;
    margin-bottom: 48px;
}

.app-page .faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 0 22px;
    transition: border-color 0.2s;
}

.app-page .faq-item.open {
    border-color: var(--green);
}

.app-page .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.2s;
    gap: 12px;
}

.app-page .faq-q:hover {
    color: var(--green);
}

.app-page .faq-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.app-page .faq-item.open .faq-plus {
    transform: rotate(45deg);
    background: var(--green);
    color: white;
}

.app-page .faq-a {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.72;
    padding-bottom: 18px;
    display: none;
}

.app-page .faq-item.open .faq-a {
    display: block;
}

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.app-page .cta-sec {
    padding: 90px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #3de07a 100%);
    position: relative;
    overflow: hidden;
}

.app-page .cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='white' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.app-page .cta-sec>* {
    position: relative;
    z-index: 1;
}

.app-page .cta-sec .s-label {
    color: rgba(255, 255, 255, 0.75);
}

.app-page .cta-sec .s-title {
    color: white;
    margin: 0 auto 16px;
}

.app-page .cta-sec .s-title em {
    color: rgba(255, 255, 255, 0.9);
}

.app-page .cta-sec p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.app-page .cta-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--green-dark);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(28, 43, 37, 0.2);
    transition: all 0.3s;
}

.app-page .cta-btn-w:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(28, 43, 37, 0.25);
    color: var(--green-dark);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes appFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.app-page .hero-content>* {
    animation: appFadeUp 0.65s ease both;
}

.app-page .hero-content>*:nth-child(1) {
    animation-delay: 0.1s;
}

.app-page .hero-content>*:nth-child(2) {
    animation-delay: 0.2s;
}

.app-page .hero-content>*:nth-child(3) {
    animation-delay: 0.3s;
}

.app-page .hero-content>*:nth-child(4) {
    animation-delay: 0.4s;
}

.app-page .hero-content>*:nth-child(5) {
    animation-delay: 0.5s;
}

.app-page .hero-right {
    animation: appFadeUp 0.75s 0.35s ease both;
}

/* ══════════════════════════════════
   MOBILE
══════════════════════════════════ */
@media (max-width: 1024px) {
    .app-page .hero {
        padding: 60px 30px 50px;
    }

    .app-page .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-page .hero-right {
        display: none;
    }

    .app-page .hero-trust {
        justify-content: center;
    }

    .app-page .hero-btns {
        justify-content: center;
    }

    .app-page .hero-desc {
        margin: 0 auto 36px;
    }

    .app-page .app-sec,
    .app-page .how-sec,
    .app-page .faq-sec,
    .app-page .cta-sec,
    .app-page .pricing-sec,
    .app-page .results-sec {
        padding: 60px 30px;
    }

    .app-page .feat-grid,
    .app-page .plans-grid,
    .app-page .testi-grid,
    .app-page .app-screenshots {
        grid-template-columns: 1fr;
    }

    .app-page .steps {
        grid-template-columns: 1fr 1fr;
    }

    .app-page .steps::before {
        display: none;
    }

    .app-page .results-gallery {
        columns: 2;
        column-gap: 15px;
    }

    .app-page .result-item {
        margin-bottom: 15px;
    }

    .app-page .plan-feat {
        transform: none;
    }
}

@media (max-width: 640px) {
    .app-page .results-gallery {
        columns: 1;
    }
}
