/* ========================================
   ANASAYFA STİLLERİ
======================================== */

/* HERO SECTION */
.hero-section {
    /* Üst boşluk sıkılaştırıldı (9rem->7rem): fixed navbar 89px + ~23px nefes payı */
    padding: 7rem 0 2.5rem;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-section .row {
    overflow: visible;
}

.hero-card {
    position: relative;
}

.main-title {
    font-size: clamp(2.2rem, 3.5vw + 1rem, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: .8rem;
    line-height: 1.15;
    /* Typewriter rezerve alanı: en uzun kelime ("modern dünyaya") ile başlık 2 satır olur;
       kelime silinip 1 satıra düşse bile yükseklik sabit kalsın, içerik zıplamasın */
    min-height: calc(2 * 1.15em);
}

/* Çok dar ekranlarda (≤340px) en uzun kelime 3 satıra çıkıyor; rezerv alanı 3 satır olmalı */
@media (max-width: 340px) {
    .main-title {
        min-height: calc(3 * 1.15em);
    }
}

.main-title span {
    color: var(--qr-primary);
}

/* Typewriter Effect */
.main-title .typewriter {
    display: inline;
    color: var(--qr-primary);
    white-space: pre;
}
.main-title .typewriter-suffix {
    display: inline;
    color: var(--qr-dark);
    white-space: pre;
}
.typewriter-cursor {
    display: inline-block;
    color: var(--qr-primary);
    font-weight: 400;
    margin-left: 1px;
    animation: blink 0.7s infinite step-end;
    transform: translateY(-2px);
}
@keyframes blink {
    50% { opacity: 0; }
}

.subtitle {
    font-size: 1rem;
    color: var(--qr-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.stats-row {
    /* 4 rozet — her kırılımda EŞİT 2x2 grid (tek satırda 4'ü sığmaz, 3+1 sarması çirkin) */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 480px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.stat-item i {
    font-size: 1.2rem;
    color: var(--qr-primary);
}

.stat-item span {
    display: block;
    font-size: .7rem;
    color: var(--qr-muted);
}

.stat-item strong {
    display: block;
    font-size: .82rem;
    font-weight: 600;
}

/* PHONE MOCKUP
   Modern telefon oranı 9:19.5 — masaüstünde 195px genişlik (~422px ekran yüksekliği).
   İnce çerçeve + yuvarlak köşeler + punch-hole kamera tamamen CSS ile çizilir. */
.phone-wrapper {
    width: 100%;
    max-width: 195px;
    margin-inline: auto;
    position: relative;
}

.phone-frame {
    position: relative;
    border-radius: 30px;
    padding: 6px;
    background: linear-gradient(145deg, #020617 0%, #1f2937 45%, #020617 100%);
    box-shadow: 0 25px 50px rgba(15, 23, 42, .35);
}

/* Yan tuşlar: sol ses, sağ güç (çerçevenin dışına taşan ince çubuklar) */
.phone-frame::before,
.phone-frame::after {
    content: "";
    position: absolute;
    width: 3px;
    border-radius: 2px;
    background: #0b1220;
}

.phone-frame::before {
    left: -3px;
    top: 88px;
    height: 52px;
}

.phone-frame::after {
    right: -3px;
    top: 108px;
    height: 34px;
}

.phone-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Safari: transform'lu carousel geçişlerinde köşe kırpması bozulmasın */
    isolation: isolate;
    background: #000;
    aspect-ratio: 9 / 19.5;
    width: 100%;
}

/* Punch-hole ön kamera — sabit konum/boyut (mockup dış görünümü değişmez).
   Artık yalnızca .phone-screen'in ÜSTÜNDEKİ safe-area şeridinde durur; hiçbir
   slayt görseli bu şeridin altına inmediği için çentik asla içerik yemez. */
.phone-inner::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #020617;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, .35);
    z-index: 5;
    pointer-events: none;
}

/* Görsel alanı (safe-area): çentiğin ALTINDAN başlar (top inset — çentik top:8px +
   10px yüksekliğinde biter, 22px pay bırakır) ve alt köşeleri KENDİ border-radius'uyla
   kırpar (.phone-inner'ın 24px'iyle eşleşir) — slayt görseli asla çentik/köşe tarafından
   kırpılmaz. Görseller bu orana göre önceden kırpılmış olarak yüklenir (bkz. Hero editörü). */
.phone-screen {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    isolation: isolate;
}

.phone-carousel,
.phone-carousel .carousel-inner,
.phone-carousel .carousel-item {
    height: 100%;
}

.phone-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .15), 0 2px 6px rgba(15, 23, 42, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--qr-dark);
    z-index: 10;
    transition: all .25s ease;
    cursor: pointer;
}

.phone-control:hover {
    background: var(--qr-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(239, 68, 68, .35);
    transform: translateY(-50%) scale(1.08);
}

.phone-control i {
    font-size: 1.1rem;
}

.phone-control-prev {
    left: -60px;
}

.phone-control-next {
    right: -60px;
}

.phone-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.floating-tag-indicators {
    display: flex;
    gap: 6px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .1);
}

.floating-tag-indicators span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .15);
    cursor: pointer;
    transition: all .25s ease;
}

