:root {
    --bg-base: #070910;
    --bg-elevated: #0d1220;
    --surface: rgba(13, 18, 32, 0.86);
    --surface-strong: rgba(15, 22, 38, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.03);
    --text-light: #f5f7ff;
    --text-body: #d6d9e8;
    --text-muted: #9ba4bf;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --accent: #f6a723;
    --accent-strong: #ffbf54;
    --accent-dark: #2b1800;
    --primary: #2a7fff;
    --success: #25d366;
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.28);
    --radius: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --font-head: "Barlow Condensed", sans-serif;
    --font-body: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(246, 167, 35, 0.18), transparent 24%),
        radial-gradient(circle at left center, rgba(42, 127, 255, 0.14), transparent 22%),
        linear-gradient(180deg, #0a0d16 0%, #070910 45%, #0a0d16 100%);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 78%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 16, 0.12), rgba(7, 9, 16, 0.3));
    pointer-events: none;
    z-index: -1;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    line-height: 0.98;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

p {
    color: var(--text-body);
}

.container {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.section-header,
.intro-band {
    display: grid;
    gap: 18px;
    align-items: end;
    margin-bottom: 40px;
}

.intro-band {
    grid-template-columns: 1.2fr 0.8fr;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(246, 167, 35, 0.6);
}

.section-label.centered {
    justify-content: center;
}

.section-heading {
    max-width: 820px;
    font-size: clamp(2.6rem, 5vw, 5rem);
}

.section-copy {
    max-width: 680px;
    font-size: 1.02rem;
    color: var(--text-muted);
}

.centered-copy {
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border: 1px solid rgba(246, 167, 35, 0.28);
    border-radius: 999px;
    background: rgba(246, 167, 35, 0.08);
    color: #ffd997;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.btn,
.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border-color: rgba(255, 191, 84, 0.4);
    color: #1f1300;
    box-shadow: 0 18px 36px rgba(246, 167, 35, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 22px 42px rgba(246, 167, 35, 0.34);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: rgba(246, 167, 35, 0.4);
    color: #fff1d0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #28db6f, #53f28f);
    border-color: rgba(83, 242, 143, 0.4);
    color: #052111;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.22);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 11, 20, 0.78);
    backdrop-filter: blur(22px);
}

.nav-shell {
    min-height: 88px;
    display: grid;
    grid-template-columns: minmax(180px, auto) 1fr auto;
    align-items: center;
    column-gap: 32px;
}

.logo {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 0 24px rgba(246, 167, 35, 0.45);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    min-width: 0;
}

.nav-links a,
.nav-contact {
    position: relative;
    color: var(--text-light);
    font-family: var(--font-head);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-links a::after,
.nav-contact::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-contact:hover {
    color: #fff4d7;
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-contact:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 138px 0 94px;
    background:
        linear-gradient(90deg, rgba(7, 9, 16, 0.86) 0%, rgba(7, 9, 16, 0.58) 50%, rgba(7, 9, 16, 0.82) 100%),
        url("https://images.unsplash.com/photo-1461896836934-ffe607ba8211?q=80&w=2200&auto=format&fit=crop") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 16, 0.16) 0%, rgba(7, 9, 16, 0.72) 100%),
        linear-gradient(90deg, rgba(7, 9, 16, 0.5) 0%, rgba(7, 9, 16, 0.14) 50%, rgba(7, 9, 16, 0.44) 100%),
        radial-gradient(circle at 75% 20%, rgba(246, 167, 35, 0.24), transparent 24%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: clamp(48px, 5vw, 72px);
    align-items: center;
}

.hero-copy-column {
    display: grid;
    align-content: center;
    gap: 18px;
    min-width: 0;
    width: 100%;
    max-width: 700px;
}

.hero-copy-column > .reveal {
    margin: 0;
    min-width: 0;
}

.hero-brand {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-title {
    width: 100%;
    max-width: 700px;
    font-size: clamp(3.2rem, 5.9vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0.025em;
    text-wrap: balance;
}

.hero-copy {
    max-width: 700px;
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    color: #dfe5f5;
    text-wrap: pretty;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f2f4fd;
    font-size: 0.92rem;
}

.hero-panel,
.page-aside,
.info-panel,
.quote-form-shell,
.terms-panel,
.catalog-cta,
.cta-banner {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.hero-panel {
    width: 100%;
    max-width: 420px;
    padding: 28px;
    backdrop-filter: blur(14px);
    justify-self: end;
    align-self: center;
}

.hero-panel-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-panel-label {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel-label.accent {
    background: rgba(246, 167, 35, 0.12);
    color: #ffd996;
}

.hero-metrics {
    display: grid;
    gap: 18px;
}

.hero-metrics article {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hero-metrics strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: #fff4d7;
}

.hero-metrics span {
    color: var(--text-muted);
}

.hero-contact-card {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-contact-card p {
    color: #eef2ff;
    font-size: 0.92rem;
}

.hero-contact-card a {
    color: #ffe3aa;
    word-break: break-word;
}

.ticker-strip {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(246, 167, 35, 0.95), rgba(255, 191, 84, 0.92));
}

.ticker-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    animation: ticker-scroll 24s linear infinite;
}

.ticker-segment {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 20px;
    color: #120c01;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.stats-grid,
.partner-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

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

.stat-card,
.partner-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        var(--surface);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover,
.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 167, 35, 0.26);
    box-shadow: var(--shadow-md);
}

.stat-value {
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: #fff1cf;
}

.stat-label {
    color: var(--text-muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 16, 0.1), rgba(7, 9, 16, 0.82));
    z-index: 1;
    transition: background 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover::before {
    background: linear-gradient(180deg, rgba(7, 9, 16, 0.04), rgba(7, 9, 16, 0.74));
}

.category-content {
    position: absolute;
    inset: auto 24px 24px;
    z-index: 2;
}

.category-content strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 2rem;
    line-height: 0.98;
}

.category-content span {
    color: rgba(245, 247, 255, 0.84);
}

.products-wrap {
    display: grid;
    gap: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.top-gap {
    margin-top: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        var(--surface-strong);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 167, 35, 0.26);
    box-shadow: var(--shadow-md);
}

.product-card[hidden] {
    display: none;
}

.img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-elevated);
}

.img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 9, 16, 0.34));
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.07);
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.sku {
    color: #c1c8df;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(246, 167, 35, 0.1);
    border: 1px solid rgba(246, 167, 35, 0.2);
    color: #ffd88f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.92rem;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-pill,
.moq-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-body);
    font-size: 0.88rem;
}

