:root {
    /* Apple UI Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F7; /* Apple's subtle gray for contrast */
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --accent-red: #FF3B30;
    --accent-red-hover: #E3352B;

    /* Typography */
    --font-stack: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Metrics */
    --radius-btn: 8px;
    --radius-card: 16px;
    --space-section: 80px;
    --max-w-container: 1100px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-w-container);
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--accent-red);
}

/* Typography Utilities */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn:disabled {
    background-color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-primary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo .red-dot {
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    padding: 70px 0 30px;
    text-align: center;
}

.hero-container {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Added spacing hack for button margin */
.hero .btn {
    margin-top: 10px;
}

/* Hero Video VSL */
.hero-video-wrapper {
    max-width: 860px;
    margin: 40px auto; 
    padding: 12px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mt-40 {
    margin-top: 20px;
    display: inline-block;
}

/* Value / Pain Section */
.value-proposition {
    padding: var(--space-section) 0;
    background-color: var(--bg-secondary);
}

.value-container {
    text-align: center;
    max-width: 800px;
}

.value-text {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.3;
}

/* Partners Marquee / Carousel */
.partners-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
    /* Apple-like subtle fade on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* Movimiento de izquierda a derecha */
    animation: scrollLeftToRight 35s linear infinite;
}

.partners-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeftToRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 220px;
    padding: 0 30px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Filtrar a escala de grises para que se vea más clean y unificado, 
       pero agregamos shadow suave para destacar porque no tienen fondo */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.06));
    transition: all 0.3s ease;
    opacity: 0.9;
}

.partner-logo:hover {
    transform: scale(1.08);
    opacity: 1;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}
.results-grid {
    display: flex;
    gap: 30px;
}
@media (max-width: 768px) {
    .results-grid {
        flex-direction: column;
    }
}
.result-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.floating-icon {
    margin-bottom: 25px;
    animation: floating 4s ease-in-out infinite;
}
.floating-icon.delay-1 {
    animation-delay: 2s;
}
.emoji-3d {
    font-size: 5.5rem;
    display: block;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.12));
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
.result-card h4 {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 15px;
}
.result-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent-red); /* Cambiado a rojo para matchear brand */
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.result-number .percent {
    font-size: 3rem;
    margin-left: 4px;
}
.result-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.result-subtext strong {
    color: var(--text-main);
}

/* Mechanism Section */
.mechanism {
    padding: var(--space-section) 0;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mechanism-card {
    padding: 40px;
    background: var(--bg-primary);
    border-radius: var(--radius-card);
    transition: transform 0.3s ease;
    text-align: center;
}

.mechanism-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: #FFF2F1; /* Ligth red tint */
    color: var(--accent-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Smart Filter Section */
.filter-section {
    padding: 60px 0 var(--space-section);
    background-color: var(--bg-secondary);
}

.filter-container {
    max-width: 700px;
    background: var(--bg-primary);
    padding: 60px;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.filter-header {
    text-align: center;
    margin-bottom: 48px;
}

.filter-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.filter-header p {
    color: var(--text-muted);
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E5E5EA;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--accent-red);
}

.input-text {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E5EA;
    border-radius: var(--radius-btn);
    font-family: var(--font-stack);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s ease;
    background-color: var(--bg-primary);
}

.input-text:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.option-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
    .option-grid-2col {
        grid-template-columns: 1fr;
    }
}

.bg-white {
    background-color: white !important;
}

.form-group {
    margin-bottom: 32px;
}

.form-group > label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.option-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background-color: var(--bg-primary);
    border: 2px solid #E5E5EA; /* Apple light gray border */
    border-radius: var(--radius-btn);
    padding: 16px;
    text-align: center;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.option-card:hover .option-content {
    border-color: #C7C7CC;
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--accent-red);
    background-color: #FFF2F1; /* Light red tint */
    color: var(--accent-red);
}

