/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ===== TYPOGRAPHY & UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }
.text-gray-900 { color: #111827; }
.text-gray-800 { color: #1f2937; }
.text-gray-600 { color: #4B5563; }
.text-gray-500 { color: #6b7280; }
.text-brand-600 { color: #2A6DF4; }
.text-brand-700 { color: #1e5fd9; }
.text-blue-50 { color: #eff6ff; }
.text-blue-100 { color: #dbeafe; }
.text-blue-600 { color: #2563eb; }
.text-blue-800 { color: #1e40af; }
.text-green-600 { color: #059669; }
.text-green-700 { color: #047857; }
.text-purple-600 { color: #9333ea; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-white { color: #ffffff; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #F9FAFB; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #E5E7EB; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-brand-600 { background-color: #2A6DF4; }

.border-gray-200 { border-color: #E5E7EB; }
.border-blue-100 { border-color: #dbeafe; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }
.hover\:underline:hover { text-decoration: underline; }
.uppercase { text-transform: uppercase; }

/* spacing utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* borders */
.border { border-width: 1px; border-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }

/* grids */
.grid { display: grid; }
.gap-6 { gap: 1.5rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== HEADER ===== */
.nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.75rem;
}

@media (min-width: 640px) {
    .nav-container { height: 4rem; }
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.nav-logo span { color: #2A6DF4; }

.nav-menu {
    display: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        margin-left: 1.5rem;
    }
}

.nav-item {
    margin-left: 1.25rem;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.nav-item:hover {
    color: #2A6DF4;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    border: 1.5px solid #d1d5db;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-signin:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2A6DF4;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    text-decoration: none;
    cursor: pointer;
}

.btn-signup:hover {
    background: #1e5fd9;
    transform: translateY(-1px);
}

.btn-signup .icon {
    margin-right: 0.25rem;
    fill: white;
}

.btn-dash {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
}

.btn-dash:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .hero-gradient { padding: 4rem 0; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2A6DF4;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2A6DF4;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(42,109,244,0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #1e5fd9;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(42,109,244,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #2A6DF4;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: all 0.2s;
    text-decoration: none;
    border: 2px solid #2A6DF4;
}

.btn-secondary:hover {
    background: #f0f7ff;
    transform: scale(1.05);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #374151;
}

.w-5 { width: 1.25rem; height: 1.25rem; }
.w-4 { width: 1rem; height: 1rem; }
.w-7 { width: 1.75rem; height: 1.75rem; }
.w-8 { width: 2rem; height: 2rem; }

/* ===== HOW IT WORKS ===== */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #2A6DF4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.5rem; }
}

.section-subhead {
    font-size: 1.125rem;
    color: #6b7280;
}

.trial-card {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid #e5e7eb;
}

.trial-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .trial-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.trial-step {
    text-align: center;
}

.step-icon-wa {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #2A6DF4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(42,109,244,0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.wa-highlight {
    background: #e6f0fa;
    color: #2A6DF4;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
}

.trial-cta {
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2A6DF4;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(42,109,244,0.4);
    border: 2px solid transparent;
    margin-bottom: 1rem;
}

.btn-wa:hover {
    background: #1e5fd9;
    transform: scale(1.05);
}

.trial-note {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ===== GRADIENT BACKGROUND SECTION (for credit/pricing) ===== */
.gradient-bg {
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
}

/* credit card wrapper – reused for plan summary */
.credit-card-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.credit-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.credit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .credit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.credit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credit-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #111827;
}

.credit-text {
    color: #4b5563;
    font-size: 0.95rem;
}

.reward-box {
    background: #2A6DF4;
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reward-icon {
    flex-shrink: 0;
}

.reward-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.reward-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== FEATURES ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #e6f0fa;
    color: #2A6DF4;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.feature-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-grid-pro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card-pro {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card-pro:hover {
    transform: scale(1.02);
}

.pricing-card-pro-highlight {
    border: 2px solid #2A6DF4;
    box-shadow: 0 25px 50px -12px rgba(42,109,244,0.3);
}

.pricing-badge-popular {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2A6DF4;
    color: white;
    font-weight: 700;
    padding: 0.25rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-price-block {
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-setup-note {
    color: #6b7280;
    font-size: 0.875rem;
}

.pricing-features-list {
    margin-bottom: 2rem;
}

.pricing-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e5e7eb;
}

.pricing-feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    color: #4b5563;
    font-size: 0.95rem;
}

.feature-value {
    font-weight: 600;
    color: #111827;
}

.pro-highlight {
    color: #2A6DF4;
}

.pricing-card-footer {
    text-align: center;
}

.btn-pricing-starter {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #d1d5db;
}

.btn-pricing-starter:hover {
    background: #e5e7eb;
}

.btn-pricing-pro {
    display: inline-block;
    background: #2A6DF4;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(42,109,244,0.3);
}

.btn-pricing-pro:hover {
    background: #1e5fd9;
    transform: scale(1.05);
}

.launch-offer {
    text-align: center;
    margin-top: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, #2A6DF4 0%, #1e5fd9 100%);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
}

.offer-icon {
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-text {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.offer-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

.offer-highlight {
    background: rgba(255,255,255,0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 4rem 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title { font-size: 2.5rem; }
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.cta-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-step-number {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    border: 2px solid white;
}

.cta-step-text {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #111827;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-cta-light:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-col-brand {
    max-width: 24rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #2A6DF4;
}

.footer-tagline {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-copyright-small {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 1.5rem 0 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-email {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-email:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-copyright a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: white;
}

/* ===== ICON HELPERS ===== */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
}

/* additional icon sizes */
.w-4 { width: 1rem; height: 1rem; }
.w-5 { width: 1.25rem; height: 1.25rem; }
.w-7 { width: 1.75rem; height: 1.75rem; }
.w-8 { width: 2rem; height: 2rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }