/**
 * Landing Page: Mileage Tracker iPhone
 * Specific styles for the English SEO landing page
 * Extends landing-rimborso.css base styles
 */

/* ============================================
   LANDING WRAPPER
   ============================================ */
.landing-mileage-iphone {
    overflow-x: hidden;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.landing-mileage-iphone .landing-breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
}

.landing-mileage-iphone .landing-breadcrumb a {
    color: var(--light-text-secondary);
    text-decoration: none;
}

.landing-mileage-iphone .landing-breadcrumb a:hover {
    color: var(--accent);
}

.landing-mileage-iphone .landing-breadcrumb span {
    color: var(--light-text-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.landing-mileage-iphone .landing-hero {
    padding: 60px 0 80px;
}

.landing-mileage-iphone .landing-hero__badge {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.landing-mileage-iphone .landing-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.landing-mileage-iphone .landing-hero__intro {
    font-size: 1.2rem;
    color: var(--light-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landing-mileage-iphone .landing-hero__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.landing-mileage-iphone .landing-hero__benefits li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-mileage-iphone .landing-hero__benefits li::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--secondary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.landing-mileage-iphone .landing-hero__cta-wrapper {
    margin-bottom: 1.5rem;
}

.landing-mileage-iphone .landing-hero__cta-note {
    font-size: 0.9rem;
    color: var(--light-text-secondary);
    margin-top: 10px;
}

/* Hero Stats */
.landing-mileage-iphone .landing-hero__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 1.5rem;
}

.landing-mileage-iphone .stat-item {
    display: flex;
    flex-direction: column;
}

.landing-mileage-iphone .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.landing-mileage-iphone .stat-label {
    font-size: 0.85rem;
    color: var(--light-text-secondary);
}

.landing-mileage-iphone .landing-hero__badges {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.landing-mileage-iphone .landing-hero__badges img {
    height: 45px;
}

.landing-mileage-iphone .landing-hero__image {
    text-align: center;
}

.landing-mileage-iphone .landing-hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   TRUST SIGNALS SECTION
   ============================================ */
.trust-signals {
    padding: 40px 0;
    background-color: var(--light-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-signals__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.landing-mileage-iphone .pain-points {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.landing-mileage-iphone .pain-points .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .pain-card {
    background-color: var(--light-panel-bg);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-mileage-iphone .pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.landing-mileage-iphone .pain-card__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.landing-mileage-iphone .pain-card__icon svg {
    width: 30px;
    height: 30px;
    fill: #e74c3c;
}

.landing-mileage-iphone .pain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.landing-mileage-iphone .pain-card p {
    color: var(--light-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION (ZIGZAG)
   ============================================ */
.landing-mileage-iphone .how-it-works-landing {
    padding: var(--section-padding);
}

.landing-mileage-iphone .how-it-works-landing .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.landing-mileage-iphone .step-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 60px;
}

.landing-mileage-iphone .step-row:last-child {
    margin-bottom: 0;
}

.landing-mileage-iphone .step-row--reverse {
    flex-direction: row-reverse;
}

.landing-mileage-iphone .step-row__content {
    flex: 1;
}

.landing-mileage-iphone .step-row__image {
    flex: 1;
    text-align: center;
}

.landing-mileage-iphone .step-row__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.landing-mileage-iphone .step-row__icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.landing-mileage-iphone .step-row__icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.landing-mileage-iphone .step-row__content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

.landing-mileage-iphone .step-row__content > p {
    font-size: 1.1rem;
    color: var(--light-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.landing-mileage-iphone .step-row__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-mileage-iphone .step-row__features li {
    padding: 8px 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-mileage-iphone .step-row__features li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: rgba(95, 210, 147, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.privacy-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary);
}

.privacy-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.privacy-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.privacy-list li {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-list li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--secondary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.privacy-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(95, 210, 147, 0.15);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
}

.privacy-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

/* ============================================
   FEATURE GRID SECTION
   ============================================ */
.feature-grid-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.feature-grid-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .why-card {
    background-color: var(--light-panel-bg);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.landing-mileage-iphone .why-card:hover {
    transform: translateY(-3px);
}

.landing-mileage-iphone .why-card__icon {
    width: 50px;
    height: 50px;
    background-color: rgba(95, 210, 147, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.landing-mileage-iphone .why-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.landing-mileage-iphone .why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-text);
}

.landing-mileage-iphone .why-card p {
    color: var(--light-text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PERSONAS SECTION
   ============================================ */
.landing-mileage-iphone .personas {
    padding: var(--section-padding);
}

.landing-mileage-iphone .personas .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .persona-card {
    background-color: var(--light-panel-bg);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.landing-mileage-iphone .persona-card__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 98, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.landing-mileage-iphone .persona-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.landing-mileage-iphone .persona-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-text);
}

.landing-mileage-iphone .persona-card p {
    color: var(--light-text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   COMPARISON TABLE SECTION
   ============================================ */
.landing-mileage-iphone .comparison {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.landing-mileage-iphone .comparison .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.landing-mileage-iphone .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--light-panel-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-width: 700px;
}

.landing-mileage-iphone .comparison-table th,
.landing-mileage-iphone .comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-mileage-iphone .comparison-table th {
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.landing-mileage-iphone .comparison-table th:first-child {
    text-align: left;
    background-color: var(--light-panel-bg);
    color: var(--light-text);
}

.landing-mileage-iphone .comparison-table th:nth-child(2) {
    background-color: var(--secondary);
}

.landing-mileage-iphone .comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--light-text);
}

.landing-mileage-iphone .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-mileage-iphone .comparison-table tbody tr:hover {
    background-color: rgba(13, 98, 225, 0.02);
}

.landing-mileage-iphone .comparison-table .check {
    color: var(--secondary);
    font-size: 1.3rem;
}

.landing-mileage-iphone .comparison-table .cross {
    color: #e74c3c;
    font-size: 1.3rem;
}

.landing-mileage-iphone .comparison-table .partial {
    color: #f39c12;
    font-size: 0.85rem;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.landing-mileage-iphone .reviews-landing {
    padding: var(--section-padding);
}

.landing-mileage-iphone .reviews-landing .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .review-card {
    background-color: var(--light-panel-bg);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-mileage-iphone .review-card__stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.landing-mileage-iphone .review-card__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

.landing-mileage-iphone .review-card__author {
    font-weight: 600;
    color: var(--light-text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.landing-mileage-iphone .faq-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.landing-mileage-iphone .faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-mileage-iphone .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.landing-mileage-iphone .faq-accordion .accordion-item {
    background-color: var(--light-panel-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.landing-mileage-iphone .faq-accordion .accordion-button {
    background-color: var(--light-panel-bg);
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none;
}

.landing-mileage-iphone .faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--light-panel-bg);
    color: var(--accent);
}

.landing-mileage-iphone .faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.landing-mileage-iphone .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230D62E1'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
}

.landing-mileage-iphone .faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--light-text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.landing-mileage-iphone .cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    text-align: center;
}

.landing-mileage-iphone .cta-final h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.landing-mileage-iphone .cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.landing-mileage-iphone .cta-final__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.landing-mileage-iphone .cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: var(--accent);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-mileage-iphone .cta-final__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--accent);
}

.landing-mileage-iphone .cta-final__btn svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.landing-mileage-iphone .cta-final__note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 20px;
}

/* ============================================
   DARK MODE
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Panel backgrounds */
    .landing-mileage-iphone .pain-card,
    .landing-mileage-iphone .why-card,
    .landing-mileage-iphone .persona-card,
    .landing-mileage-iphone .review-card,
    .landing-mileage-iphone .comparison-table,
    .landing-mileage-iphone .faq-accordion .accordion-item,
    .landing-mileage-iphone .faq-accordion .accordion-button {
        background-color: var(--dark-panel-bg);
        border-color: rgba(255, 255, 255, 0.1);
    }

    /* Section titles */
    .landing-mileage-iphone .section-title {
        color: var(--dark-text);
    }

    /* Primary text */
    .landing-mileage-iphone .landing-hero h1,
    .landing-mileage-iphone .landing-hero__benefits li,
    .landing-mileage-iphone .pain-card h3,
    .landing-mileage-iphone .step-row__content h3,
    .landing-mileage-iphone .step-row__features li,
    .landing-mileage-iphone .why-card h4,
    .landing-mileage-iphone .persona-card h4,
    .landing-mileage-iphone .review-card__text,
    .landing-mileage-iphone .comparison-table td,
    .landing-mileage-iphone .comparison-table td:first-child,
    .landing-mileage-iphone .faq-accordion .accordion-button {
        color: var(--dark-text);
    }

    /* Secondary text */
    .landing-mileage-iphone .landing-hero__intro,
    .landing-mileage-iphone .landing-hero__cta-note,
    .landing-mileage-iphone .pain-card p,
    .landing-mileage-iphone .step-row__content > p,
    .landing-mileage-iphone .why-card p,
    .landing-mileage-iphone .persona-card p,
    .landing-mileage-iphone .review-card__author,
    .landing-mileage-iphone .faq-accordion .accordion-body,
    .landing-mileage-iphone .faq-section .text-center p,
    .landing-mileage-iphone .landing-breadcrumb a,
    .landing-mileage-iphone .landing-breadcrumb span,
    .trust-badge,
    .stat-label {
        color: var(--dark-text-secondary);
    }

    /* Stats value */
    .landing-mileage-iphone .stat-value {
        color: var(--accent-light);
    }

    /* Trust signals */
    .trust-signals {
        background-color: var(--dark-bg);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .trust-badge svg {
        fill: var(--accent-light);
    }

    /* Comparison table */
    .landing-mileage-iphone .comparison-table th:first-child {
        background-color: var(--dark-panel-bg);
        color: var(--dark-text);
    }

    .landing-mileage-iphone .comparison-table tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .landing-mileage-iphone .comparison-table th,
    .landing-mileage-iphone .comparison-table td {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    /* Section backgrounds */
    .landing-mileage-iphone .pain-points,
    .feature-grid-section,
    .landing-mileage-iphone .comparison,
    .landing-mileage-iphone .faq-section {
        background-color: var(--dark-bg);
    }

    /* Icons backgrounds */
    .landing-mileage-iphone .pain-card__icon {
        background-color: rgba(231, 76, 60, 0.2);
    }

    .landing-mileage-iphone .persona-card__icon {
        background-color: rgba(13, 98, 225, 0.2);
    }

    .landing-mileage-iphone .why-card__icon {
        background-color: rgba(95, 210, 147, 0.2);
    }

    /* Accordion */
    .landing-mileage-iphone .faq-accordion .accordion-button:not(.collapsed) {
        background-color: var(--dark-panel-bg);
        color: var(--accent-light);
    }

    /* Links */
    .landing-mileage-iphone .faq-accordion .accordion-body a,
    .landing-mileage-iphone .faq-section .text-center a {
        color: var(--accent-light);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .landing-mileage-iphone .landing-hero h1 {
        font-size: 2.2rem;
    }

    .landing-mileage-iphone .landing-hero__image {
        margin-top: 40px;
    }

    .landing-mileage-iphone .step-row {
        flex-direction: column;
        gap: 30px;
    }

    .landing-mileage-iphone .step-row--reverse {
        flex-direction: column;
    }

    .landing-mileage-iphone .step-row__image {
        order: -1;
    }

    .landing-mileage-iphone .cta-final h2 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 2rem;
    }

    .privacy-list {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .landing-mileage-iphone .landing-hero {
        padding: 40px 0 60px;
    }

    .landing-mileage-iphone .landing-hero h1 {
        font-size: 1.8rem;
    }

    .landing-mileage-iphone .landing-hero__intro {
        font-size: 1rem;
    }

    .landing-mileage-iphone .landing-hero__benefits li {
        font-size: 1rem;
    }

    .landing-mileage-iphone .landing-hero__stats {
        justify-content: flex-start;
    }

    .trust-signals__grid {
        gap: 25px;
    }

    .trust-badge {
        font-size: 0.85rem;
    }

    .landing-mileage-iphone .section-title {
        font-size: 1.8rem !important;
    }

    .landing-mileage-iphone .step-row__content h3 {
        font-size: 1.4rem;
    }

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

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-intro {
        font-size: 1rem;
    }

    .landing-mileage-iphone .cta-final {
        padding: 60px 0;
    }

    .landing-mileage-iphone .cta-final h2 {
        font-size: 1.6rem;
    }

    .landing-mileage-iphone .cta-final p {
        font-size: 1rem;
    }

    .landing-mileage-iphone .cta-final__btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .landing-mileage-iphone .landing-hero__badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-mileage-iphone .cta-final__buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-signals__grid {
        flex-direction: column;
        gap: 20px;
    }
}