.moq-badge span {
    color: #fff1cf;
    font-weight: 700;
    margin-left: 6px;
}

.add-btn {
    margin-top: auto;
    width: 100%;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 10px auto 0;
    color: #ffe3aa;
    font-family: var(--font-head);
    font-size: 1.04rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.view-all-link::after {
    content: ">";
    color: var(--accent);
}

.split-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.split-copy {
    padding-right: 20px;
}

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

.partner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(246, 167, 35, 0.18);
    background: rgba(246, 167, 35, 0.08);
    color: var(--accent);
}

.partner-icon svg {
    width: 26px;
    height: 26px;
}

.partner-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.cta-banner {
    display: grid;
    gap: 24px;
    justify-items: center;
    padding: 42px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(246, 167, 35, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--surface-strong);
}

.cta-banner h2 {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.cta-banner p {
    max-width: 700px;
    color: #dde2f2;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.site-footer {
    margin-top: 110px;
    padding: 72px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 13, 22, 0.92), rgba(5, 7, 13, 0.98));
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    padding-bottom: 28px;
}

.footer-brand-block p {
    max-width: 430px;
    margin-top: 18px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #edf1ff;
    font-size: 0.86rem;
}

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

.footer-title {
    margin-bottom: 16px;
    font-size: 1.55rem;
    color: #fff1cf;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffe3aa;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #7f89a7;
    font-size: 0.92rem;
    text-align: center;
}

