/* =============================================================================
   CRC MOBILE APP LANDING PAGE
   ============================================================================= */

/* Hero Section */
.mobile-hero {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 50%, #e1f0fa 100%);
    background-size: 200% 200%;
    animation: heroGradientShift 8s ease infinite;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mobile-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(10, 132, 199, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: heroOrbDrift 12s ease-in-out infinite;
}

@keyframes heroOrbDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

.mobile-hero .hero-content {
    position: relative;
    z-index: 2;
}

.mobile-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid rgba(10, 132, 199, 0.15);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(10, 132, 199, 0.08);
}

.mobile-hero .hero-badge i {
    font-size: 0.75rem;
}

.mobile-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.mobile-hero h1 span {
    color: var(--primary);
}

.mobile-hero .hero-description {
    font-size: 1.15rem;
    color: #5a6b7d;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.mobile-hero .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.mobile-hero .store-badge {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.mobile-hero .store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mobile-hero .store-badge img {
    height: 52px;
    border-radius: 10px;
}

.mobile-hero .hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 132, 199, 0.1);
}

.mobile-hero .hero-stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    min-width: 60px;
}

.mobile-hero .hero-stat-item h3 .counter-suffix {
    font-size: inherit;
    font-weight: inherit;
}

.mobile-hero .hero-stat-item p {
    font-size: 0.85rem;
    color: #7a8a9c;
    margin-bottom: 0;
    font-weight: 500;
}

.mobile-hero .hero-image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: heroFloat 4s ease-in-out infinite;
}

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

.mobile-hero .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(10, 132, 199, 0.15));
    mix-blend-mode: multiply;
}

/* Section Defaults */
.mobile-section {
    padding: 80px 0;
}

.mobile-section-alt {
    background: var(--light, #F8F9FA);
}

.mobile-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.mobile-section-title span {
    color: var(--primary);
}

.mobile-section-subtitle {
    font-size: 1.1rem;
    color: #6c7a8d;
    line-height: 1.7;
    max-width: 700px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.step-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(10, 132, 199, 0.25);
}

.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 42px);
    width: calc(100% - 84px);
    height: 2px;
    background: transparent;
    z-index: 1;
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0,
        var(--primary) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.35;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transform: rotate(45deg);
    opacity: 0.35;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.step-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: #6c7a8d;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-item {
        max-width: 100%;
    }

    .step-connector {
        display: none;
    }

    .how-it-works {
        padding: 50px 0;
    }
}

/* Features Overview Section */
.features-overview-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(10, 132, 199, 0.06);
    border: 1px solid rgba(10, 132, 199, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(10, 132, 199, 0.12);
    border-color: rgba(10, 132, 199, 0.12);
}

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

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: white;
}

