/* ============================================================
   AstraHosting — Pro UI (header, buttons, domain search)
   ============================================================ */

:root {
    --ah-primary: #0f72ff;
    --ah-primary-dark: #0a4fcc;
    --ah-primary-glow: #3b8dff;
    --ah-dark: #0b1f3a;
    --ah-text: #1a2540;
    --ah-muted: #6b7894;
    --ah-bg: #f5f7fb;
    --ah-card: #ffffff;
    --ah-border: #eef2f8;
    --ah-success: #22c55e;
    --ah-warn: #f59e0b;
    --ah-danger: #ef4444;
    --ah-radius: 12px;
    --ah-shadow-sm: 0 4px 12px rgba(15,31,58,.06);
    --ah-shadow: 0 10px 30px rgba(15,31,58,.08);
    --ah-shadow-lg: 0 20px 50px rgba(15,31,58,.12);
}

/* ============== Header utility actions (cart + client area) ============== */
.astra-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
}
.astra-header-cart,
.astra-header-client {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
}
.astra-header-cart {
    background: #fff;
    color: var(--ah-primary);
    border-color: #d6e3f7;
    position: relative;
}
.astra-header-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--ah-shadow-sm);
    color: var(--ah-primary-dark);
    text-decoration: none;
}
.astra-header-cart-count {
    background: var(--ah-primary);
    color: #fff;
    font-size: 11px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.astra-header-client {
    background: linear-gradient(135deg, var(--ah-primary) 0%, var(--ah-primary-dark) 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(15,114,255,.3);
}
.astra-header-client:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15,114,255,.4);
    color: #fff !important;
    text-decoration: none;
}
.astra-header-client i { font-size: 13px; }

@media (max-width: 767px) {
    .astra-header-actions { width: 100%; padding: 12px 0 0; justify-content: stretch; }
    .astra-header-cart, .astra-header-client { flex: 1; justify-content: center; }
}

/* ============== Buttons ============== */
.astra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    font-family: inherit;
}
.astra-btn:hover { text-decoration: none; transform: translateY(-2px); }
.astra-btn-primary {
    background: linear-gradient(135deg, var(--ah-primary) 0%, var(--ah-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(15,114,255,.28);
}
.astra-btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(15,114,255,.4); }
.astra-btn-outline {
    background: #fff;
    color: var(--ah-primary);
    border-color: #cfdef7;
}
.astra-btn-outline:hover { color: var(--ah-primary-dark); border-color: var(--ah-primary); }
.astra-btn-ghost {
    background: transparent; color: var(--ah-text); border-color: transparent;
}
.astra-btn-ghost:hover { background: #eef2fb; color: var(--ah-primary-dark); }
.astra-btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
.astra-btn-block { width: 100%; }

/* ============== Domain hero ============== */
.astra-domain-hero {
    background: linear-gradient(135deg, #0b1f3a 0%, #102e63 50%, #0f72ff 100%);
    color: #fff;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}
.astra-domain-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(800px 400px at 80% 10%, rgba(59,141,255,.35), transparent 60%),
        radial-gradient(600px 300px at 10% 90%, rgba(15,114,255,.25), transparent 60%);
    pointer-events: none;
}
.astra-domain-hero > .container { position: relative; z-index: 1; }
.astra-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,.12); color: #d4e4ff;
    font-size: 13px; font-weight: 600;
    backdrop-filter: blur(6px);
    margin-bottom: 18px;
}
.astra-eyebrow-sm {
    display: inline-block;
    padding: 4px 10px; border-radius: 999px;
    background: #eaf1ff; color: var(--ah-primary-dark);
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    margin-bottom: 8px;
}
.astra-hero-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800; line-height: 1.15;
    color: #fff; margin-bottom: 14px; letter-spacing: -.02em;
}
.astra-hero-sub {
    font-size: 18px; color: #c8d6ee; margin-bottom: 32px;
    max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ============== Search bar ============== */
.astra-search-bar {
    display: flex; align-items: center; gap: 8px;
    background: #fff; border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    max-width: 720px; margin: 0 auto;
    position: relative;
}
.astra-search-icon {
    position: absolute; left: 22px; color: var(--ah-muted); font-size: 16px;
    pointer-events: none;
}
.astra-search-input {
    flex: 1; border: 0; outline: 0; background: transparent;
    padding: 14px 18px 14px 44px;
    font-size: 16px; color: var(--ah-text);
    font-family: inherit;
}
.astra-search-input::placeholder { color: #9aa6c0; }
.astra-search-submit { padding: 14px 26px; }
@media (max-width: 575px) {
    .astra-search-submit { padding: 12px 16px; font-size: 14px; }
    .astra-search-submit span { display: none; }
}

.astra-tld-suggest {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-top: 18px;
}
.astra-chip {
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,.12); color: #d4e4ff;
    font-size: 13px; font-weight: 600; cursor: pointer;
    border: 1px solid rgba(255,255,255,.18);
    transition: all .18s ease;
}
.astra-chip:hover { background: #fff; color: var(--ah-primary); }

/* ============== Results section ============== */
.astra-results-section {
    background: var(--ah-bg);
    padding: 60px 0 80px;
    min-height: 400px;
}
.astra-results-header {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 28px;
}
.astra-results-header h2 {
    font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ah-dark);
    font-size: 26px; margin: 0;
}
.astra-filter-bar {
    display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
    background: #fff; padding: 14px 18px; border-radius: var(--ah-radius);
    border: 1px solid var(--ah-border); box-shadow: var(--ah-shadow-sm);
}
.astra-filter-group { display: flex; flex-direction: column; gap: 6px; }
.astra-filter-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; color: var(--ah-muted); margin: 0;
}
.astra-filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.astra-filter-chips .astra-chip {
    background: #eef2fb; color: var(--ah-text); border-color: transparent;
    font-size: 12px; padding: 4px 10px;
}
.astra-filter-chips .astra-chip.active {
    background: var(--ah-primary); color: #fff;
}
.astra-range-wrap { display: flex; align-items: center; gap: 10px; }
.astra-range-wrap input[type="range"] { width: 160px; accent-color: var(--ah-primary); }
.astra-range-wrap span { font-size: 13px; color: var(--ah-text); font-weight: 600; min-width: 90px; }

