.app-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 50%, #1a1410 100%);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
}

.app-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(201,169,97,0.15) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(201,169,97,0.08) 0%, transparent 45%);
    pointer-events: none;
}

.app-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0Z' fill='none' stroke='%23c9a961' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.app-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-hero-content {
    color: #fff;
}

.app-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,97,0.15);
    border: 1px solid rgba(201,169,97,0.3);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.app-hero-tag .icon { font-size: 14px; }

.app-hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 22px;
    color: #fff;
}

.app-hero-title span {
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.95;
    margin: 0 0 35px;
    max-width: 540px;
}

.app-download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #1a1a1a;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 200px;
}

.app-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(201,169,97,0.35);
    background: var(--primary-gold);
    color: #fff;
}

.app-download-btn > .icon {
    font-size: 36px;
    color: inherit;
}

.app-download-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-download-btn-text small {
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.app-download-btn-text strong {
    font-size: 17px;
    font-weight: 800;
}

.app-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.app-hero-stat-num {
    color: var(--primary-gold);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.app-hero-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
    font-weight: 600;
}

.app-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

.app-hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 460px;
}

.phone-frame {
    position: relative;
    width: 220px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.04),
        0 30px 70px rgba(0,0,0,0.5),
        0 50px 120px rgba(201,169,97,0.15);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f7f3eb 0%, #ede4d0 100%);
    border-radius: 26px;
    padding: 40px 20px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-app-header {
    text-align: center;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.phone-app-header img {
    width: 90px;
    height: auto;
    margin: 0 auto 14px;
    display: block;
}

.phone-app-header h2,
.phone-app-header h4 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.phone-app-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.phone-app-card.alt {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: #fff;
}

.phone-app-card > .icon {
    width: 44px;
    height: 44px;
    background: rgba(201,169,97,0.15);
    color: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.phone-app-card.alt > .icon {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.phone-app-card h5 {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 800;
    margin: 0 0 3px;
}

.phone-app-card.alt h5 { color: #fff; }

.phone-app-card p {
    color: var(--text-light);
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
}

.phone-app-card.alt p { color: rgba(255,255,255,0.85); }

.phone-badge {
    position: absolute;
    background: #fff;
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    animation: badgeFloat 4s ease-in-out infinite;
}

.phone-badge > .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.phone-badge-1 {
    top: 80px;
    inset-inline-start: -10px;
    animation-delay: 0s;
}

.phone-badge-1 .icon {
    background: rgba(201,169,97,0.15);
    color: var(--primary-gold);
}

.phone-badge-2 {
    bottom: 80px;
    inset-inline-end: -10px;
    animation-delay: 2s;
}

.phone-badge-2 .icon {
    background: rgba(45, 143, 95, 0.15);
    color: #2d8f5f;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.app-about-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.app-about-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    inset-inline-start: 30px;
    font-size: 100px;
    color: var(--primary-gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.app-about-box p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 2;
    margin: 0 0 18px;
}

.app-about-box p:last-child { margin: 0; }

.app-about-box strong {
    color: var(--text-dark);
    font-weight: 800;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.app-feature {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: background-color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.app-feature::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
    pointer-events: none;
}

.app-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: var(--primary-gold);
}

.app-feature:hover::before {
    transform: scaleX(1);
}

.app-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin: 0 auto 20px;
    transition: background-color 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.35s;
}

.app-feature:hover .app-feature-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.app-feature-icon .icon {
    font-size: 28px;
}

.app-feature h3 {
    color: var(--text-dark);
    font-size: 16.5px;
    font-weight: 800;
    margin: 0 0 12px;
}

.app-feature p {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.85;
    margin: 0;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.guide-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px 26px;
    position: relative;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: var(--primary-gold);
}

.guide-card-num {
    position: absolute;
    top: 20px;
    inset-inline-end: 24px;
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.12;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}

.guide-card:hover .guide-card-num {
    opacity: 0.25;
    transform: scale(1.1);
}

.guide-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(201,169,97,0.30);
}

.guide-card-icon .icon { font-size: 24px; }

.guide-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 16px;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.7;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.guide-list li:last-child { border-bottom: none; }

.guide-list li .icon {
    color: var(--primary-gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

.app-cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 90px 0;
    overflow: hidden;
}

.app-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 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='35' fill='none' stroke='%23ffffff' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
}

.app-cta-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #fff;
}

.app-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto 28px;
    animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 8px 20px rgba(0,0,0,0.10); }
    50% { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.15); }
}

