/* ============================================
   EASY CONNECT - Mobile Site
   m.telegram-fix.com
   ============================================ */

/* --- Variables --- */
:root {
    --bg: #0a0e17;
    --bg2: #0d1220;
    --card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.06);
    --border-l: rgba(255, 255, 255, 0.12);
    --cyan: #00b4d8;
    --purple: #7b2ff7;
    --mint: #00f5d4;
    --white: #f0f4ff;
    --light: #c5cee0;
    --muted: #7a8ba8;
    --dark: #4a5568;
    --grad: linear-gradient(135deg, #00b4d8, #7b2ff7);
    --grad2: linear-gradient(135deg, #00f5d4, #00b4d8);
    --grad3: linear-gradient(135deg, #7b2ff7, #00f5d4);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-h: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* --- Canvas background --- */
#bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

header, main, footer {
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}
.logo i {
    font-size: 1.6rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo span {
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
}

.hdr-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--grad);
    color: var(--bg);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(0, 180, 216, 0.3);
    transition: all 0.3s var(--ease);
}
.hdr-btn:active { transform: scale(0.95); }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BADGE
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
    animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 180, 216, 0.08); }
    50% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.2), 0 0 60px rgba(0, 180, 216, 0.05); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    background: var(--grad);
    color: var(--bg);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    animation: btn-pulse 3s ease-in-out infinite;
}
.btn-main::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
    transform: translateX(-100%);
    animation: btn-shine 5s ease-in-out infinite;
}
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.5), 0 0 80px rgba(0, 180, 216, 0.12); }
}
@keyframes btn-shine {
    0%, 65%, 100% { transform: translateX(-100%); }
    80% { transform: translateX(100%); }
}
.btn-main:active { transform: scale(0.97); }
.btn--sm { padding: 14px 24px; font-size: 0.92rem; }
.btn--wide { padding: 18px 28px; font-size: 1.05rem; }

.btn-out {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 14px;
    border: 1px solid var(--border-l);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.btn-out:active {
    background: rgba(0, 180, 216, 0.06);
    border-color: rgba(0, 180, 216, 0.3);
    transform: scale(0.97);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 100px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(123, 47, 247, 0.06) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow-breathe 6s ease-in-out infinite;
}
.hero__glow--2 {
    top: 60%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.12) 0%, transparent 70%);
    animation: glow-breathe 8s ease-in-out infinite reverse;
}
@keyframes glow-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.hero h1 {
    font-family: var(--font-h);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 14px;
    position: relative;
}

.hero p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    position: relative;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat span {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURES
   ============================================ */
.feat {
    padding: 28px 20px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.feat-grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.feat-item {
    width: calc(50% - 5px);
    -webkit-flex: 0 0 calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.4s var(--ease);
}
.feat-item:active {
    border-color: rgba(0, 180, 216, 0.3);
    background: rgba(0, 180, 216, 0.04);
}

.feat-item i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--cyan);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feat-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--light);
    line-height: 1.3;
}

/* ============================================
   PRICING
   ============================================ */
.price {
    padding: 40px 20px;
    position: relative;
}
.price::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.price h2, .faq h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.card {
    position: relative;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    transition: all 0.4s var(--ease);
}

.card--pop {
    border-color: rgba(0, 180, 216, 0.25);
    background: rgba(0, 180, 216, 0.04);
    box-shadow:
        0 0 30px rgba(0, 180, 216, 0.08),
        inset 0 1px 0 rgba(0, 180, 216, 0.1);
    animation: card-glow 4s ease-in-out infinite;
}
@keyframes card-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.06); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.12), 0 0 80px rgba(0, 180, 216, 0.04); }
}

.card__badge {
    position: absolute;
    top: -10px;
    right: 16px;
    padding: 4px 14px;
    background: var(--grad3);
    color: var(--bg);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card__badge--g { background: var(--grad2); }

.card__info { flex: 1; min-width: 110px; }
.card__name {
    display: block;
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.card__sub { font-size: 0.72rem; color: var(--muted); }

.card__cost {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.card__cost b {
    font-family: var(--font-h);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.card__cost span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
}

.card__per {
    width: 100%;
    font-size: 0.75rem;
    color: var(--muted);
}
.card__per em {
    font-style: normal;
    color: var(--mint);
    font-weight: 600;
}

.card .btn-out,
.card .btn-main { width: 100%; margin-top: 4px; }

.auto-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(123, 47, 247, 0.05);
    border: 1px solid rgba(123, 47, 247, 0.12);
    border-radius: 12px;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
    position: relative;
}
.auto-note i {
    color: var(--purple);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 40px 20px;
    background: var(--bg2);
    position: relative;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}
details[open] {
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(0, 180, 216, 0.03);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    color: var(--muted);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 12px;
}
details[open] summary::after { transform: rotate(180deg); }

details p {
    padding: 0 16px 14px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    animation: faq-in 0.3s var(--ease);
}
@keyframes faq-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WHY NEEDED
   ============================================ */
.why {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.why h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}
.why__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff6b6b;
    animation: why-pulse 3s ease-in-out infinite;
}
@keyframes why-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 107, 107, 0.1); transform: scale(1); }
    50% { box-shadow: 0 0 35px rgba(255, 107, 107, 0.3), 0 0 70px rgba(255, 107, 107, 0.08); transform: scale(1.05); }
}
.why__card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 107, 107, 0.12);
    border-radius: 18px;
    padding: 22px 20px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.why__card p {
    font-size: 0.88rem;
    color: var(--light);
    line-height: 1.75;
}
.why__card strong {
    color: var(--cyan);
    font-weight: 700;
}
.why__divider {
    width: 48px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    margin: 16px 0;
    opacity: 0.7;
}

