:root {
    --primary-blue: #0052cc;
    --hero-gradient: linear-gradient(135deg, #0061ff 0%, #0033aa 100%);
    --bg-light: #f8fafc;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 18px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.hidden {
    display: none !important;
}

/* HERO */
.hero {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 60px 0 100px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.breadcrumb .current {
    font-weight: 600;
    opacity: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.hero-content p {
    font-size: 1.08rem;
    max-width: 840px;
    opacity: 0.92;
}

.hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
}

/* MAIN CALCULATOR */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: start;
}

.calculator-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.card-title-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-title-wrap h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-title-wrap p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FORM */
.tax-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-group small {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-group small a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    color: var(--text-main);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
}

.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.08);
}

.dual-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-message {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.form-message.error {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
}

.formula-inline-note {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
}

.formula-inline-note p {
    font-size: 0.92rem;
    color: var(--text-main);
}

.button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.calculate-btn,
.reset-btn {
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.96rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculate-btn {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.reset-btn {
    background: #eff6ff;
    color: var(--primary-blue);
    border: 1px solid #bfdbfe;
}

.reset-btn:hover {
    transform: translateY(-2px);
}

/* RESULTS */
.results-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-placeholder {
    text-align: center;
    padding: 20px 10px;
}

.results-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}

.results-placeholder h3,
.results-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.results-placeholder p {
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bmr-score-wrap {
    display: flex;
    gap: 18px;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px;
}

.bmr-score-circle {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eff6ff;
    border: 6px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
}

.bmr-score-circle span {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
}

.calorie-score-circle span {
    font-size: 1.8rem;
}

.sleep-score-circle {
    background: #f5f3ff;
    border-color: #c4b5fd;
}

.sleep-score-circle span {
    color: #6d28d9;
}

.bmr-score-copy .result-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bmr-score-copy h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.result-interpretation {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.bmr-result-summary {
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.summary-header span {
    color: var(--text-muted);
    font-weight: 600;
}

.summary-header strong {
    color: var(--text-main);
    font-weight: 800;
}

.bmr-result-summary p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESULT LIST */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 16px;
    background: var(--white);
}

.result-row span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.result-row strong {
    color: var(--text-main);
    font-size: 0.98rem;
    font-weight: 800;
    text-align: right;
}

.result-highlight {
    background: #eff6ff;
    border-color: #bfdbfe;
}

/* SLEEP OPTION CARDS */
.sleep-options-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sleep-option-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.sleep-option-card.recommended {
    border-color: #bfdbfe;
    background: #f8fbff;
}

.sleep-option-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.sleep-option-top h4 {
    font-size: 1.02rem;
    font-weight: 800;
}

.sleep-option-badge {
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-blue);
    white-space: nowrap;
}

.sleep-option-time {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.sleep-option-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sleep-meta-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    background: #fcfdff;
}

.sleep-meta-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.sleep-meta-item strong {
    font-size: 0.94rem;
    color: var(--text-main);
}

.healthy-weight-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 16px;
}

.healthy-weight-box h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #166534;
}

.healthy-weight-box p {
    font-size: 0.94rem;
    color: #166534;
}

.healthy-weight-box a {
    text-decoration: underline;
    font-weight: 700;
}

.bmr-note-box.hidden {
    display: none !important;
}

.result-disclaimer {
    padding: 16px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
}

.result-disclaimer p,
.result-disclaimer a {
    font-size: 0.92rem;
    color: #92400e;
}

.result-disclaimer a {
    text-decoration: underline;
    font-weight: 700;
}

/* TRUST NOTE */
.trust-note {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-blue);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.trust-note h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.trust-note p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.trust-note ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}

.trust-note ul li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.trust-note-warning {
    font-weight: 600;
    color: #7c2d12 !important;
}

/* ACCORDION TABLE */
.tax-table-section {
    margin-top: 36px;
}

.table-accordion {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-toggle {
    width: 100%;
    border: none;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
}

.accordion-toggle i {
    transition: transform 0.3s ease;
}

.table-accordion.active .accordion-toggle i {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid var(--border-color);
}

.table-wrapper {
    padding: 24px;
}

.table-wrapper + .table-wrapper {
    border-top: 1px solid var(--border-color);
}

.table-subheading {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.tax-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

.tax-table thead {
    background: #eff6ff;
}

.tax-table th,
.tax-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.94rem;
    vertical-align: top;
}

.tax-table th {
    color: var(--primary-blue);
    font-weight: 800;
}

.tax-table td a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
}