.app-cta-icon .icon { font-size: 36px; }

.app-cta-content h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    margin: 0 0 18px;
    line-height: 1.3;
}

.app-cta-content h2 span {
    background: #fff;
    color: var(--dark-gold);
    padding: 0 14px;
    border-radius: 10px;
    display: inline-block;
}

.app-cta-content p {
    color: rgba(255,255,255,0.92);
    font-size: 17px;
    line-height: 1.95;
    margin: 0 auto 38px;
    max-width: 620px;
}

.app-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 35px;
}

.app-download-btn-light {
    background: #1a1a1a;
    color: #fff;
}

.app-download-btn-light:hover {
    background: #fff;
    color: var(--dark-gold);
}

.app-cta-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 26px;
    border-radius: 50px;
    color: #fff;
}

.app-cta-stars {
    display: inline-flex;
    gap: 3px;
    color: #fbbf24;
}

.app-cta-stars .icon { font-size: 16px; }

.app-cta-rating strong {
    font-size: 18px;
    font-weight: 900;
}

.app-cta-rating span {
    font-size: 13px;
    opacity: 0.85;
}

body.dark-mode .app-about-box {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

body.dark-mode .app-about-box strong { color: #eee; }

body.dark-mode .app-feature {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

body.dark-mode .app-feature h3 { color: #eee; }

body.dark-mode .guide-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

body.dark-mode .guide-card h3 { color: #eee; }

body.dark-mode .guide-list li {
    border-bottom-color: #2a2a2a;
}

body.dark-mode .phone-screen {
    background: linear-gradient(180deg, #2a2520 0%, #1a1410 100%);
}

body.dark-mode .phone-app-card {
    background: #1a1a1a;
}

body.dark-mode .phone-app-card h5 { color: #eee; }

body.dark-mode .phone-app-header {
    background: rgba(26,26,26,0.7);
}

body.dark-mode .phone-app-header h4 { color: #eee; }

@media (max-width: 992px) {
    .app-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .app-hero-mockup {
        min-height: 500px;
        order: -1;
    }

    .app-hero-desc { margin-inline: auto; }
    .app-download-buttons { justify-content: center; }
    .app-hero-stats { justify-content: center; }
    .app-hero-title { font-size: 38px; }

    .app-features-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .app-hero { padding: 50px 0 70px; }
    .app-hero-title { font-size: 30px; }
    .app-hero-desc { font-size: 15px; }
    .app-about-box { padding: 30px 24px; }
    .app-about-box p { font-size: 14px; }

    .app-cta-content h2 { font-size: 26px; }
    .app-cta-content p { font-size: 14.5px; }

    .phone-frame { width: 200px; height: 410px; }
    .phone-app-header img { width: 80px; }

    .app-hero-stats { flex-wrap: wrap; gap: 16px; }
    .app-hero-stat-divider { display: none; }
}

@media (max-width: 480px) {
    .app-features-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: 1fr; }
    .app-download-btn { min-width: 0; flex: 1 1 100%; justify-content: center; }
}

.apps-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 50px;
}

.app-choice-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 22px;
    padding: 40px 32px;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.app-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
    pointer-events: none;
}

.app-choice-card.alt::before {
    background: linear-gradient(90deg, #2d8f5f, #1f6b45);
}

.app-choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border-color: var(--primary-gold);
}

.app-choice-card.alt:hover { border-color: #2d8f5f; }

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

.app-choice-badge {
    position: absolute;
    top: 24px;
    inset-inline-end: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(251,191,36,0.30);
}

.app-choice-badge .icon { font-size: 11px; }

.app-choice-icon {
    width: 86px;
    height: 86px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 14px 30px rgba(201,169,97,0.30);
    transition: background-color 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.35s;
}

.app-choice-card.alt .app-choice-icon {
    background: linear-gradient(135deg, #2d8f5f, #1f6b45);
    box-shadow: 0 14px 30px rgba(45,143,95,0.30);
}

.app-choice-card:hover .app-choice-icon {
    transform: scale(1.08) rotate(-5deg);
}

.app-choice-icon .icon { font-size: 38px; }

.app-choice-card h2 {
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 6px;
}

.app-choice-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 18px;
}

.app-choice-card.alt .app-choice-tag { color: #2d8f5f; }

.app-choice-card > p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.9;
    margin: 0 0 24px;
}

.app-choice-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.app-choice-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px dashed var(--border-color);
}

.app-choice-features li:last-child { border-bottom: none; }

.app-choice-features li .icon {
    color: var(--primary-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.app-choice-card.alt .app-choice-features li .icon { color: #2d8f5f; }

.app-choice-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-size: 15px;
    font-weight: 800;
    padding: 14px 22px;
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    align-self: flex-start;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}

.app-choice-card.alt .app-choice-cta {
    color: #2d8f5f;
    border-color: #2d8f5f;
}

.app-choice-card:hover .app-choice-cta {
    background: var(--primary-gold);
    color: #fff;
}

.app-choice-card.alt:hover .app-choice-cta {
    background: #2d8f5f;
    color: #fff;
}

.app-choice-cta .icon {
    font-size: 12px;
    transition: transform 0.25s;
}

.app-choice-card:hover .app-choice-cta .icon {
    transform: translateX(-6px);
}

.apps-compare-box {
    background: linear-gradient(135deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 18px;
    padding: 32px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    align-items: start;
}

.apps-compare-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.apps-compare-box h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
}

.apps-compare-box p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.95;
    margin: 0 0 16px;
}

.apps-compare-box strong { color: var(--text-dark); }

.app-hero-green {
    background: linear-gradient(135deg, #0d2a1c 0%, #1a3d2a 50%, #0d1f15 100%);
}

.app-hero-green .app-hero-bg-pattern {
    background-image:
        radial-gradient(circle at 15% 20%, rgba(45,143,95,0.18) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(45,143,95,0.10) 0%, transparent 45%);
}

.app-hero-tag.green {
    background: rgba(45,143,95,0.18);
    border-color: rgba(45,143,95,0.4);
    color: #5db585;
}

.app-hero-green .app-hero-title span {
    background: linear-gradient(135deg, #5db585, #2d8f5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-hero-green .app-hero-stat-num { color: #5db585; }

.phone-app-card.alt-green {
    background: linear-gradient(135deg, #2d8f5f, #1f6b45);
    color: #fff;
}

.phone-app-card.alt-green > .icon {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.phone-app-card.alt-green h5 { color: #fff; }
.phone-app-card.alt-green p { color: rgba(255,255,255,0.85); }

.app-feature.feature-green:hover {
    border-color: #2d8f5f;
}

.app-feature.feature-green::before {
    background: linear-gradient(90deg, #2d8f5f, #1f6b45);
}

.app-feature.feature-green .app-feature-icon {
    background: linear-gradient(135deg, rgba(45,143,95,0.12), rgba(45,143,95,0.04));
    color: #2d8f5f;
}

.app-feature.feature-green:hover .app-feature-icon {
    background: linear-gradient(135deg, #2d8f5f, #1f6b45);
    color: #fff;
}

.guide-card.guide-green:hover { border-color: #2d8f5f; }

.guide-card.guide-green .guide-card-num { color: #2d8f5f; }

.guide-card.guide-green .guide-card-icon {
    background: linear-gradient(135deg, #2d8f5f, #1f6b45);
    box-shadow: 0 8px 20px rgba(45,143,95,0.30);
}

.app-cta-green {
    background: linear-gradient(135deg, #2d8f5f 0%, #1f6b45 100%);
}

.app-cta-green .app-cta-content h2 span {
    color: #1f6b45;
}

.app-cta-green .app-download-btn-light:hover {
    color: #1f6b45;
}

@media (max-width: 992px) {
    .apps-choice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .apps-compare-box {
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }
    .apps-compare-icon { margin: 0 auto; }
    .app-choice-card { padding: 32px 24px; }
    .app-choice-card h2 { font-size: 22px; }
}

body.dark-mode .app-choice-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

body.dark-mode .app-choice-card h2 { color: #eee; }

body.dark-mode .app-choice-features li {
    color: #ddd;
    border-bottom-color: #2a2a2a;
}

body.dark-mode .apps-compare-box {
    background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.04));
    border-color: rgba(201,169,97,0.3);
}

body.dark-mode .apps-compare-box h3 { color: #eee; }
body.dark-mode .apps-compare-box strong { color: #eee; }