/* Result Zone */
.result-zone {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E5E5EA;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.hidden {
    display: none;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.result-message {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Media Showcase (Instrucciones) */
.media-showcase {
    padding: 60px 0;
    background-color: var(--bg-primary);
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.04em;
}
.text-center {
    text-align: center;
}
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 40px auto 0;
}
.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: var(--bg-secondary);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.b-icon {
    width: 56px;
    height: 56px;
    background-color: #FFF2F1;
    color: var(--text-main);
    font-size: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}
.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg-primary);
}
.marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    overflow: hidden;
    padding: 20px 0 40px;
}
.marquee-track {
    display: flex;
    gap: 30px;
    padding-left: 30px;
    animation: scrollLinear 45s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes scrollLinear {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.review-card {
    min-width: 400px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-red), #ff7e67);
}
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.review-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.review-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
    flex-grow: 1;
    margin-bottom: 24px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Bonus Section */
.bonus-section {
    padding: 40px 20px 80px;
    background-color: var(--bg-secondary);
}
.bonus-card {
    background: linear-gradient(135deg, var(--accent-red) 0%, #D92319 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}
.bonus-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.bonus-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #fff;
}
.bonus-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 30px;
}
.bonus-card .btn {
    transition: all 0.3s ease;
}
.bonus-card .btn:hover {
    transform: translateY(-3px);
    background-color: var(--bg-secondary) !important;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 100px;
    background-color: var(--bg-primary);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item[open] {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 24px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    position: relative;
    outline: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s;
}
.faq-item:hover .faq-question::after {
    color: var(--accent-red);
}
.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    padding: 0 30px 30px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-container {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .mechanism-card {
        padding: 24px;
    }
}

/* --- Vertical Video Carousel --- */
.vertical-carousel-container {
    position: relative;
    width: 100%;
    max-width: 360px; /* Tamaño refinado para semejar un smartphone ideal */
    margin: 0 auto;
    border-radius: 40px; /* Bordes más curvos imitando carcasa de celular */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 6px solid rgba(255, 255, 255, 0.8); /* Borde más grueso tipo bisel */
    padding: 0; /* Sin padding interno para que el video llene el marco hasta el bisel */
    box-shadow: 0 40px 80px rgba(0,0,0,0.1); 
    overflow: visible; /* IMPORTANTE: Hace que los botones externos por fin se puedan ver y clickear */
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 34px; /* Radio interno para cuadrar perfecto con el borde */
    background: #000;
    width: 100%;
    aspect-ratio: 9 / 16; /* CRÍTICO: Fuerza la relación de aspecto 1080x1920 exacta */
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.vertical-carousel-video {
    width: 100%;
    height: 100%; /* Toma todo el alto exacto de la proporción 9:16 */
    outline: none;
    display: block;
    object-fit: cover; /* Al ser ambos contenedor y video 9:16, esto lo encaja a medida micrométrica quitando barras */
    border-radius: 34px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    transition: all 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.prev-btn {
    left: -70px; /* Afuera del marco del celular en PC */
}

.next-btn {
    right: -70px; /* Afuera del marco del celular en PC */
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D1D6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--text-main);
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .vertical-carousel-container {
        max-width: 310px;
        border-width: 4px;
        border-radius: 30px;
    }
    .carousel-track-wrapper { border-radius: 26px; }
    .vertical-carousel-video { border-radius: 26px; }
    .prev-btn { left: -15px; width: 44px; height: 44px; }
    .next-btn { right: -15px; width: 44px; height: 44px; }
}

/* Responsive Image Fix */
.responsive-showcase {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .responsive-showcase {
        width: 100%;
    }
}

/* Hero Buttons Layout */
.hero-buttons-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .hero-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons-wrapper .btn {
        width: 100%;
        margin-top: 0;
    }
}

/* Why Section */
.why-section {
    padding: var(--space-section) 0;
    background-color: var(--bg-primary);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
}
.why-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-phones-img-generated {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.why-phones-img-generated:hover {
    transform: translateY(-5px);
}
.why-text-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.why-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}
.why-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
}
.why-text strong {
    display: block;
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-phones-img-generated {
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}