/* ============================================
   HOW IT WORKS (STEP CARDS)
   ============================================ */
.steps {
    padding: 40px 20px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.steps h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}
.steps-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}
.steps-list .step-card {
    width: calc(50% - 6px);
    -webkit-flex: 0 0 calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
}
.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0.4;
    transition: opacity 0.4s var(--ease);
}
.step-card__top {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 12px;
}
.step-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--cyan);
    transition: all 0.4s var(--ease);
}
.step-card__icon--done {
    background: rgba(0, 245, 212, 0.1);
    border-color: rgba(0, 245, 212, 0.2);
    color: var(--mint);
}
.step-card__num {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}
.step-card h3 {
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.step-card p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}
.step-card--done {
    border-color: rgba(0, 245, 212, 0.15);
    background: rgba(0, 245, 212, 0.03);
}
.step-card--done::before {
    background: var(--grad2);
    opacity: 0.6;
}
.step-card--done .step-card__num {
    color: var(--mint);
    opacity: 0.5;
    font-size: 1.2rem;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.reviews::before {
    content: '';
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.reviews h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.review {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.review__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0, 180, 216, 0.15);
}
.review__name {
    display: block;
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.review__stars {
    display: block;
    font-size: 0.72rem;
    color: #f5a623;
    letter-spacing: 2px;
    margin-top: 1px;
}
.review p {
    font-size: 0.84rem;
    color: var(--light);
    line-height: 1.65;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 48px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, rgba(123, 47, 247, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow-breathe 5s ease-in-out infinite;
}

.cta h2 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}
.cta p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 24px;
    position: relative;
}
.cta .btn-main { position: relative; }

.cta__links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
    position: relative;
}
.cta__links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}
.cta__links a:active { color: var(--cyan); }
.cta__links a i { font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.foot-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.foot-links a {
    color: var(--muted);
    font-size: 0.72rem;
    text-decoration: none;
    transition: color 0.3s;
}
.foot-links a:active { color: var(--cyan); }

.copy {
    font-size: 0.68rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.email {
    font-size: 0.68rem;
    color: var(--muted);
    text-decoration: none;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO ENTRY ANIMATIONS
   ============================================ */
.anim-entry {
    opacity: 0;
    transform: translateY(20px);
    animation: entry-up 0.8s var(--ease) forwards;
}
.anim-d1 { animation-delay: 0.15s; }
.anim-d2 { animation-delay: 0.25s; }
.anim-d3 { animation-delay: 0.35s; }
.anim-d4 { animation-delay: 0.45s; }
.anim-d5 { animation-delay: 0.55s; }

@keyframes entry-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SCROLLBAR + SELECTION
   ============================================ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dark); border-radius: 3px; }
::selection { background: rgba(0, 180, 216, 0.3); color: var(--white); }

/* ============================================
   480px - Small phones
   ============================================ */
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.88rem; }
    .stats { gap: 20px; }
    .stat strong { font-size: 1.15rem; }
    .card__cost b { font-size: 1.9rem; }
    .card__name { font-size: 1rem; }
}

/* ============================================
   360px - Extra small
   ============================================ */
@media (max-width: 360px) {
    .hero h1 { font-size: 1.9rem; }
    .stats { gap: 16px; }
    .stat strong { font-size: 1.05rem; }
    .stat span { font-size: 0.6rem; }
    .feat-grid { -webkit-flex-direction: column; flex-direction: column; }
    .feat-grid .feat-item { width: 100%; -webkit-flex: 0 0 100%; flex: 0 0 100%; }
    .steps-list .step-card { width: 100%; -webkit-flex: 0 0 100%; flex: 0 0 100%; }
    .card__cost b { font-size: 1.7rem; }
}

/* ============================================
   Tablet / desktop fallback (if someone opens m. on desktop)
   ============================================ */
@media (min-width: 769px) {
    main {
        max-width: 480px;
        margin: 0 auto;
    }
    header {
        max-width: 480px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 0 0 16px 16px;
    }
    footer {
        max-width: 480px;
        margin: 0 auto;
    }
}
