@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #f5eddd;
    --bg-strong: #0f382a;
    --bg-soft: #fffaf0;
    --card: rgba(255, 252, 246, 0.94);
    --card-strong: rgba(255, 248, 232, 0.95);
    --text: #12382d;
    --muted: #5e675f;
    --line: rgba(18, 56, 45, 0.11);
    --brand: #1d6648;
    --brand-strong: #0f3f2f;
    --accent: #d5a54a;
    --accent-soft: rgba(255, 241, 207, 0.92);
    --danger: #9b2f2f;
    --success: #0f7d4a;
    --shadow: 0 24px 60px rgba(18, 38, 29, 0.13);
    --shadow-soft: 0 16px 32px rgba(18, 38, 29, 0.08);
    --radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 220, 132, 0.38), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(29, 102, 72, 0.12), transparent 22%),
        linear-gradient(180deg, #faf3e4 0%, #f3ead6 42%, #efe3cd 100%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(255, 245, 218, 0.7), transparent 18%),
        radial-gradient(circle at 80% 75%, rgba(214, 165, 74, 0.1), transparent 24%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.03em;
}

.flash {
    width: min(1120px, calc(100% - 2rem));
    margin: 1rem auto;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
}

.flash-success {
    background: rgba(15, 125, 74, 0.1);
    border: 1px solid rgba(15, 125, 74, 0.2);
    color: var(--success);
}

.flash-error {
    background: rgba(155, 47, 47, 0.08);
    border: 1px solid rgba(155, 47, 47, 0.2);
    color: var(--danger);
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.utility-bar {
    position: sticky;
    top: 0;
    z-index: 35;
    backdrop-filter: blur(16px);
    background: rgba(255, 252, 246, 0.82);
    border-bottom: 1px solid var(--line);
}

.utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.utility-bar__copy {
    display: grid;
    gap: 0.12rem;
}

.utility-bar__copy strong {
    font-size: 0.98rem;
}

.utility-bar__copy span {
    color: var(--muted);
    font-size: 0.88rem;
}

.utility-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(246, 241, 228, 0.82);
    border-bottom: 1px solid var(--line);
}

.site-header__inner,
.hero,
.section-grid,
.policy-page,
.order-access,
.order-page,
.thank-you,
.panel-grid,
.split-grid {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
}

.brand-mark img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
}

.button,
button,
.button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0.98rem 1.5rem;
    min-height: 54px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button,