.floating-tag-indicators span.active {
    width: 20px;
    border-radius: 10px;
    background: var(--qr-primary);
}

.floating-tag {
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .15), 0 8px 16px rgba(15, 23, 42, .08);
    min-width: 320px;
    max-width: 360px;
}

.floating-tag-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(239, 68, 68, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.floating-tag-icon i {
    font-size: 1.3rem;
    color: var(--qr-primary);
    transition: all 0.3s ease;
}

.floating-tag-content {
    flex: 1;
    min-width: 0;
}

.floating-tag-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--qr-dark);
    margin-bottom: 0.2rem;
    transition: opacity 0.15s ease;
}

.floating-tag-text {
    font-size: 0.82rem;
    color: var(--qr-muted);
    line-height: 1.45;
    transition: opacity 0.15s ease;
    /* Slayt açıklamaları satır sayısı değişiyor (en uzunu 4 satır) — 4 satırlık alan
       REZERVE edilir ki carousel geçişinde kartın (ve sayfanın) yüksekliği zıplamasın. */
    min-height: calc(1.45em * 4);
}

/* Telefon mockup responsive — SIFIRDAN:
   ≥1200 masaüstü 195px · 992-1199 orantılı küçülme · <992 metnin altında ortalanır ·
   ≤576 mobil: 220px, oklar çerçeve kenarına bindirilir (ekran dışına taşma yok) */
@media (max-width: 1199.98px) {
    .phone-wrapper { max-width: 180px; }
    .phone-control { width: 38px; height: 38px; }
    .phone-control-prev { left: -50px; }
    .phone-control-next { right: -50px; }
}

@media (max-width: 991.98px) {
    /* Kolonlar alt alta: telefon metin bloğunun altında ortalanır */
    .phone-wrapper { max-width: 200px; margin-top: 2.5rem; }
    .phone-bottom-content { margin-top: 1.25rem; }
}

@media (max-width: 575.98px) {
    .phone-wrapper { max-width: 220px; }
    .phone-frame { border-radius: 32px; }
    .phone-inner { border-radius: 26px; }
    .phone-screen { border-radius: 0 0 26px 26px; }
    .phone-control { width: 38px; height: 38px; }
    /* Oklar telefon çerçevesinin DIŞINA alınır (kullanıcı isteği); 320px'te bile
       taşmaz: (320-220)/2 = 50px kenar payı > 30px ofset */
    .phone-control-prev { left: -30px; }
    .phone-control-next { right: -30px; }
    /* Kampanya kartı: wrapper'dan bağımsız, viewport'a sığan genişlik */
    .floating-tag { min-width: 0; width: min(360px, calc(100vw - 3rem)); }
}

/* FEATURE CARDS */
.feature-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 1.8rem 1.5rem;
    height: 100%;
    box-shadow: var(--qr-card-shadow);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.feature-card::before {
    content: "";
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 51, .08), transparent 70%);
    right: -60px; top: -60px;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 90px rgba(15, 23, 42, .15);
}
.feature-icon {
    width: 48px; height: 48px;
    border-radius: var(--qr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.feature-card h5 { font-weight: 700; margin-bottom: .6rem; font-size: 1.05rem; }
.feature-card p { color: var(--qr-muted); font-size: .88rem; margin-bottom: 0; line-height: 1.6; }

/* VİTRİN (MİNİ) BÖLÜM SONU — "Tümünü Gör" linki. Avantajlar/Nasıl Çalışır/Paketler
   mini bölümlerinin ortak alt CTA'sı: ilgili bağımsız sayfaya (ör. /ozellikler) yönlendirir. */
.section-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
}
/* Metin linki yerine hap-buton (4 bölümde ortak: features/how-it-works/pricing/blog) */
.section-more-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--qr-primary);
    text-decoration: none;
    padding: .6rem 1.4rem;
    border: 1.5px solid var(--qr-primary);
    border-radius: 999px;
    background: transparent;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.section-more-link i { font-size: .82rem; transition: transform .2s ease; }
.section-more-link:hover {
    background: var(--qr-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 0, 51, .28);
    transform: translateY(-2px);
}
.section-more-link:hover i { transform: translateX(3px); }

