:root {
    --black: #141414;
    --black-soft: #1d1d1d;
    --ink: #202020;
    --muted: #747474;
    --line: #deddd8;
    --offwhite: #f3f2ed;
    --white: #ffffff;
    --blue: #2f73f6;
    --blue-dark: #1856cf;
    --radius: 22px;
    --shadow: 0 18px 55px rgba(16, 16, 16, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--offwhite); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(20,20,20,.95); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header.compact { position: relative; }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 150px; height: 52px; object-fit: cover; object-position: center; border-radius: 8px; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #d8d8d8; font-size: 14px; }
.main-nav a:hover { color: #fff; }
.main-nav .admin-link { padding: 11px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; padding: 9px 12px; }
.back-link { color: #ddd; font-size: 14px; }
.hero { background: radial-gradient(circle at 78% 20%, rgba(47,115,246,.22), transparent 34%), var(--black); color: #fff; overflow: hidden; }
.hero-grid { min-height: 500px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; }
.hero-copy { padding: 70px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #8eb4ff; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.eyebrow.dark { color: var(--blue); }
.hero h1 { margin: 18px 0 18px; max-width: 720px; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; }
.hero p { max-width: 620px; margin: 0 0 32px; color: #bfbfbf; font-size: 18px; line-height: 1.7; }
.hero-button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px; border-radius: 999px; background: #fff; color: #111; font-weight: 800; }
.dark-button { background: var(--black); color: #fff; }
.hero-brand { align-self: stretch; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-brand::before { content: ""; position: absolute; width: 370px; height: 370px; border-radius: 50%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.hero-brand img { width: min(420px, 100%); position: relative; mix-blend-mode: screen; border-radius: 26px; }
.category-strip { background: #fff; border-bottom: 1px solid var(--line); }
.category-scroll { min-height: 84px; display: flex; gap: 10px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-pill { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 999px; background: #f1f1ef; color: #555; font-size: 13px; font-weight: 700; }
.category-pill span { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px; background: #fff; font-size: 11px; }
.category-pill.active { background: var(--black); color: #fff; }
.products-section { padding: 74px 0 90px; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 28px; }
.section-heading h2 { margin: 10px 0 7px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); }
.filter-bar { display: grid; grid-template-columns: minmax(240px, 1.5fr) minmax(180px, .7fr) minmax(180px, .7fr) auto auto; gap: 12px; align-items: end; padding: 18px; margin-bottom: 30px; border-radius: 18px; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.04); }
.filter-bar label { display: grid; gap: 7px; color: #696969; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.filter-bar input, .filter-bar select { width: 100%; height: 46px; border: 1px solid #ddd; border-radius: 12px; padding: 0 13px; background: #fafafa; color: var(--ink); outline: none; }
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,115,246,.12); }
.filter-bar button { height: 46px; border: 0; border-radius: 12px; padding: 0 20px; background: var(--black); color: #fff; font-weight: 800; cursor: pointer; }
.clear-filter { height: 46px; display: grid; place-items: center; padding: 0 10px; color: #666; font-weight: 700; font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.035); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f7f7f5; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-content { padding: 20px; }
.product-category { display: block; margin-bottom: 8px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-content h3 { min-height: 48px; margin: 0 0 8px; font-size: 17px; line-height: 1.42; letter-spacing: -.015em; }
.product-content h3 a:hover { color: var(--blue-dark); }
.product-code { color: #888; font-size: 12px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 19px; padding-top: 16px; border-top: 1px solid #ececea; }
.product-bottom strong { font-size: 20px; letter-spacing: -.035em; }
.view-product { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--black); color: #fff; font-size: 12px; font-weight: 800; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 42px; }
.pagination a { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 13px; border-radius: 12px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.pagination a.active { background: var(--black); color: #fff; border-color: var(--black); }
.empty-state { padding: 70px 24px; text-align: center; background: #fff; border-radius: var(--radius); }
.empty-state img { width: 110px; margin: 0 auto 18px; }
.empty-state h3, .empty-state h1 { margin: 0 0 8px; }
.empty-state p { color: var(--muted); }
.site-footer { padding: 50px 0; background: var(--black); color: #aaa; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.footer-inner img { width: 125px; height: 45px; object-fit: cover; border-radius: 8px; }
.footer-inner p { margin: 0; }
.product-page { min-height: calc(100vh - 76px); padding: 70px 0; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 65px; align-items: center; }
.detail-image { aspect-ratio: 1 / 1; border-radius: 28px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.detail-image img { width: 100%; height: 100%; object-fit: contain; padding: 35px; }
.detail-copy h1 { margin: 14px 0 14px; font-size: clamp(36px, 5vw, 62px); line-height: 1.04; letter-spacing: -.05em; }
.detail-code { display: block; color: #858585; font-size: 13px; }
.detail-price { display: block; margin: 28px 0 24px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.05em; }
.detail-description { padding-top: 24px; border-top: 1px solid #d7d6d1; color: #535353; font-size: 16px; line-height: 1.8; }
.muted-copy { color: #777; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.secondary-button { display: inline-flex; min-height: 50px; align-items: center; padding: 0 22px; border: 1px solid #cbc9c3; border-radius: 999px; font-weight: 800; }
.product-not-found { margin-top: 40px; }
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr .7fr; min-height: 440px; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .search-field { grid-column: 1 / -1; }
    .product-detail { gap: 36px; }
}
@media (max-width: 760px) {
    .container { width: min(100% - 24px, 1180px); }
    .header-inner { min-height: 68px; }
    .brand img { width: 125px; height: 44px; }
    .menu-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 68px; left: 12px; right: 12px; padding: 14px; border-radius: 15px; background: #222; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy { padding: 60px 0 20px; }
    .hero-brand { min-height: 250px; }
    .hero-brand::before { width: 240px; height: 240px; }
    .hero-brand img { width: 270px; }
    .products-section { padding: 52px 0 70px; }
    .filter-bar { grid-template-columns: 1fr; }
    .search-field { grid-column: auto; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .product-content { padding: 15px; }
    .product-content h3 { font-size: 15px; min-height: 43px; }
    .product-bottom strong { font-size: 17px; }
    .view-product { width: 38px; height: 38px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .detail-copy h1 { font-size: 38px; }
}
@media (max-width: 430px) {
    .hero h1 { font-size: 43px; }
    .hero p { font-size: 16px; }
    .category-scroll { min-height: 72px; }
    .product-image img { padding: 10px; }
    .product-content { padding: 12px; }
    .product-category { font-size: 9px; }
    .product-code { font-size: 11px; }
    .product-bottom { gap: 5px; }
    .product-bottom strong { font-size: 15px; }
    .view-product { width: 34px; height: 34px; font-size: 10px; }
}

/* ===== eShop V2: orçamento e experiência responsiva ===== */
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-button-outline { gap: 9px; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.3); }
.hero-button-outline:hover { background: rgba(255,255,255,.08); }
.budget-nav-link { display: inline-flex; align-items: center; gap: 8px; }
.budget-nav-link.current { color: #fff; }
.cart-count { display: inline-grid; min-width: 24px; height: 24px; place-items: center; padding: 0 7px; border-radius: 999px; color: #fff; background: var(--blue); font-size: 11px; font-weight: 900; }
.cart-count.is-empty { background: #454545; color: #cfcfcf; }
.compact-header-actions { display: flex; align-items: center; gap: 22px; }
.section-budget-link { display: inline-flex; align-items: center; gap: 10px; padding: 11px 15px; border: 1px solid #d7d6d0; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 800; }
.section-budget-link span { display: inline-grid; min-width: 24px; height: 24px; place-items: center; border-radius: 999px; background: var(--black); color: #fff; font-size: 11px; }
.add-budget-button { width: 100%; min-height: 44px; margin-top: 12px; border: 0; border-radius: 12px; background: #edf3ff; color: var(--blue-dark); font-size: 12px; font-weight: 900; cursor: pointer; transition: .2s ease; }
.add-budget-button:hover { color: #fff; background: var(--blue); }
.add-budget-button.added { color: #fff; background: #238554; }
.detail-budget-box { margin-top: 28px; padding: 18px; border: 1px solid #d9d8d2; border-radius: 18px; background: rgba(255,255,255,.65); }
.detail-budget-box > label { display: block; margin-bottom: 8px; color: #6d6d6d; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.detail-budget-row { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 10px; }
.detail-quantity { width: 100%; height: 50px; border: 1px solid #cbc9c3; border-radius: 999px; background: #fff; text-align: center; outline: none; }
.detail-quantity:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,115,246,.12); }
.detail-budget-row .hero-button { border: 0; cursor: pointer; }
.detail-budget-box small { display: block; margin-top: 10px; color: #777; line-height: 1.5; }
.detail-actions .secondary-button { gap: 8px; }
.cart-toast { position: fixed; right: 22px; bottom: 22px; z-index: 150; max-width: min(390px, calc(100vw - 28px)); padding: 14px 18px; border-radius: 14px; color: #fff; background: #238554; box-shadow: 0 18px 55px rgba(0,0,0,.24); font-size: 13px; font-weight: 800; transform: translateY(25px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.cart-toast[data-type="warning"] { background: #a8660e; }
.cart-toast[data-type="error"] { background: #a83232; }
.cart-toast.show { transform: translateY(0); opacity: 1; }

.budget-page { min-height: calc(100vh - 76px); padding: 62px 0 90px; }
.budget-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 26px; }
.budget-heading h1 { margin: 10px 0 10px; font-size: clamp(36px, 5vw, 60px); line-height: 1; letter-spacing: -.05em; }
.budget-heading p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.budget-alert { margin-bottom: 20px; padding: 15px 17px; border: 1px solid #efd39e; border-radius: 14px; background: #fff4dc; color: #77500f; font-size: 13px; line-height: 1.55; }
.budget-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 20px; align-items: start; }
.budget-products-card, .budget-summary-card { border: 1px solid rgba(0,0,0,.07); border-radius: 22px; background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.045); }
.budget-products-card { padding: 22px; }
.budget-card-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #ecece8; }
.budget-card-head h2 { margin: 0 0 5px; font-size: 21px; }
.budget-card-head p { margin: 0; color: #888; font-size: 13px; }
.clear-budget-button { border: 0; background: transparent; color: #9f3838; font-size: 12px; font-weight: 800; cursor: pointer; }
.budget-empty { padding: 65px 20px; text-align: center; }
.budget-empty[hidden], .budget-items[hidden] { display: none !important; }
.budget-empty img { width: 100px; margin: 0 auto 18px; }
.budget-empty h3 { margin: 0 0 8px; font-size: 22px; }
.budget-empty p { margin: 0 0 22px; color: #777; }
.budget-items { display: grid; }
.budget-item { display: grid; grid-template-columns: 92px minmax(0, 1fr) 138px 135px; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid #ecece8; }
.budget-item:last-child { border-bottom: 0; }
.budget-item-image { width: 92px; aspect-ratio: 1/1; overflow: hidden; border: 1px solid #e9e9e5; border-radius: 15px; background: #f8f8f5; }
.budget-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.budget-item-info { min-width: 0; display: grid; gap: 6px; }
.budget-item-code { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.budget-item-title { overflow: hidden; font-size: 15px; font-weight: 800; line-height: 1.42; }
.budget-item-title:hover { color: var(--blue-dark); }
.budget-item-unit { color: #777; font-size: 12px; }
.budget-quantity { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; height: 42px; overflow: hidden; border: 1px solid #d7d7d2; border-radius: 12px; background: #fff; }
.budget-quantity-button { height: 100%; border: 0; background: #f4f4f1; font-size: 18px; cursor: pointer; }
.budget-quantity-button:disabled { color: #bbb; cursor: not-allowed; }
.budget-quantity input { width: 100%; min-width: 0; height: 100%; border: 0; background: #fff; text-align: center; outline: none; }
.budget-item-total { display: grid; justify-items: end; gap: 4px; }
.budget-item-total > span { color: #8c8c8c; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.budget-item-total > strong { font-size: 16px; }
.budget-remove-button { margin-top: 5px; padding: 0; border: 0; background: transparent; color: #9f3838; font-size: 11px; font-weight: 800; cursor: pointer; }
.budget-summary-card { position: sticky; top: 96px; padding: 24px; }
.budget-summary-head span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.budget-summary-head h2 { margin: 7px 0 8px; font-size: 25px; letter-spacing: -.035em; }
.budget-summary-head p { margin: 0 0 20px; color: #777; font-size: 13px; line-height: 1.55; }
.budget-customer-form { display: grid; gap: 14px; }
.budget-customer-form label { display: grid; gap: 7px; color: #606060; font-size: 11px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.budget-customer-form input, .budget-customer-form textarea { width: 100%; border: 1px solid #dadad5; border-radius: 12px; background: #fafafa; color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; font-weight: 500; }
.budget-customer-form input { height: 46px; padding: 0 12px; }
.budget-customer-form textarea { padding: 12px; resize: vertical; }
.budget-customer-form input:focus, .budget-customer-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,115,246,.12); }
.budget-totals { display: grid; gap: 11px; margin-top: 4px; padding: 17px 0; border-top: 1px solid #e7e7e3; border-bottom: 1px solid #e7e7e3; }
.budget-totals > div { display: flex; justify-content: space-between; gap: 20px; color: #777; font-size: 13px; }
.budget-totals strong { color: var(--ink); }
.budget-totals .grand-total { align-items: end; }
.budget-totals .grand-total strong { font-size: 24px; letter-spacing: -.04em; }
.whatsapp-budget-button { min-height: 54px; border: 0; border-radius: 14px; background: #1f9d55; color: #fff; font-size: 13px; font-weight: 900; cursor: pointer; }
.whatsapp-budget-button:hover { background: #188347; }
.whatsapp-budget-button:disabled { background: #b7b7b2; cursor: not-allowed; }
.budget-help { color: #888; font-size: 11px; font-weight: 500; line-height: 1.5; text-align: center; }

@media (max-width: 1050px) {
    .budget-layout { grid-template-columns: 1fr; }
    .budget-summary-card { position: static; }
}

@media (max-width: 760px) {
    .compact-header-actions { gap: 10px; }
    .compact-header-actions .back-link { font-size: 12px; }
    .section-heading { align-items: start; flex-direction: column; }
    .section-budget-link { align-self: flex-start; }
    .detail-budget-row { grid-template-columns: 80px minmax(0, 1fr); }
    .budget-page { padding: 42px 0 65px; }
    .budget-heading { align-items: start; flex-direction: column; }
    .budget-products-card, .budget-summary-card { border-radius: 17px; }
    .budget-products-card { padding: 16px; }
    .budget-item { grid-template-columns: 76px minmax(0, 1fr) 118px; }
    .budget-item-image { width: 76px; }
    .budget-item-total { grid-column: 2 / -1; grid-row: 2; display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
    .budget-item-total > span { display: none; }
    .budget-remove-button { margin: 0 0 0 8px; }
}

@media (max-width: 520px) {
    .compact-header-actions .back-link { display: none; }
    .budget-nav-link { font-size: 12px; }
    .hero-actions { display: grid; }
    .hero-actions .hero-button { width: 100%; }
    .section-budget-link { width: 100%; justify-content: center; }
    .detail-budget-row { grid-template-columns: 1fr; }
    .detail-quantity { border-radius: 13px; }
    .detail-budget-row .hero-button { width: 100%; border-radius: 13px; }
    .budget-card-head { align-items: start; flex-direction: column; }
    .budget-item { grid-template-columns: 68px minmax(0, 1fr); gap: 11px; }
    .budget-item-image { width: 68px; }
    .budget-quantity { grid-column: 2; width: 126px; }
    .budget-item-total { grid-column: 2; grid-row: auto; justify-content: space-between; }
    .budget-summary-card { padding: 19px; }
    .cart-toast { right: 14px; bottom: 14px; }
}

/* ===== eShop V3 ===== */
.main-nav a.current { color: #fff; }
.account-nav-link { padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; }
.public-flashes { position: relative; z-index: 30; margin-top: 16px; }
.public-alert { margin-bottom: 10px; padding: 14px 16px; border-radius: 13px; font-size: 13px; line-height: 1.5; }
.public-alert.success { color: #21623d; background: #e6f5ec; border: 1px solid #bfe3cd; }
.public-alert.error { color: #8f2d2d; background: #fdeaea; border: 1px solid #efc1c1; }
.public-alert.warning { color: #7a520f; background: #fff3d8; border: 1px solid #ead4a5; }

.hero-slider { position: relative; min-height: 520px; overflow: hidden; background: var(--black); color: #fff; }
.hero-slides { position: relative; min-height: 520px; }
.hero-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .75s ease, visibility .75s ease; }
.hero-slide.active { position: relative; visibility: visible; opacity: 1; }
.hero-slide-background { position: absolute; inset: 0; background-position: center; background-size: cover; transform: scale(1.025); transition: transform 7s ease; }
.hero-slide.active .hero-slide-background { transform: scale(1); }
.hero-slide-content { position: relative; z-index: 2; min-height: 520px; display: flex; align-items: center; }
.hero-slide .hero-copy { width: min(760px, 70%); padding: 72px 0 84px; }
.hero-slide h1 { margin: 18px 0; max-width: 760px; font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.hero-slide p { max-width: 650px; margin: 0 0 32px; color: #d0d0d0; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.slider-arrow { position: absolute; top: 50%; z-index: 4; width: 48px; height: 48px; margin-top: -24px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; background: rgba(0,0,0,.32); backdrop-filter: blur(8px); font-size: 31px; line-height: 1; cursor: pointer; }
.slider-arrow:hover { background: rgba(255,255,255,.14); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots { position: absolute; z-index: 4; bottom: 26px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.slider-dots button { width: 28px; height: 5px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.32); cursor: pointer; transition: .25s ease; }
.slider-dots button.active { width: 48px; background: #fff; }
.section-heading-actions { display: flex; align-items: center; gap: 10px; }
.section-list-link { display: inline-flex; align-items: center; min-height: 46px; padding: 0 17px; border: 1px solid #d7d6d0; border-radius: 999px; background: transparent; font-size: 13px; font-weight: 800; }
.breadcrumb-public { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; color: #777; font-size: 13px; }
.breadcrumb-public a { color: var(--blue-dark); font-weight: 800; }

.footer-inner { grid-template-columns: auto minmax(220px, 1fr) auto auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; font-size: 12px; }
.footer-links a:hover { color: #fff; }

.about-hero { overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(47,115,246,.22), transparent 34%), var(--black); }
.about-grid { min-height: 590px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-copy h1 { margin: 18px 0; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; }
.about-lead { max-width: 650px; color: #c5c5c5; font-size: 18px; line-height: 1.75; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.about-image { position: relative; aspect-ratio: 1 / .82; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: #222; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content-section { padding: 85px 0 100px; }
.about-content-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: 22px; align-items: start; }
.about-text-card, .about-features { border: 1px solid rgba(0,0,0,.07); border-radius: 24px; background: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.045); }
.about-text-card { padding: clamp(28px, 5vw, 58px); }
.rich-text { margin-top: 24px; color: #505050; font-size: 17px; line-height: 1.9; }
.about-features { padding: 12px 28px; }
.about-features > div { padding: 26px 0; border-bottom: 1px solid #ecece8; }
.about-features > div:last-child { border-bottom: 0; }
.about-features strong { display: block; margin-bottom: 7px; font-size: 18px; }
.about-features p { margin: 0; color: #737373; line-height: 1.65; }

.download-hero { color: #fff; background: radial-gradient(circle at 80% 15%, rgba(47,115,246,.25), transparent 32%), var(--black); }
.download-heading { min-height: 390px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.download-heading h1 { max-width: 800px; margin: 18px 0; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; }
.download-heading p { max-width: 720px; margin: 0; color: #c7c7c7; font-size: 18px; line-height: 1.7; }
.download-options-section { padding: 68px 0 95px; }
.download-summary { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.download-summary strong { font-size: 40px; letter-spacing: -.05em; }
.download-summary span { color: #777; }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.download-card { position: relative; overflow: hidden; padding: 38px; border: 1px solid rgba(0,0,0,.07); border-radius: 25px; background: #fff; box-shadow: 0 15px 45px rgba(0,0,0,.045); }
.download-card h2 { margin: 13px 0 10px; font-size: 34px; letter-spacing: -.04em; }
.download-card p { max-width: 520px; color: #6f6f6f; line-height: 1.7; }
.download-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; }
.download-card li { position: relative; padding-left: 18px; color: #555; font-size: 13px; font-weight: 700; }
.download-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }
.download-icon { position: absolute; top: 28px; right: 28px; display: grid; width: 66px; height: 66px; place-items: center; border-radius: 18px; color: var(--blue-dark); background: #eaf1ff; font-size: 13px; font-weight: 900; }
.download-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 23px; border-radius: 999px; color: #fff; background: var(--blue); font-weight: 900; }
.download-button.dark { background: var(--black); }
.download-note { margin-top: 18px; padding: 14px 17px; border-radius: 13px; color: #6f6f6f; background: #e9e8e2; font-size: 12px; }

.customer-auth-page { min-height: calc(100vh - 76px); padding: 70px 0 90px; color: #fff; background: radial-gradient(circle at 18% 20%, rgba(47,115,246,.18), transparent 30%), var(--black); }
.customer-auth-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 480px); gap: 70px; align-items: center; }
.customer-auth-intro h1 { max-width: 700px; margin: 18px 0; font-size: clamp(44px, 6vw, 72px); line-height: .98; letter-spacing: -.055em; }
.customer-auth-intro > p { max-width: 650px; color: #c5c5c5; font-size: 17px; line-height: 1.75; }
.auth-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.auth-benefits span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #d9d9d9; font-size: 11px; font-weight: 800; }
.customer-auth-card { padding: 34px; border: 1px solid rgba(255,255,255,.11); border-radius: 24px; color: var(--ink); background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.customer-auth-card h2 { margin: 0 0 7px; font-size: 30px; letter-spacing: -.04em; }
.customer-auth-card > p { margin: 0 0 22px; color: #777; }
.customer-form { display: grid; gap: 15px; }
.customer-form label { display: grid; gap: 7px; color: #5c5c5c; font-size: 11px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.customer-form input, .customer-form textarea, .customer-form select { width: 100%; border: 1px solid #d8d8d3; border-radius: 12px; background: #fafafa; color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; font-weight: 500; }
.customer-form input, .customer-form select { height: 48px; padding: 0 13px; }
.customer-form textarea { padding: 13px; resize: vertical; }
.customer-form input:focus, .customer-form textarea:focus, .customer-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,115,246,.12); }
.customer-form small { color: #8d8d8d; font-size: 10px; font-weight: 500; text-transform: none; letter-spacing: 0; }
.customer-form-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.customer-primary-button { display: inline-flex; min-height: 51px; align-items: center; justify-content: center; padding: 0 22px; border: 0; border-radius: 13px; color: #fff; background: var(--blue); font-size: 13px; font-weight: 900; cursor: pointer; }
.customer-primary-button:hover { background: var(--blue-dark); }
.customer-primary-button.small { min-height: 42px; }
.customer-auth-footer { margin-top: 20px; padding-top: 18px; border-top: 1px solid #ededeb; color: #777; font-size: 13px; text-align: center; }
.customer-auth-footer a { color: var(--blue-dark); font-weight: 900; }

.account-page { min-height: calc(100vh - 76px); padding: 62px 0 95px; }
.account-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.account-heading h1 { margin: 10px 0 8px; font-size: clamp(38px, 5vw, 60px); line-height: 1; letter-spacing: -.05em; }
.account-heading p { margin: 0; color: #747474; font-size: 15px; }
.account-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.account-stats > div { padding: 22px; border: 1px solid rgba(0,0,0,.06); border-radius: 18px; background: #fff; }
.account-stats span { display: block; color: #858585; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.account-stats strong { display: block; margin-top: 8px; font-size: 29px; letter-spacing: -.04em; }
.account-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 20px; align-items: start; }
.account-sidebar { position: sticky; top: 96px; display: grid; gap: 5px; padding: 12px; border: 1px solid rgba(0,0,0,.06); border-radius: 17px; background: #fff; }
.account-sidebar a { padding: 12px 13px; border-radius: 10px; color: #6f6f6f; font-size: 13px; font-weight: 800; }
.account-sidebar a:hover, .account-sidebar a.active { color: #fff; background: var(--black); }
.account-content { display: grid; gap: 20px; }
.account-card { padding: 24px; border: 1px solid rgba(0,0,0,.06); border-radius: 20px; background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,.035); }
.account-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.account-card-head h2 { margin: 0 0 5px; font-size: 22px; letter-spacing: -.03em; }
.account-card-head p { margin: 0; color: #858585; font-size: 13px; }
.account-empty { padding: 44px 20px; border-radius: 15px; background: #f6f6f3; text-align: center; }
.account-empty h3 { margin: 0 0 7px; }
.account-empty p { color: #777; }
.account-empty a { color: var(--blue-dark); font-weight: 900; }
.budget-history-list { display: grid; }
.budget-history-row { display: grid; grid-template-columns: minmax(170px, 1fr) auto auto auto; gap: 22px; align-items: center; padding: 17px 2px; border-bottom: 1px solid #ecece8; }
.budget-history-row:last-child { border-bottom: 0; }
.budget-history-row > div { display: grid; gap: 4px; }
.budget-history-row > div:nth-child(2) { text-align: right; }
.budget-history-row span { color: #878787; font-size: 11px; }
.budget-history-row b { color: var(--blue-dark); font-size: 11px; }
.budget-status { display: inline-flex; width: fit-content; padding: 7px 9px; border-radius: 999px; color: #286642 !important; background: #e5f5eb; font-size: 10px !important; font-weight: 900; }
.budget-status.large { font-size: 11px !important; }
.account-form { max-width: 680px; }
.narrow-account-page .container { max-width: 850px; }
.password-card { max-width: 600px; }

.budget-account-box { display: grid; gap: 4px; margin-bottom: 18px; padding: 15px; border-radius: 13px; background: #f3f6fc; }
.budget-account-box > span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.budget-account-box strong { font-size: 14px; }
.budget-account-box small { color: #777; font-size: 11px; }
.budget-account-box a { margin-top: 4px; color: var(--blue-dark); font-size: 11px; font-weight: 900; }
.budget-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.budget-detail-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 20px; align-items: start; }
.saved-budget-items { display: grid; }
.saved-budget-item { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; gap: 15px; align-items: center; padding: 15px 0; border-bottom: 1px solid #ecece8; }
.saved-budget-item:last-child { border-bottom: 0; }
.saved-budget-item img { width: 78px; height: 78px; object-fit: contain; padding: 6px; border: 1px solid #e7e7e3; border-radius: 13px; background: #fafafa; }
.saved-budget-item > div { display: grid; gap: 5px; }
.saved-budget-item span { color: var(--blue); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.saved-budget-item small { color: #777; }
.budget-detail-summary { position: sticky; top: 96px; }
.budget-detail-summary > span { margin-bottom: 15px; }
.budget-detail-summary > div { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; border-bottom: 1px solid #ecece8; }
.budget-detail-summary small { color: #777; }
.budget-detail-summary .summary-total strong { font-size: 25px; letter-spacing: -.04em; }
.budget-detail-summary .saved-notes { display: block; }
.saved-notes p { margin: 8px 0 0; color: #555; line-height: 1.6; }
.summary-disclaimer { color: #888; font-size: 11px; line-height: 1.55; }

@media (max-width: 1050px) {
    .hero-slide .hero-copy { width: 78%; }
    .about-grid { gap: 35px; }
    .customer-auth-shell { gap: 35px; }
    .budget-detail-layout { grid-template-columns: 1fr; }
    .budget-detail-summary { position: static; }
}

@media (max-width: 820px) {
    .hero-slider, .hero-slides, .hero-slide-content { min-height: 500px; }
    .hero-slide .hero-copy { width: 88%; padding-left: 25px; padding-right: 25px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .about-grid, .about-content-grid, .customer-auth-shell { grid-template-columns: 1fr; }
    .about-grid { padding: 70px 0; }
    .about-image { max-width: 600px; }
    .customer-auth-intro { padding-top: 10px; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow-x: auto; }
    .budget-history-row { grid-template-columns: minmax(150px, 1fr) auto auto; }
    .budget-history-row b { grid-column: 1 / -1; }
    .footer-inner { grid-template-columns: auto 1fr; }
    .footer-links, .footer-inner > span { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .section-heading-actions { width: 100%; }
    .section-list-link, .section-budget-link { flex: 1; justify-content: center; }
    .download-grid { grid-template-columns: 1fr; }
    .account-heading { align-items: start; flex-direction: column; }
    .account-stats { grid-template-columns: 1fr; }
    .saved-budget-item { grid-template-columns: 66px minmax(0, 1fr); }
    .saved-budget-item img { width: 66px; height: 66px; }
    .saved-budget-item > b { grid-column: 2; }
}

@media (max-width: 620px) {
    .hero-slide .hero-copy { width: 100%; padding: 65px 38px 85px; }
    .hero-slide h1 { font-size: clamp(39px, 13vw, 58px); }
    .hero-slide p { font-size: 15px; }
    .slider-arrow { width: 38px; height: 38px; font-size: 25px; }
    .download-card { padding: 29px 22px; }
    .download-icon { position: static; margin-bottom: 20px; }
    .download-card ul { grid-template-columns: 1fr; }
    .customer-auth-card { padding: 27px 20px; }
    .customer-form-two { grid-template-columns: 1fr; }
    .account-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-card { padding: 18px; }
    .account-card-head { align-items: start; flex-direction: column; }
    .budget-history-row { grid-template-columns: 1fr auto; gap: 12px; }
    .budget-history-row > div:nth-child(2) { text-align: right; }
    .budget-history-row .budget-status { grid-column: 1; }
    .budget-history-row b { grid-column: 2; grid-row: 2; }
    .footer-inner { display: flex; align-items: flex-start; flex-direction: column; }
}