button {
    background: linear-gradient(135deg, var(--accent), #f7cf77);
    color: #1c1b18;
    box-shadow: 0 16px 28px rgba(216, 165, 69, 0.28);
}

.button:hover,
button:hover,
.button-outline:hover {
    transform: translateY(-1px);
}

.button:disabled,
button:disabled,
.button-outline:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button-dark {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff;
    box-shadow: 0 18px 30px rgba(17, 67, 47, 0.24);
}

.button-outline,
.text-button {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
    align-items: center;
    padding: 4rem 0 3rem;
}

.hero-copy h1 {
    font-size: clamp(2.25rem, 4vw, 4.5rem);
    line-height: 0.96;
    margin: 0 0 1rem;
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-card,
.card,
.panel-card,
.table-card,
.info-banner {
    background: linear-gradient(180deg, var(--card) 0%, rgba(255, 249, 238, 0.94) 100%);
    border: 1px solid rgba(216, 165, 69, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.25rem;
}

.hero-card img {
    border-radius: calc(var(--radius) - 6px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 102, 72, 0.12);
    border: 1px solid rgba(29, 102, 72, 0.18);
    color: var(--brand);
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-actions,
.cta-strip,
.price-grid,
.benefit-grid,
.feature-grid,
.faq-grid,
.order-access-grid,
.form-grid,
.stat-grid,
.table-actions {
    display: grid;
    gap: 1rem;
}

.hero-actions {
    grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
    margin-top: 1.5rem;
}

.benefit-grid,
.feature-grid,
.faq-grid,
.price-grid,
.order-access-grid,
.stat-grid,
.panel-grid,
.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
    padding: 1rem 0 4rem;
}

.section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-intro {
    margin: 0 0 1.5rem;
    color: var(--muted);
    max-width: 760px;
    line-height: 1.7;
}

.card,
.panel-card,
.table-card,
.price-card,
.faq-item,
.auth-card {
    padding: 1.5rem;
}

.price-card {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 211, 0.96));
    border: 1px solid rgba(216, 165, 69, 0.24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-amount {
    font-size: 2.35rem;
    font-weight: 800;
}

.price-meta {
    color: var(--muted);
}

.highlight-list,
.plain-list {
    padding-left: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}

.cta-strip {
    grid-template-columns: 1fr max-content;
    align-items: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
}

.faq-item h3 {
    margin-top: 0;
}

.site-footer {
    background: #10251d;
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 0 6rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1rem;
}

.site-footer__links {
    display: grid;
    gap: 0.55rem;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 32;
    background: #1ea551;
    color: #fff;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.mobile-bottom-nav {
    display: none;
}

.cookie-popup {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    padding: 1rem;
}

.policy-page,
.order-access,
.order-page,
.thank-you {
    padding: 3rem 0 4rem;
}

.contact-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.auth-card,
.panel-card,
.table-card {
    background: linear-gradient(180deg, var(--card) 0%, rgba(255, 249, 237, 0.96) 100%);
    border: 1px solid rgba(18, 56, 45, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
}

.form-grid > div {
    display: grid;
    align-content: start;
}

label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-strong);
}

input,
textarea,
select {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(22, 49, 41, 0.16);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.92rem 1rem;
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(29, 102, 72, 0.48);
    box-shadow: 0 0 0 4px rgba(29, 102, 72, 0.12);
}

.hint {
    color: var(--muted);
    font-size: 0.88rem;
}

.auth-card > form,
.panel-card > form,
.table-card > form,
.cookie-popup > form,
.table-card td form {
    display: grid;
    gap: 1rem;
}

.table-card td form input,
.table-card td form select,
.table-card td form textarea,
.table-card td form button,
.table-card td form .button-outline {
    margin-top: 0.2rem;
}

.auth-card > form > button,
.panel-card > form > button,
.table-card > form > button,
.cookie-popup > form > button,
.table-card td form > button,
.auth-card > form > .button,
.panel-card > form > .button,
.table-card > form > .button,
.cookie-popup > form > .button,
.table-card td form > .button,
.auth-card > form > .button-outline,
.panel-card > form > .button-outline,
.table-card > form > .button-outline,
.table-card td form > .button-outline {
    margin-top: 0.4rem;
}

.panel-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.panel-sidebar {
    background:
        radial-gradient(circle at top left, rgba(255, 214, 112, 0.18), transparent 24%),
        linear-gradient(180deg, #123928, #081d15 100%);
    color: #fff;
    padding: 1.5rem 1.1rem;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.panel-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.brand-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: #fff;
}

.brand-mini-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mini-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 225, 154, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffe3a2;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.panel-usercard {
    padding: 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 0.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 225, 154, 0.2), rgba(255, 255, 255, 0.08));
    color: #ffe7b4;
    font-size: 1rem;
    font-weight: 800;
}

.panel-usercard strong {
    display: block;
    font-size: 1.1rem;
}

.panel-usercard span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    min-height: 0;
    padding-bottom: 1rem;
}

.panel-nav a,
.panel-nav .text-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    min-height: 52px;
    width: 100%;
}

.panel-nav a:hover,
.panel-nav .text-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.panel-nav a.is-active {
    background: linear-gradient(135deg, rgba(255, 227, 162, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 231, 180, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #fff;
}

.panel-nav a.is-active::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffd988;
    box-shadow: 0 0 16px rgba(255, 217, 136, 0.8);
}

.panel-nav form {
    margin: 0;
    margin-top: auto;
    padding-top: 0.85rem;
}

.panel-main {
    padding: 1.75rem;
    min-width: 0;
    position: relative;
}

.panel-header {
    margin-bottom: 1.4rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.76);
    border: 1px solid rgba(18, 56, 45, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.panel-header h1 {
    margin: 0.4rem 0 0;
    font-size: clamp(2.3rem, 4vw, 3.3rem);
    line-height: 0.95;
}

.panel-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.panel-mobile-brandmark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
}

.panel-mobile-brandcopy {
    display: grid;
    gap: 0.1rem;
}

.panel-mobile-brandcopy strong {
    font-size: 1rem;
    line-height: 1;
}

.panel-mobile-brandcopy small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.panel-topline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.panel-topline .eyebrow {
    margin-bottom: 0;
}

.panel-header-copy {
    margin: 0.85rem 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.7;
}

.panel-grid {
    display: grid;
    gap: 1rem;
}

.stat-card {
    padding: 1.35rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 252, 244, 0.98), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(216, 165, 69, 0.16);
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.table-card table {
    width: 100%;
    border-collapse: collapse;
}

.table-card th,
.table-card td {
    text-align: left;
    padding: 0.9rem 0.45rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(29, 102, 72, 0.12);
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
}

.badge.warn {
    background: rgba(216, 165, 69, 0.18);
    color: #7c5600;
}

.badge.danger {
    background: rgba(155, 47, 47, 0.12);
    color: var(--danger);
}

.split-grid {
    display: grid;
    gap: 1rem;
}

.surface-stack {
    display: grid;
    gap: 1rem;
}

.status-track {
    display: grid;
    gap: 0.8rem;
}

.status-step {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.9rem;
    align-items: start;
}

.status-step-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, #ffd47a, #d5a54a);
    box-shadow: 0 0 0 6px rgba(213, 165, 74, 0.16);
}