.feature-card-icon.blue { background: linear-gradient(135deg, var(--primary) 0%, #2196F3 100%); }
.feature-card-icon.green { background: linear-gradient(135deg, #28a745 0%, #20c997 100%); }
.feature-card-icon.purple { background: linear-gradient(135deg, #6f42c1 0%, #9b59b6 100%); }
.feature-card-icon.orange { background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%); }
.feature-card-icon.teal { background: linear-gradient(135deg, var(--secondary) 0%, #17a2b8 100%); }
.feature-card-icon.red { background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%); }
.feature-card-icon.navy { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); }
.feature-card-icon.pink { background: linear-gradient(135deg, #e83e8c 0%, #d63384 100%); }

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c7a8d;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Highlight Feature Row (alternating image + text) */
.highlight-feature {
    padding: 80px 0;
}

.highlight-feature:nth-child(even) {
    background: var(--light, #F8F9FA);
}

.highlight-feature .highlight-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 132, 199, 0.1);
}

.highlight-feature .highlight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-feature .highlight-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.highlight-feature .highlight-content h2 span {
    color: var(--primary);
}

.highlight-feature .highlight-content p {
    font-size: 1.05rem;
    color: #5a6b7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.highlight-feature .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #4a5568;
}

.highlight-feature .feature-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* Bill Payments Grid */
.bill-card {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(10, 132, 199, 0.06);
    border: 1px solid rgba(10, 132, 199, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.bill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(10, 132, 199, 0.1);
    border-color: var(--primary);
}

.bill-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.bill-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.bill-card p {
    font-size: 0.85rem;
    color: #7a8a9c;
    margin-bottom: 0;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
}

.security-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(10, 132, 199, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.security-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.security-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Key Features Summary */
.key-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border: 1px solid rgba(10, 132, 199, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(10, 132, 199, 0.04);
}

.key-feature-pill:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(10, 132, 199, 0.1);
    transform: translateY(-2px);
}

.key-feature-pill i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* FAQ Section */
.mobile-faq-category {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--medium-gray, #e0e0e0);
}

.mobile-faq-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mobile-faq-category-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light, #2196F3) 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
}

.mobile-faq-category-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
}

.mobile-faq-category-header i {
    color: white;
}

.mobile-faq-category .accordion-item {
    border: none;
    border-bottom: 1px solid var(--medium-gray, #e0e0e0);
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

.mobile-faq-category .accordion-item:last-child {
    border-bottom: none;
}

.mobile-faq-category .accordion-item:hover {
    background-color: var(--light-gray, #f5f5f5);
}

.mobile-faq-category .accordion-button {
    background: white !important;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--dark) !important;
    font-size: 1.1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

.mobile-faq-category .accordion-button:not(.collapsed) {
    background: var(--light-gray, #f5f5f5) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}

.mobile-faq-category .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 132, 199, 0.25) !important;
    border-color: var(--primary);
    z-index: 1;
}

.mobile-faq-category .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A84C7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.mobile-faq-category .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.mobile-faq-category .accordion-body {
    padding: 1.5rem 2rem 2rem;
    background: white;
    color: var(--dark-gray, #5a6b7d);
    line-height: 1.6;
    font-size: 1rem;
}

.mobile-faq-category .accordion-body a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.mobile-faq-category .accordion-body a:hover {
    text-decoration: underline;
}

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.download-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.download-cta .container {
    position: relative;
    z-index: 2;
}

.download-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 550px;
}

.download-cta .store-badge {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.download-cta .store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.download-cta .store-badge img {
    height: 52px;
    border-radius: 10px;
}

.download-cta .cta-image img {
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Regulated Badge */
.regulated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
}

.regulated-badge i {
    font-size: 0.8rem;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 991.98px) {
    .mobile-faq-category-header {
        padding: 1.25rem 1.5rem;
    }

    .mobile-faq-category-header h3 {
        font-size: 1.125rem;
    }

    .mobile-faq-category .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-faq-category .accordion-body {
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .mobile-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
        text-align: center;
    }

    .mobile-hero .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-hero .hero-description {
        max-width: 100%;
    }

    .mobile-hero h1 {
        font-size: 2.4rem;
    }

    .mobile-hero .hero-cta {
        justify-content: center;
    }

    .mobile-hero .hero-image-wrapper {
        margin-top: 2.5rem;
    }

    .mobile-hero .hero-image-wrapper img {
        max-height: 380px;
    }

    .mobile-hero .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .mobile-section {
        padding: 60px 0;
    }

    .highlight-feature {
        padding: 60px 0;
    }

    .mobile-section-title {
        font-size: 1.9rem;
    }

    .security-section {
        padding: 60px 0;
    }

    .download-cta {
        padding: 60px 0;
        text-align: center;
    }

    .download-cta p {
        margin-left: auto;
        margin-right: auto;
    }

    .download-cta .cta-image {
        margin-top: 3rem;
    }

    .download-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .mobile-hero {
        padding: 2rem 0 1.5rem;
    }

    .mobile-hero h1 {
        font-size: 1.9rem;
    }

    .mobile-hero .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .mobile-hero .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .mobile-hero .hero-cta {
        margin-bottom: 1.5rem;
    }

    .mobile-hero .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        padding-top: 1rem;
    }

    .mobile-hero .hero-stat-item h3 {
        font-size: 1.3rem;
        min-width: auto;
    }

    .mobile-hero .hero-stat-item p {
        font-size: 0.75rem;
    }

    .mobile-hero .store-badge img {
        height: 42px;
    }

    .mobile-hero .hero-image-wrapper {
        margin-top: 2rem;
    }

    .mobile-hero .hero-image-wrapper img {
        max-height: 300px;
    }

    .mobile-section {
        padding: 40px 0;
    }

    .mobile-section-title {
        font-size: 1.5rem;
    }

    .mobile-section-subtitle {
        font-size: 0.95rem;
    }

    .highlight-feature {
        padding: 40px 0;
    }

    .highlight-feature .highlight-content {
        margin-top: 1.5rem;
    }

    .highlight-feature .highlight-content h2 {
        font-size: 1.5rem;
    }

    .highlight-feature .highlight-content p {
        font-size: 0.95rem;
    }

    .highlight-feature .feature-list li {
        font-size: 0.9rem;
    }

    .security-section {
        padding: 40px 0;
    }

    .security-section h2 {
        font-size: 1.6rem !important;
        text-align: center;
    }

    .security-section > .container > .row > .col-lg-5 p {
        text-align: center;
    }

    .mobile-faq-category-header {
        padding: 1rem 1.25rem;
    }

    .mobile-faq-category-header h3 {
        font-size: 1.05rem;
    }

    .mobile-faq-category .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .mobile-faq-category .accordion-body {
        padding: 1rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .bill-card {
        padding: 1.25rem 1rem;
    }

    .bill-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .bill-card h5 {
        font-size: 0.85rem;
    }

    .bill-card p {
        font-size: 0.75rem;
    }

    .download-cta {
        padding: 40px 0;
    }

    .download-cta h2 {
        font-size: 1.6rem;
    }

    .download-cta .store-badge img {
        height: 42px;
    }

    .download-cta .cta-image img {
        max-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .mobile-hero {
        padding: 1.5rem 0 1rem;
    }

    .mobile-hero h1 {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .mobile-hero .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .mobile-hero .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }

    .mobile-hero .store-badge img {
        height: 38px;
    }

    .mobile-hero .hero-stats {
        gap: 1rem;
    }

    .mobile-hero .hero-stat-item h3 {
        font-size: 1.15rem;
    }

    .mobile-hero .hero-stat-item p {
        font-size: 0.7rem;
    }

    .mobile-hero .hero-image-wrapper img {
        max-height: 260px;
    }

    /* Disable float animation on small screens for performance */
    .mobile-hero .hero-image-wrapper {
        animation: none;
    }

    .mobile-section {
        padding: 35px 0;
    }

    .mobile-section-title {
        font-size: 1.35rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h4 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.88rem;
    }

    .feature-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .highlight-feature {
        padding: 35px 0;
    }

    .highlight-feature .highlight-content h2 {
        font-size: 1.35rem;
    }

    .security-section {
        padding: 35px 0;
    }

    .security-item {
        padding: 0.75rem 0;
    }

    .security-item-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .security-item h5 {
        font-size: 0.9rem;
    }

    .security-item p {
        font-size: 0.8rem;
    }

    .key-feature-pill {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.4rem;
    }

    .how-it-works {
        padding: 35px 0;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .step-icon {
        font-size: 1.4rem;
    }

    .step-item h4 {
        font-size: 1rem;
    }

    .step-item p {
        font-size: 0.85rem;
    }
}