/* STEP CARDS */
.step-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 1.8rem 1.5rem;
    height: 100%;
    border: 1px dashed rgba(148, 163, 184, .4);
    transition: border-color .2s;
}
.step-card:hover { border-color: var(--qr-primary); }
.step-badge {
    width: 36px; height: 36px;
    border-radius: var(--qr-radius-sm);
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: .8rem;
    font-size: .95rem;
}
.step-card h6 { font-weight: 700; margin-bottom: .5rem; }
.step-card p { color: var(--qr-muted); font-size: .88rem; margin-bottom: 0; line-height: 1.6; }

/* INDUSTRY CARDS */
.industry-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 1.6rem 1.4rem;
    height: 100%;
    border: 1px solid rgba(148, 163, 184, .25);
    transition: all .3s;
}
.industry-card:hover {
    border-color: var(--qr-primary);
    box-shadow: 0 20px 50px rgba(255, 0, 51, .1);
}
.industry-icon {
    width: 44px; height: 44px;
    border-radius: var(--qr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    margin-bottom: .8rem;
    font-size: 1.2rem;
}
.industry-card h6 { font-weight: 700; margin-bottom: .5rem; }
.industry-card p { color: var(--qr-muted); font-size: .85rem; margin-bottom: 0; line-height: 1.6; }

/* TECH / INFRASTRUCTURE CARDS */
.tech-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 1.8rem 1.5rem;
    height: 100%;
    box-shadow: var(--qr-card-shadow);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.tech-card::before {
    content: "";
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .08), transparent 70%);
    right: -60px; top: -60px;
    pointer-events: none;
}
.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 90px rgba(15, 23, 42, .15);
}
.tech-icon {
    width: 52px; height: 52px;
    border-radius: var(--qr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, .1), rgba(34, 197, 94, .05));
    color: #22c55e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.tech-card h5 { font-weight: 700; margin-bottom: .6rem; font-size: 1.05rem; }
.tech-card p { color: var(--qr-muted); font-size: .88rem; margin-bottom: 1rem; line-height: 1.6; }
.tech-features { list-style: none; padding: 0; margin: 0; }
.tech-features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .35rem 0;
    font-size: .82rem;
    color: var(--qr-muted);
}
.tech-features li i {
    color: #22c55e;
    margin-top: .15rem;
    font-size: .85rem;
}