.status-step-copy strong {
    display: block;
    font-size: 1rem;
}

.status-step-copy span {
    color: var(--muted);
    font-size: 0.88rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.order-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.order-summary-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(255, 248, 236, 0.96));
    border: 1px solid rgba(18, 56, 45, 0.09);
    box-shadow: var(--shadow);
}

.order-summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-summary-top h2 {
    margin: 0.25rem 0 0;
    font-size: 2rem;
    line-height: 0.95;
}

.order-summary-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.order-inline-note {
    color: var(--muted);
    font-size: 0.88rem;
}

.info-tile {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(18, 56, 45, 0.08);
}

.info-tile strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.media-frame {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(18, 56, 45, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.media-frame img {
    width: 100%;
    object-fit: cover;
    min-height: 220px;
    background: rgba(255, 248, 230, 0.9);
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-live-card .info-grid,
.invoice-sheet .info-grid {
    margin-top: 1rem;
}

.dashboard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card-link {
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.stat-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 58px rgba(18, 38, 29, 0.16);
}

.invoice-sheet {
    display: grid;
    gap: 1.25rem;
}

.invoice-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.invoice-brand {
    display: grid;
    gap: 0.3rem;
    justify-items: end;
    text-align: right;
}

.invoice-brand img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
}

.inline-actions {
    display: flex;
    gap: 0.75rem;
}

.panel-drawer-toggle,
.panel-drawer-close {
    display: none;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff;
    border: none;
    min-height: 46px;
    padding: 0.8rem 1rem;
    box-shadow: var(--shadow-soft);
}

.panel-backdrop {
    display: none;
    border-radius: 0;
    min-height: 0;
    padding: 0;
    box-shadow: none;
}

body.has-drawer-open {
    overflow: hidden;
}

@media (min-width: 961px) {
    .panel-shell {
        display: block;
    }

    .panel-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 290px;
        height: 100vh;
        padding-bottom: 1.75rem;
        box-shadow: 24px 0 60px rgba(7, 22, 16, 0.16);
    }

    .panel-main {
        margin-left: 290px;
        min-height: 100vh;
        padding: 2rem;
    }
}

@media (max-width: 960px) {
    .hero,
    .benefit-grid,
    .feature-grid,
    .faq-grid,
    .price-grid,
    .site-footer__grid,
    .form-grid,
    .panel-grid,
    .split-grid,
    .order-access-grid {
        grid-template-columns: 1fr;
    }

    .panel-shell {
        grid-template-columns: 1fr;
    }

    .utility-bar__inner,
    .utility-bar__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .utility-bar__copy {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .panel-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(100vw, 360px);
        height: 100vh;
        z-index: 70;
        transform: translateX(-108%);
        transition: transform 0.24s ease;
        box-shadow: 0 20px 40px rgba(5, 14, 11, 0.4);
    }

    body.has-drawer-open .panel-sidebar {
        transform: translateX(0);
    }

    .panel-backdrop {
        position: fixed;
        inset: 0;
        z-index: 65;
        border: none;
        background: rgba(7, 21, 16, 0.45);
        backdrop-filter: blur(6px);
    }

    body.has-drawer-open .panel-backdrop {
        display: block;
    }

    .panel-drawer-toggle,
    .panel-drawer-close {
        display: inline-flex;
    }

    .panel-main {
        margin-left: 0;
        padding: 1rem;
    }

    .panel-header {
        position: sticky;
        top: 0.75rem;
        z-index: 20;
    }

    .panel-topline {
        display: none;
    }

    .order-card-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid,
    .compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .invoice-head {
        flex-direction: column;
    }

    .invoice-brand {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .header-nav {
        display: none;
    }

    .hero-actions,
    .cta-strip {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 45;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.55rem;
        padding: 0.7rem;
        background: rgba(255, 253, 247, 0.96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        text-align: center;
        font-size: 0.78rem;
        color: var(--muted);
    }

    .mobile-bottom-nav .button-dark {
        padding: 0.85rem 1rem;
        border-radius: 16px;
    }

    .panel-header {
        padding: 1rem;
    }

    .panel-header h1 {
        font-size: 2.05rem;
    }

    .panel-header-copy {
        font-size: 0.92rem;
    }

    .panel-card,
    .table-card,
    .auth-card,
    .price-card,
    .faq-item,
    .stat-card {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .panel-drawer-toggle,
    .button,
    button,
    .button-outline {
        width: 100%;
    }

    .panel-sidebar-head .panel-drawer-close {
        width: auto;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .table-card {
        overflow-x: auto;
    }

    .table-card table {
        min-width: 620px;
    }

    .dashboard-grid,
    .compact-grid {
        grid-template-columns: 1fr;
    }
}