.astra-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ah-text);
    margin: 0;
}
.astra-toggle input { accent-color: var(--ah-primary); width: 16px; height: 16px; }

.astra-results-grid {
    display: grid; gap: 14px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .astra-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .astra-results-grid { grid-template-columns: repeat(3, 1fr); }
}

.astra-result-card {
    background: #fff; border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius); padding: 22px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
}
.astra-result-card:hover { transform: translateY(-3px); box-shadow: var(--ah-shadow); border-color: #cfdef7; }
.astra-result-card.is-available { border-left: 4px solid var(--ah-success); }
.astra-result-card.is-taken { border-left: 4px solid var(--ah-danger); opacity: .85; }
.astra-result-card.is-unknown { border-left: 4px solid var(--ah-warn); }

.astra-result-domain {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 18px; color: var(--ah-dark); word-break: break-all;
}
.astra-result-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; padding: 4px 10px;
    border-radius: 999px;
}
.astra-result-status.is-available { background: #dcfce7; color: #166534; }
.astra-result-status.is-taken { background: #fee2e2; color: #991b1b; }
.astra-result-status.is-unknown { background: #fef3c7; color: #92400e; }
.astra-result-status.is-premium { background: #ede9fe; color: #5b21b6; }

.astra-result-price {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 22px; color: var(--ah-primary-dark);
}
.astra-result-price small { font-size: 12px; color: var(--ah-muted); font-weight: 500; margin-left: 4px; }

.astra-result-actions { display: flex; gap: 8px; margin-top: auto; }
.astra-result-actions .astra-btn { flex: 1; }

.astra-skeleton {
    background: linear-gradient(90deg, #eef2f8 0%, #f7f9fd 50%, #eef2f8 100%);
    background-size: 200% 100%;
    animation: astra-shimmer 1.2s infinite;
    border-radius: 8px;
    height: 14px;
}
.astra-skeleton.lg { height: 22px; }
.astra-skeleton-card {
    background: #fff; border: 1px solid var(--ah-border);
    border-radius: var(--ah-radius); padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
}
@keyframes astra-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.astra-empty-state {
    text-align: center; padding: 60px 20px;
    color: var(--ah-muted);
}
.astra-empty-state i { font-size: 56px; color: #cfdef7; margin-bottom: 18px; }
.astra-empty-state h3 { color: var(--ah-dark); font-weight: 700; margin-bottom: 8px; }

/* ============== Bundles section ============== */
.astra-bundles-section { padding: 80px 0; background: #fff; }
.astra-section-title {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: clamp(24px, 3.5vw, 36px); color: var(--ah-dark);
    letter-spacing: -.02em;
}
.astra-section-sub { color: var(--ah-muted); font-size: 16px; max-width: 540px; margin: 0 auto; }

.astra-bundle-grid {
    display: grid; gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .astra-bundle-grid { grid-template-columns: repeat(3, 1fr); } }

.astra-bundle-card {
    background: #fff; border: 1px solid var(--ah-border);
    border-radius: 16px; padding: 28px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: var(--ah-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
}
.astra-bundle-card:hover { transform: translateY(-4px); box-shadow: var(--ah-shadow-lg); }
.astra-bundle-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--ah-primary), var(--ah-primary-dark));
    color: #fff; padding: 4px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.astra-bundle-card h3 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ah-dark); margin: 0; font-size: 20px; }
.astra-bundle-card p { color: var(--ah-muted); margin: 0; font-size: 14px; }
.astra-bundle-price {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 28px; color: var(--ah-primary-dark);
}
.astra-bundle-bonus {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: 8px;
    background: #fef3c7; color: #92400e; font-size: 13px; font-weight: 600;
    align-self: flex-start;
}
.astra-bundle-card .astra-btn { margin-top: auto; }

/* Ajustes Astra 2026 - domínio/carrinho */
.navbar-brand img{max-height:62px!important;width:auto!important;object-fit:contain!important}
@media (max-width:991px){.navbar-brand img{max-height:52px!important}}
.astra-empty-state.astra-empty-rich{padding:42px 20px 10px}.astra-empty-card-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px;text-align:left}.astra-empty-card{background:#fff;border:1px solid var(--ah-border);border-radius:16px;padding:22px;box-shadow:var(--ah-shadow-sm)}.astra-empty-card i{font-size:24px;margin:0 0 12px;color:var(--ah-primary)}.astra-empty-card h4{font-size:16px;font-weight:800;color:var(--ah-dark);margin:0 0 7px}.astra-empty-card p{font-size:14px;margin:0;color:var(--ah-muted)}@media(max-width:767px){.astra-empty-card-wrap{grid-template-columns:1fr}.astra-domain-hero{padding-top:60px;padding-bottom:70px}}
.astra-domain-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:99999;background:rgba(2,6,23,.62);padding:18px}.astra-domain-modal.is-open{display:flex}.astra-domain-modal-card{width:min(560px,100%);background:#fff;border-radius:20px;box-shadow:0 30px 90px rgba(0,0,0,.35);padding:28px;position:relative}.astra-domain-modal-close{position:absolute;right:16px;top:12px;border:0;background:transparent;font-size:28px;line-height:1;cursor:pointer;color:#64748b}.astra-domain-modal h3{font-family:Inter,system-ui,sans-serif;font-weight:800;color:#06132b;margin:0 0 8px}.astra-domain-modal p{color:#64748b;margin:0 0 18px}.astra-domain-choice{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:14px}.astra-domain-choice label{border:1px solid #dbe3f0;border-radius:12px;padding:12px;cursor:pointer;font-weight:700;color:#0f172a}.astra-domain-choice input{margin-right:7px}.astra-domain-modal-field{width:100%;border:1px solid #dbe3f0;border-radius:12px;padding:14px 16px;font-size:16px;outline:0;margin-bottom:14px}.astra-domain-modal-field:focus{border-color:#0f72ff;box-shadow:0 0 0 3px rgba(15,114,255,.12)}.astra-domain-modal-actions{display:flex;gap:10px}.astra-domain-modal-actions .astra-btn{flex:1;justify-content:center}.astra-domain-modal small{display:block;color:#64748b;margin-top:10px;line-height:1.4}@media(max-width:575px){.astra-domain-choice{grid-template-columns:1fr}.astra-domain-modal-actions{flex-direction:column}}

/* Promo domínio + hospedagem grátis */
.astra-result-note{margin:8px 0 12px;color:#425b82;font-size:13px;line-height:1.45}.astra-result-note i{color:#16a34a;margin-right:5px}.astra-result-card .astra-btn{white-space:normal;text-align:center;line-height:1.2}.astra-domain-hero .astra-hero-sub strong{color:#fff}

/* AstraHosting Enterprise Domain Search */
.astra-rank-badges{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.astra-rank-badge{display:inline-flex;align-items:center;border-radius:999px;padding:4px 10px;background:#eef6ff;color:#0b5ed7;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.astra-rank-badge.is-best{background:linear-gradient(135deg,#e0f2fe,#dbeafe);color:#075985;border:1px solid #bfdbfe}
.astra-rank-badge.is-cheapest{background:#dcfce7;color:#166534;border:1px solid #bbf7d0}
.astra-score{display:inline-flex;align-self:flex-start;margin-top:8px;border:1px solid #dbeafe;background:#f8fbff;color:#42638f;border-radius:999px;padding:4px 9px;font-size:11px;font-weight:700}
.astra-ai-suggestions{background:linear-gradient(135deg,#ffffff,#f8fbff);border:1px solid var(--ah-border);border-radius:18px;padding:18px;box-shadow:var(--ah-shadow-sm);margin-bottom:8px}
.astra-ai-head{display:flex;align-items:center;gap:12px;margin-bottom:12px;color:var(--ah-dark)}
.astra-ai-head i{width:38px;height:38px;border-radius:12px;background:linear-gradient(135deg,var(--ah-primary),var(--ah-primary-dark));display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:16px}
.astra-ai-head strong{display:block;font-size:16px;font-weight:900;color:var(--ah-dark)}
.astra-ai-head small{display:block;color:var(--ah-muted);font-size:12px;margin-top:2px}
.astra-ai-list{display:flex!important;gap:10px!important;flex-wrap:nowrap!important;overflow:hidden!important}
.astra-ai-chip{border:1px solid #dbeafe;background:#fff;color:#0f172a;border-radius:14px;padding:10px 12px;cursor:pointer;text-align:left;box-shadow:0 6px 18px rgba(15,114,255,.08);transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}
.astra-ai-chip:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(15,114,255,.15);border-color:#93c5fd}
.astra-ai-chip span{display:block;font-weight:800;font-size:14px}
.astra-ai-chip small{display:block;color:#64748b;font-size:11px;margin-top:2px}
@media(max-width:575px){.astra-ai-list{display:flex!important;flex-wrap:nowrap!important;overflow:hidden!important}.astra-ai-chip{padding:9px 10px}.astra-ai-chip span{font-size:13px}}


/* AstraHosting SaaS Reviews */
.astra-saas-reviews{padding:70px 0;background:linear-gradient(180deg,#f6f9ff 0%,#ffffff 100%)}
.astra-saas-reviews-head{text-align:center;max-width:780px;margin:0 auto 30px}
.astra-saas-reviews-head h2{font-size:36px;line-height:1.15;font-weight:800;color:#061735;margin:10px 0}
.astra-saas-reviews-head p{font-size:16px;color:#60708f;margin:0}
.astra-saas-rating-card{max-width:900px;margin:0 auto 28px;background:#fff;border:1px solid #dce7ff;border-radius:24px;padding:24px;display:flex;align-items:center;gap:20px;box-shadow:0 20px 50px rgba(15,44,90,.08)}
.astra-saas-rating-score{width:86px;height:86px;border-radius:24px;background:linear-gradient(135deg,#08266c,#0f72ff);display:flex;align-items:center;justify-content:center;color:#fff;font-size:34px;font-weight:900;flex:0 0 auto}
.astra-saas-rating-info{flex:1;min-width:0}.astra-saas-rating-info strong{display:block;color:#061735;font-size:20px}.astra-saas-rating-info p{margin:5px 0 0;color:#60708f}.astra-saas-stars{color:#f5b301;letter-spacing:2px;font-size:18px;margin-bottom:8px}.astra-saas-review-link{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:14px;background:#0f72ff;color:#fff!important;font-weight:800;text-decoration:none;box-shadow:0 12px 25px rgba(15,114,255,.24);white-space:nowrap}.astra-saas-review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.astra-saas-review-card{background:#fff;border:1px solid #e1e9f8;border-radius:24px;padding:24px;box-shadow:0 18px 42px rgba(15,44,90,.07);transition:.2s ease}.astra-saas-review-card:hover{transform:translateY(-3px);box-shadow:0 24px 52px rgba(15,44,90,.11)}.astra-saas-review-card h3{font-size:18px;font-weight:800;color:#061735;margin:6px 0 10px}.astra-saas-review-card p{font-size:15px;line-height:1.65;color:#263958;margin:0}.astra-saas-review-card strong{display:block;margin-top:16px;color:#061735;font-weight:800}@media(max-width:768px){.astra-saas-reviews{padding:45px 0}.astra-saas-reviews-head h2{font-size:28px}.astra-saas-rating-card{flex-direction:column;text-align:center}.astra-saas-review-grid{grid-template-columns:1fr}.astra-saas-review-link{width:100%}}


/* ============================================================
   FIX FINAL - Sugestões inteligentes em uma única fila
   ============================================================ */
.astra-ai-suggestions{width:100%!important;max-width:100%!important;overflow:hidden!important}
.astra-ai-list{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;gap:10px!important;overflow:hidden!important;width:100%!important;max-width:100%!important;padding-bottom:6px!important}
.astra-ai-chip{flex:0 0 150px!important;width:150px!important;min-width:150px!important;max-width:150px!important;white-space:nowrap!important;overflow:hidden!important}
.astra-ai-chip span,.astra-ai-chip small{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;max-width:100%!important}

/* ============================================================
   Modal de escolha da hospedagem grátis no registro de domínio
   ============================================================ */
.astra-hosting-modal{position:fixed;inset:0;z-index:999999;display:none;align-items:center;justify-content:center;background:rgba(2,6,23,.62);padding:18px}
.astra-hosting-modal.is-open{display:flex}
.astra-hosting-modal-card{width:min(860px,100%);background:#fff;border-radius:22px;padding:26px;box-shadow:0 30px 90px rgba(0,0,0,.35);position:relative}
.astra-hosting-modal-close{position:absolute;right:16px;top:10px;border:0;background:transparent;font-size:30px;line-height:1;cursor:pointer;color:#64748b}
.astra-hosting-modal-card h3{font-family:Inter,system-ui,sans-serif;font-weight:900;color:#061735;margin:0 0 6px;font-size:24px}
.astra-hosting-modal-card p{color:#64748b;margin:0 0 18px}
.astra-hosting-plan-list{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.astra-hosting-plan{border:1px solid #dbeafe;background:#fff;border-radius:18px;padding:18px;text-align:left;cursor:pointer;box-shadow:0 10px 26px rgba(15,114,255,.08);transition:.18s ease;color:#0f172a}
.astra-hosting-plan:hover{transform:translateY(-2px);border-color:#0f72ff;box-shadow:0 16px 36px rgba(15,114,255,.18)}
.astra-hosting-plan-badge{display:inline-flex;padding:5px 10px;border-radius:999px;background:#eef5ff;color:#0f72ff;font-size:11px;font-weight:800;margin-bottom:10px}
.astra-hosting-plan strong{display:block;font-size:17px;font-weight:900;margin-bottom:7px;color:#061735}
.astra-hosting-plan-price{display:block;font-size:22px;font-weight:900;color:#0f72ff;margin-bottom:8px}
.astra-hosting-plan small{display:block;color:#64748b;line-height:1.45}
@media(max-width:767px){.astra-hosting-plan-list{grid-template-columns:1fr}.astra-hosting-modal-card{padding:22px}}