/* PRICING CARDS */
.price-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 2rem 1.6rem;
    height: 100%;
    box-shadow: var(--qr-card-shadow);
    border: 1px solid rgba(148, 163, 184, .2);
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: "";
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 51, .06), transparent 70%);
    right: -80px; top: -80px;
    pointer-events: none;
}
.price-card-featured {
    border-color: var(--qr-primary);
    box-shadow: 0 35px 90px rgba(255, 0, 51, .15);
}
.price-badge {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
    border-radius: var(--qr-radius-sm);
    padding: .25rem .75rem;
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    font-weight: 600;
    margin-bottom: .8rem;
}
.price-card h5 { font-weight: 700; margin-bottom: .4rem; }
.price-amount { font-size: 1.6rem; font-weight: 800; margin: 1rem 0; }
.price-amount small { font-size: .9rem; font-weight: 600; }
.price-features { list-style: none; padding: 0; margin: 1.2rem 0; }
.price-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--qr-muted);
}
.price-features li i { color: #22c55e; font-size: .95rem; }

/* PRICING CARDS — VİTRİN (MİNİ) VARYANTI: yalnız başlık + kısa açıklama + CTA
   (fiyat tutarı satırı ve özellik listesi yok — tam liste /paketler sayfasında). */
.price-card-mini { padding-bottom: 1.8rem; }
.price-card-mini p { margin: .5rem 0 1.4rem; }

/* FAQ ACCORDION */
.accordion-item {
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 1rem !important;
    margin-bottom: .75rem;
    overflow: hidden;
    background: #fff;
}
.accordion-button {
    font-weight: 600;
    font-size: .95rem;
    padding: 1rem 1.25rem;
    background: #fff;
}
.accordion-button:not(.collapsed) {
    background: var(--qr-primary-soft);
    color: var(--qr-dark);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { font-size: .9rem; color: var(--qr-muted); line-height: 1.7; }

/* DEMO SECTION */
.demo-card {
    background: #fff;
    border-radius: var(--qr-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--qr-card-shadow);
    position: relative;
    overflow: hidden;
}
.demo-card::before {
    content: "";
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 51, .12), transparent 70%);
    right: -100px; top: -100px;
    pointer-events: none;
}
.demo-badge {
    display: inline-block;
    background: var(--qr-dark);
    color: #e5e7eb;
    font-size: .78rem;
    border-radius: var(--qr-radius-sm);
    padding: .3rem .85rem;
    margin-bottom: 1rem;
}
.demo-badge span { color: #a5b4fc; }
.demo-title {
    font-size: clamp(1.6rem, 2vw + 1rem, 2rem);
    font-weight: 800;
    margin-bottom: .6rem;
}
.demo-subtitle {
    color: var(--qr-muted);
    font-size: .95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.demo-checklist {
    background: rgba(15, 23, 42, .03);
    border-radius: 1rem;
    padding: 1.2rem;
}
.demo-checklist ul { list-style: none; padding: 0; margin: 0; }
.demo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    padding: .4rem 0;
    font-size: .85rem;
    color: var(--qr-muted);
}
.demo-checklist li i { color: #22c55e; margin-top: .15rem; }

/* BLOG CARDS (bs- önekli) — anasayfa vitrin kartı, blog.css'teki .blog-card'ın
   sade uyarlaması (çakışma olmasın diye ayrı sınıf isimleri). */
.bs-card {
    background: #fff;
    border-radius: var(--qr-radius);
    box-shadow: var(--qr-card-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.bs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 90px rgba(15, 23, 42, .15);
}
.bs-card-image {
    display: block;
    text-decoration: none; /* :visited UA alt çizgisini iptal et */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.bs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bs-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
.bs-noimg i { font-size: 2.1rem; opacity: .85; }
.bs-noimg span { font-size: .8rem; font-weight: 700; letter-spacing: .01em; opacity: .95; }
.bs-noimg--1 { background: linear-gradient(135deg, #ff0033, #ff6a3d); }
.bs-noimg--2 { background: linear-gradient(135deg, #020617, #334155); }
.bs-noimg--3 { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.bs-noimg--4 { background: linear-gradient(135deg, #0891b2, #22c55e); }
.bs-noimg--5 { background: linear-gradient(135deg, #d97706, #f59e0b); }
.bs-noimg--6 { background: linear-gradient(135deg, #1d4ed8, #38bdf8); }
.bs-card-body {
    padding: 1.35rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bs-card-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    color: var(--qr-muted);
    margin-bottom: .6rem;
}
.bs-card-badge {
    background: var(--qr-primary-soft);
    color: var(--qr-primary);
    font-weight: 700;
    font-size: .75rem;
    padding: .2rem .6rem;
    border-radius: var(--qr-radius-sm);
}
.bs-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: .6rem;
}
.bs-card-title a {
    color: var(--qr-dark);
    text-decoration: none;
}
.bs-card-title a:hover { color: var(--qr-primary); }
.bs-card-date {
    color: var(--qr-muted);
    font-size: .82rem;
    margin-top: auto;
}

/* Anasayfa bölüm ritmi: global .section-block 5rem — tek-sayfa akışında bölümler arası
   boşluk fazla geldiğinden YALNIZ anasayfada sıkılaştırılır (bu dosya sadece anasayfada yüklenir). */
.section-block { padding: 3.25rem 0; }

/* Anasayfa: son bölüm ile footer arası boşluk sıkılaştırma (yalnız anasayfa) */
.main-footer { margin-top: 1.25rem; }

/* Blog kartları mobil çift sütun: sıkı tipografi */
@media (max-width: 767.98px) {
    .bs-card-body { padding: .8rem .85rem 1rem; }
    .bs-card-title { font-size: .88rem; }
    .bs-card-meta { font-size: .7rem; flex-wrap: wrap; gap: .3rem .5rem; }
    .bs-card-badge { font-size: .66rem; }
    .bs-card-date { font-size: .7rem; }
    .bs-noimg i { font-size: 1.6rem; }
    .bs-noimg span { font-size: .78rem; }
}

/* Paket vitrini mini özellik listesi */
.price-mini-list {
    list-style: none;
    margin: .35rem 0 1rem;
    padding: 0;
    text-align: left;
}
.price-mini-list li {
    font-size: .82rem;
    color: var(--qr-muted);
    padding: .28rem 0;
}
.price-mini-list li i {
    color: #16a34a;
    margin-right: .4rem;
    font-size: .8rem;
}

/* RESPONSIVE - Anasayfa */
@media (max-width: 991.98px) {
    .hero-section { padding: 7rem 0 4rem; min-height: auto; }
}

@media (max-width: 767.98px) {
    .hero-section { padding: 6.5rem 0 3rem; }
    .main-title { font-size: 1.9rem; }
    .stats-row { gap: .75rem; }
    .stat-item { padding: .5rem .75rem; }
    .feature-card,
    .step-card,
    .industry-card,
    .price-card,
    .tech-card { padding: 1.4rem 1.2rem; }
    .demo-card { padding: 1.8rem 1.4rem; }
}

@media (max-width: 480px) {
    .main-title { font-size: 1.65rem; }
}
