/* ============================================================
   آزمون دولینگو — لندینگ پیج
   RTL Persian Landing Page
   ============================================================ */

:root {
    --green: #58cc02;
    --green-dark: #46a302;
    --green-deep: #2d7a01;
    --green-light: #d7ffb8;
    --blue: #1cbf6;
    --yellow: #ffc800;
    --red: #ff4b4b;
    --purple: #ce82ff;
    --teal: #00cd9c;
    --ink: #1f1f1f;
    --ink-soft: #4b4b4b;
    --muted: #777777;
    --bg: #ffffff;
    --bg-alt: #f7f9f5;
    --bg-soft: #eef9e4;
    --border: #e5e5e5;
    --radius: 18px;
    --radius-lg: 26px;
    --shadow-sm:  2px 8px rgba(, , , .06);
    --shadow:  8px 30px rgba(, , , .08);
    --shadow-lg:  20px 60px rgba(88, 204, 2, .18);
    --font: "Vazirmatn", "Segoe UI", Tahoma, sans-serif;
    --container: 120px;
    --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: ; padding: ; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin:  auto; padding:  24px; }
.container-narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(2px); }
.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow:  4px  var(--green-dark);
}
.btn-primary:hover { background: var(--green-dark); box-shadow:  4px  var(--green-deep); }
.btn-outline {
    background: #fff;
    color: var(--green-deep);
    border-color: var(--green);
}
.btn-outline:hover { background: var(--green-light); }
.btn-light { background: #fff; color: var(--green-deep); box-shadow:  4px  rgba(,,,.12); }
.btn-light:hover { background: var(--green-light); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 16px 34px; font-size: 17px; border-radius: 16px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: ; left: ; right: ;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(,,,.05);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-text strong { font-size: 17px; font-weight: 800; color: var(--ink); }
.brand-text small { font-size: 12px; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    display: block;
    padding: 8px 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 10px;
    transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--green-deep); background: var(--green-light); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 120;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: ; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 56px)  72px;
    background: linear-gradient(180deg, #f2fce8 %, #ffffff 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--green);
    color: var(--green-deep);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(30px, 4.4vw, 52px);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--ink);
}
.text-gradient {
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-sub { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.hero-trust li { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }

/* Hero visual cards */
.hero-visual { position: relative; min-height: 420px; }
.hero-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.hero-card-main {
    width: 100%;
    max-width: 380px;
    margin:  auto;
    padding: 26px;
    border: 1px solid var(--border);
    animation: float-main 6s ease-in-out infinite;
}
.hero-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.duo-owl { font-size: 44px; }
.hero-card-top strong { display: block; font-size: 16px; }
.hero-card-top small { color: var(--muted); font-size: 13px; }

.hero-card-score {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 16px;
}
.score-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px; height: 84px;
    border-radius: 50%;
    background: conic-gradient(var(--green)  72%, #e5e5e5 72% 100%);
    position: relative;
    font-size: 26px;
    font-weight: 900;
    color: var(--ink);
}
.score-ring::before {
    content: "";
    position: absolute;
    inset: 9px;
    background: #fff;
    border-radius: 50%;
    z-index: ;
}
.score-ring { text-shadow: none; }
.score-ring::after { content: attr(data-score); position: relative; z-index: 1; }
.score-label { font-weight: 700; color: var(--ink-soft); }

.hero-card-footer { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 100px; color: #fff; }
.chip-green { background: var(--green); }
.chip-blue { background: var(--blue); }
.chip-yellow { background: var(--yellow); color: #5c4d00; }
.chip-red { background: var(--red); }

.hero-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    animation: float 5s ease-in-out infinite;
}
.hero-card-float span { font-size: 28px; }
.hero-card-float strong { display: block; font-size: 15px; line-height: 1.4; }
.hero-card-float small { color: var(--muted); font-size: 12.5px; }
.float-1 { top: 6%; right: -6%; }
.float-2 { bottom: 24%; right: -12%; animation-delay: 1.2s; }
.float-3 { bottom: -4%; left: 2%; animation-delay: 2s; }

@keyframes float { %, 100% { transform: translateY(); } 50% { transform: translateY(-12px); } }
@keyframes float-main { %, 100% { transform: translateY() rotate(); } 50% { transform: translateY(-10px) rotate(-.6deg); } }

/* Hero blobs */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; z-index: ; pointer-events: none; }
.hero-blob-1 { width: 420px; height: 420px; background: var(--green); top: -140px; left: -120px; }
.hero-blob-2 { width: 340px; height: 340px; background: var(--blue); bottom: -140px; right: -100px; opacity: .3; }
.hero-blob-3 { width: 240px; height: 240px; background: var(--yellow); top: 40%; left: 45%; opacity: .25; }
.hero-content, .hero-visual { position: relative; z-index: 1; }

/* ---------- Stats ---------- */
.stats {
    background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
    padding: 34px ;
    color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { display: block; font-size: clamp(28px, 3vw, 40px); font-weight: 900; line-height: 1.2; }
.stat-label { font-size: 14.5px; opacity: .92; }

/* ---------- Sections ---------- */
.section { padding: 88px ; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 700px; margin:  auto 52px; }
.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; line-height: 1.4; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px; height: 62px;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 18px;
}
.icon-green { background: var(--green-light); }
.icon-blue { background: #d6f2ff; }
.icon-yellow { background: #fff4cc; }
.icon-red { background: #ffdcdc; }
.icon-purple { background: #f3e5ff; }
.icon-teal { background: #d2f9f; }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 22px 26px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
    position: absolute;
    top: -16px;
    right: 50%;
    transform: translateX(50%);
    width: 34px; height: 34px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow:  4px  var(--green-dark);
}
.step-icon { font-size: 40px; margin: 12px  14px; }
.step-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 14px; }

/* ---------- Pricing ---------- */
.rate-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    background: var(--bg-soft);
    border: 1px dashed var(--green);
    border-radius: var(--radius);
    padding: 14px 22px;
    margin-bottom: 40px;
    font-size: 15px;
}
.rate-banner strong { color: var(--green-deep); font-size: 18px; }
.rate-banner small { color: var(--muted); font-size: 12.5px; width: 100%; text-align: center; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 860px; margin:  auto; align-items: stretch; }
.price-card {
    position: relative;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card-featured {
    border-color: var(--green);
    background: linear-gradient(180deg, #fbfef6 %, #ffffff 100%);
    box-shadow: var(--shadow-lg);
}
.price-badge {
    position: absolute;
    top: -16px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(90deg, var(--yellow), #ffb100);
    color: #4d3a00;
    font-weight: 800;
    font-size: 13.5px;
    padding: 7px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}
.price-tag { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.price-usd { font-size: 22px; margin-bottom: 6px; display: flex; align-items: baseline; gap: 12px; }
.price-usd del { color: var(--muted); font-size: 17px; font-weight: 500; }
.price-usd strong { color: var(--green-deep); font-size: 34px; font-weight: 900; }
.price-toman {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 22px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-features { margin-bottom: 26px; flex: 1; }
.price-features li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--ink-soft);
}
.price-features li::before {
    content: "✓";
    position: absolute;
    right: ;
    top: ;
    width: 20px; height: 20px;
    background: var(--green-light);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}
.pricing-note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 14.5px; }
.pricing-note a { color: var(--green-deep); font-weight: 700; }

/* ---------- Universities marquee ---------- */
.uni-marquee {
    overflow: hidden;
    padding: 12px ;
    background: #fff;
    border-block: 1px solid var(--border);
    direction: ltr;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.uni-track { display: flex; gap: 40px; width: max-content; animation: marquee 32s linear infinite; }
.uni-track span { font-size: 16px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(); } to { transform: translateX(-50%); } }
.uni-cta { text-align: center; margin-top: 36px; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stars { color: var(--yellow); letter-spacing: 3px; font-size: 17px; }
.testimonial-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: ;
}
.avatar-green { background: var(--green); }
.avatar-blue { background: var(--blue); }
.avatar-yellow { background: var(--yellow); color: #4d3a00; }
.testimonial-author strong { display: block; font-size: 15px; line-height: 1.4; }
.testimonial-author small { color: var(--muted); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: right;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
}
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: ;
    transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: ; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding:  22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--green-deep), var(--green) 70%, #7ae800);
    padding: 72px ;
    color: #fff;
    text-align: center;
}
.cta-inner h2 { font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; margin-bottom: 14px; }
.cta-inner p { font-size: 16.5px; opacity: .95; margin-bottom: 30px; }
.cta-inner .hero-actions { justify-content: center; margin-bottom: ; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin:  auto; }
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    border-radius: 20px;
    font-size: 28px;
    margin-bottom: 6px;
}
.icon-telegram { background: #d6fff; }
.icon-mail { background: #ffe9e9; }
.icon-clock { background: #fff4cc; }
.contact-card h3 { font-size: 18px; font-weight: 800; }
.contact-card p { font-size: 15px; color: var(--ink-soft); font-weight: 600; direction: ltr; }
.contact-card small { color: var(--muted); font-size: 13px; }

/* ---------- Footer ---------- */
.footer { background: #141fe; color: #cfd8c7; padding: 56px  30px; }
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 24px;
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #9fb58f; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { font-size: 14.5px; color: #cfd8c7; transition: color .2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 18px;
    transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--green); transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 13.5px; color: #9fb58f; }
.footer-note { margin-top: 8px; font-size: 12px; max-width: 700px; margin-inline: auto; }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 48px; height: 48px;
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow:  6px  var(--green-dark);
    opacity: ;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 90;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(); }
.back-to-top:hover { background: var(--green-dark); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: ; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 380px; max-width: 480px; margin:  auto; width: 100%; }
    .float-1 { right: ; }
    .float-2 { right: -4%; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 620px; margin:  auto; }
    .contact-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
    :root { --header-h: 66px; }
    .nav {
        position: fixed;
        top: ;
        left: ;
        right: ;
        bottom: ;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 26px;
        transform: translateY(-100%);
        transition: transform .35s ease;
        z-index: 110;
    }
    .nav.open { transform: translateY(); }
    .nav-links { flex-direction: column; gap: 10px; }
    .nav-links a { font-size: 18px; padding: 10px 20px; }
    .nav-cta { display: inline-flex; }
    .hamburger { display: flex; }

    .hero { padding-top: calc(var(--header-h) + 40px); }
    .hero-visual { min-height: 340px; }
    .float-2 { right: ; }
    .float-3 { left: ; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .section { padding: 64px ; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 30px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-note { text-align: right; }
}

@media (max-width: 480px) {
    .container { padding:  18px; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-card-main { padding: 20px; }
    .score-ring { width: 72px; height: 72px; font-size: 22px; }
    .hero-card-float { padding: 10px 14px; }
    .hero-card-float span { font-size: 22px; }
    .rate-banner { padding: 12px 16px; }
    .footer-top { flex-direction: column; align-items: flex-start; }
}