.tax-table tbody tr:last-child td {
    border-bottom: none;
}

/* HOW IT WORKS */
.how-it-works-section {
    margin-top: 36px;
}

.how-it-works-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.how-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.how-header i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
}

.how-description {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.formula-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 22px;
}

.formula-box p {
    color: #1d4ed8;
    font-weight: 700;
}

.formula-box p + p {
    margin-top: 8px;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.step-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
    background: #fcfdff;
}

.step-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-item a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
}

.how-note {
    margin-top: 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 16px;
}

.how-note p {
    color: #92400e;
    font-size: 0.94rem;
}

/* INFO GRID */
.info-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-card-header i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.info-card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 14px;
}

.info-card a {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
}

.info-list-block + .info-list-block {
    margin-top: 18px;
}

.info-list-block h4 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-list-block ul {
    list-style: disc;
    padding-left: 18px;
}

.info-list-block ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* MINI CARD SECTION */
.month-pay-section {
    margin-top: 36px;
}

.month-pay-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.month-pay-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.month-pay-card > p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.month-pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mini-info-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    transition: var(--transition);
}

.mini-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-info-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.mini-info-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin: 0;
}

/* RELIABILITY */
.reliability-section {
    margin-top: 36px;
}

.reliability-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.reliability-card h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.reliability-card p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.reliability-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}

.reliability-card ul li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.reliability-highlight {
    font-weight: 700;
    color: var(--primary-blue) !important;
}

/* FAQ */
.faq-section {
    margin-top: 36px;
}

.faq-section h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    border: none;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    text-align: left;
    padding: 20px 22px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    border-top-color: var(--border-color);
}

.faq-answer p {
    padding: 18px 22px 20px;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.faq-answer a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 700;
}

/* NEXT STEPS */
.next-steps-section {
    margin-top: 42px;
}

.next-steps-header {
    margin-bottom: 22px;
}

.next-steps-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.next-steps-header p {
    color: var(--text-muted);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.next-step-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.next-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.step-icon.blue { background: #eff6ff; color: #1d4ed8; }
.step-icon.green { background: #ecfdf5; color: #059669; }
.step-icon.yellow { background: #fffbeb; color: #d97706; }
.step-icon.purple { background: #f5f3ff; color: #7c3aed; }
.step-icon.red { background: #fef2f2; color: #dc2626; }
.step-icon.teal { background: #ecfeff; color: #0f766e; }

.next-step-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.next-step-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.next-step-card span {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.92rem;
}

/* FINAL CTA */
.final-cta-section {
    margin-top: 42px;
}

.final-cta-card {
    background: var(--hero-gradient);
    color: var(--white);
    border-radius: 22px;
    padding: 38px 32px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.final-cta-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.final-cta-card p {
    max-width: 760px;
    margin: 0 auto 22px;
    opacity: 0.92;
}

.final-cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 800;
    padding: 14px 22px;
    border-radius: 999px;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .calculator-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sleep-option-meta {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 0 20px;
    }

    .hero {
        padding: 48px 0 84px;
    }

    .hero-content h1 {
        font-size: 1.95rem;
    }

    .calculator-card,
    .how-it-works-card,
    .info-card,
    .month-pay-card,
    .reliability-card,
    .final-cta-card {
        padding: 22px;
    }

    .dual-input-grid,
    .month-pay-grid,
    .sleep-option-meta {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bmr-score-wrap,
    .sleep-option-top {
        flex-direction: column;
        text-align: center;
    }

    .button-row {
        flex-direction: column;
    }

    .calculate-btn,
    .reset-btn {
        width: 100%;
    }

    .faq-question {
        font-size: 0.96rem;
    }

    .summary-header,
    .result-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-row strong {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 0;
    }

    .hero {
        padding: 40px 0 72px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .breadcrumb {
        font-size: 0.78rem;
        line-height: 1.6;
    }

    .card-title-wrap {
        flex-direction: column;
    }

    .bmr-score-circle {
        width: 108px;
        height: 108px;
    }

    .bmr-score-circle span {
        font-size: 1.35rem;
    }

    .calorie-score-circle span {
        font-size: 1.55rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .tax-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .sleep-option-time {
        font-size: 1.25rem;
    }
}