.page-header {
    padding: 152px 0 60px;
    background:
        linear-gradient(180deg, rgba(11, 15, 26, 0.82), rgba(7, 9, 16, 0.96)),
        radial-gradient(circle at top center, rgba(246, 167, 35, 0.12), transparent 34%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.55fr;
    gap: 30px;
    align-items: end;
}

.page-header h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-header p {
    max-width: 760px;
    color: #dbe1f2;
    font-size: 1.02rem;
}

.page-aside {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.page-aside strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-aside span {
    color: var(--text-muted);
}

.page-aside a {
    color: #ffe3aa;
}

.catalog-shell {
    padding-top: 48px;
}

.catalog-toolbar {
    display: grid;
    gap: 22px;
    align-items: end;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
        var(--surface);
}

.catalog-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.filter-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
}

.filter-btn.filter-active {
    border-color: rgba(42, 127, 255, 0.45);
    background: rgba(42, 127, 255, 0.12);
    color: #dce8ff;
}

.catalog-cta {
    display: grid;
    gap: 16px;
    margin-top: 32px;
    padding: 28px;
}

.catalog-cta h3 {
    font-size: 2rem;
}

.contact-shell {
    padding-top: 42px;
}

.info-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.info-panel,
.quote-form-shell {
    padding: 32px;
}

.contact-heading,
.form-header h2 {
    margin-bottom: 14px;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.contact-intro {
    max-width: 520px;
}

.contact-stack {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.contact-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(246, 167, 35, 0.18);
    background: rgba(246, 167, 35, 0.08);
    color: var(--accent);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h3 {
    margin-bottom: 6px;
    font-size: 1.55rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-body);
}

.contact-highlight {
    margin: 0 0 22px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(42, 127, 255, 0.12), rgba(246, 167, 35, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-highlight p {
    margin-bottom: 6px;
    color: #eef3ff;
}

.contact-highlight strong {
    color: #fff1cf;
    font-size: 1rem;
}

.standout-whatsapp {
    width: 100%;
}

.form-header {
    margin-bottom: 28px;
}

.form-header p {
    max-width: 600px;
}

.quote-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    display: grid;
    gap: 9px;
}

.input-group label {
    color: #edf2ff;
    font-size: 0.92rem;
    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(7, 9, 16, 0.96);
    color: var(--text-light);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #818baa;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: rgba(246, 167, 35, 0.45);
    box-shadow: 0 0 0 4px rgba(246, 167, 35, 0.1);
    transform: translateY(-1px);
}

.success-message {
    display: none;
    padding: 16px 18px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    background: rgba(37, 211, 102, 0.12);
    color: #c8f9da;
    font-size: 0.96rem;
}

.success-message.is-visible {
    display: block;
}

.terms-layout {
    display: grid;
}

.terms-panel {
    padding: 34px;
}

.terms-section + .terms-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-section h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.terms-section a {
    color: #ffe3aa;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #4ef08b);
    color: #072010;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(246, 167, 35, 0.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2000;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(246, 167, 35, 0.55);
    border-radius: 999px;
    background: rgba(246, 167, 35, 0.05);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1999;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    background: rgba(246, 167, 35, 0.12);
    border-color: rgba(246, 167, 35, 0.28);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.delay-1 {
    transition-delay: 0.05s;
}

.delay-2 {
    transition-delay: 0.1s;
}

.delay-3 {
    transition-delay: 0.15s;
}

.delay-4 {
    transition-delay: 0.2s;
}

.delay-5 {
    transition-delay: 0.25s;
}

@media (max-width: 1120px) {
    .page-header-grid,
    .split-feature,
    .footer-top,
    .info-layout,
    .intro-band {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
        gap: 40px;
    }

    .hero-title {
        font-size: clamp(3rem, 5.6vw, 4.9rem);
    }

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

    .product-grid,
    .partner-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        min-height: auto;
        padding: 132px 0 82px;
    }
}

@media (max-width: 820px) {
    * {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .container {
        width: min(100% - 28px, 1280px);
    }

    .section {
        padding: 82px 0;
    }

    .site-header {
        background: rgba(8, 11, 20, 0.92);
    }

    .nav-shell {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 12px;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px 18px;
    }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .logo {
        font-size: 1.66rem;
        letter-spacing: 0.1em;
    }

    .hero {
        padding: 168px 0 74px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-copy-column {
        max-width: 340px;
    }

    .hero-title {
        max-width: 340px;
        font-size: clamp(2.35rem, 7vw, 3.3rem);
    }

    .hero-copy {
        max-width: 340px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-panel {
        justify-self: start;
        max-width: min(100%, 520px);
    }

    .stats-grid,
    .category-grid,
    .product-grid,
    .partner-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 320px;
    }

    .page-header {
        padding: 200px 0 46px;
    }

    .page-header h1 {
        font-size: clamp(2.7rem, 10vw, 4rem);
    }

    .info-panel,
    .quote-form-shell,
    .terms-panel,
    .catalog-toolbar,
    .catalog-cta,
    .cta-banner,
    .hero-panel,
    .page-aside {
        padding: 24px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 13px 16px;
    }
}

@media (max-width: 560px) {
    .nav-links a,
    .nav-contact {
        font-size: 0.88rem;
    }

    .hero {
        padding-top: 176px;
    }

    .hero-copy-column {
        gap: 16px;
        max-width: 312px;
    }

    .hero-title {
        max-width: 312px;
        font-size: clamp(1.72rem, 7.2vw, 2.2rem);
        line-height: 0.94;
        text-wrap: balance;
        overflow-wrap: normal;
    }

    .hero-copy {
        max-width: 312px;
        font-size: 0.98rem;
    }

    .btn,
    .filter-btn {
        width: 100%;
        min-height: 48px;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-trust span,
    .footer-badges span {
        width: 100%;
        justify-content: center;
    }

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

    .whatsapp-float span {
        display: none;
    }
}
