:root {
    --brand-purple: #2e0080;
    --brand-purple-soft: #5c2bb4;
    --brand-orange: #f5a24c;
    --brand-green: #7cd992;
    --text-main: #565b66;
    --text-dark: #23262f;
    --bg-soft: #f7f6fb;
    --line-soft: rgba(255,255,255,0.16);

    --font-heading: "Graphik", "Graphik Light", "Graphik Regular", "Arial", sans-serif;
    --font-body: "Freight Text Pro", "FreightTextProBook-Regular", Georgia, serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text-main);
    font-family: var(--font-body);
}

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

a:hover {
    text-decoration: none;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-main {
    min-height: 60vh;
}

.section {
    padding: 56px 0;
}

h1, h2, h3, h4, h5, h6,
.brand,
.main-nav a,
.top-strip-text,
.btn-primary,
.btn-secondary,
.hero-kicker,
.section-kicker {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.12;
}

h1 {
    font-size: clamp(34px, 4.2vw, 58px);
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
}

h3 {
    font-size: clamp(22px, 2.2vw, 30px);
}

p, li, input, textarea, label {
    color: var(--text-main);
}

/* Header */
.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-top-strip {
    background: linear-gradient(90deg, #3a00a9 0%, #5730a8 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
}

.top-strip-rotator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
}

.top-strip-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 0 6px rgba(245, 162, 76, 0.12);
    transition: background .25s ease, box-shadow .25s ease;
}

.top-strip-text {
    color: #fff;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.site-header {
    background: #2e0080;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 26px rgba(32, 10, 78, 0.18);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 1px;
    padding: 8px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: #111;
}

.brand img {
    display: block;
    max-height: 46px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    position: relative;
    color: rgba(255,255,255,0.94);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-decoration: none;
    padding: 0 16px;
    transition: color .22s ease, opacity .22s ease;
}

.main-nav a:hover {
    color: var(--brand-green);
    text-decoration: none;
}

.main-nav a.is-active {
    color: #a2f5d8;
    font-weight: 400;
}

.main-nav a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.24);
    transform: translateY(-50%);
}

.main-nav a::after {
    display: none !important;
    content: none !important;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e8e6f0;
    background: #faf9fd;
    padding: 42px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-grid h4,
.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--text-main);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e1e1e1;
    font-size: 14px;
}

/* Flash */
.flash {
    width: min(1100px, calc(100% - 32px));
    margin: 16px auto;
    padding: 12px 14px;
    border-radius: 8px;
}

.flash-success {
    background: #eaf8ee;
    color: #1f6b35;
}

.flash-error {
    background: #fdecec;
    color: #9c1f1f;
}

.is-active {
    font-weight: bold;
}

/* Forms */
.form-card {
    max-width: 880px;
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
}

.form-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    margin-bottom: 18px;
    background: #fff;
}

.form-card button {
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    cursor: pointer;
}

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

/* Generic blocks */
.page-head {
    margin-bottom: 28px;
}

.empty-box {
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-primary {
    background: #111827;
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: #eef2ff;
    color: #1e3a8a;
}

.btn-secondary:hover {
    text-decoration: none;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Products listing */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card-image-link {
    display: block;
}

.product-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}

.placeholder-box {
    display: grid;
    place-items: center;
    color: #6b7280;
    background: #f3f4f6;
}

.product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card-body h2 {
    margin: 0;
    font-size: 24px;
}

.product-code {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.product-price {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.product-price-large {
    font-size: 28px;
}

.product-short {
    margin: 0;
    color: #374151;
    line-height: 1.7;
}

.product-card-actions,
.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

/* Product detail */
.product-detail-top {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.product-detail-image {
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid #ddd;
    background: #f3f4f6;
}

.breadcrumb-line {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
}

.lead-box {
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fafafa;
    line-height: 1.8;
    margin: 18px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.content-box,
.sidebar-box {
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    margin-bottom: 20px;
}

.content-box h2,
.sidebar-box h3 {
    margin-top: 0;
}

.content-text {
    line-height: 1.85;
    color: #374151;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
}

.detail-row:last-child {
    border-bottom: 0;
}

.cta-box p {
    line-height: 1.7;
    color: #374151;
}

/* Popup */
.footer-popup-btn {
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    cursor: pointer;
}

.floating-inquiry-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    padding: 14px 18px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1000;
}

.popup-overlay.is-open {
    display: flex;
}

.popup-dialog {
    width: min(760px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    font-size: 24px;
    cursor: pointer;
}

.popup-head {
    margin-bottom: 18px;
}

.popup-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.popup-head p {
    margin: 0;
    color: #6b7280;
}

.popup-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    margin-bottom: 18px;
    background: #fff;
}

.popup-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 8, 43, 0.78) 0%,
        rgba(31, 16, 69, 0.60) 42%,
        rgba(31, 16, 69, 0.20) 100%
    );
    z-index: 1;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 700px;
    padding: 42px 0;
    color: #fff;
}

.home-hero-content * {
    max-width: 100%;
}

.hero-kicker {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.home-hero-content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 300;
    max-width: 720px;
}

.home-hero-content h1 span {
    display: block;
    color: #d7c7ff;
}

.hero-lead {
    margin: 0 0 16px;
    max-width: 650px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.hero-text {
    margin: 0;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.76);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Home sections */
.home-highlights {
    background: #fff;
}

.home-intro-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.home-intro-head h2 {
    margin-bottom: 10px;
}

.home-intro-head p {
    margin: 0;
    line-height: 1.9;
}

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

.highlight-card {
    position: relative;
    padding: 26px 24px;
    border: 1px solid #ece8f5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(65, 31, 122, 0.05);
}

.highlight-card h3 {
    margin: 10px 0 10px;
    font-size: 25px;
}

.highlight-card p {
    margin: 0;
    line-height: 1.85;
}

.highlight-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.highlight-dot.orange {
    background: var(--brand-orange);
    box-shadow: 0 0 0 7px rgba(245, 162, 76, 0.12);
}

.highlight-dot.green {
    background: var(--brand-green);
    box-shadow: 0 0 0 7px rgba(124, 217, 146, 0.15);
}

.home-split {
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.home-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: start;
}

.section-kicker {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-purple-soft);
}

.split-copy p {
    line-height: 1.9;
}

.check-list {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.8;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 6px rgba(124, 217, 146, 0.14);
    transform: translateY(-50%);
}

.split-panel {
    display: grid;
    gap: 18px;
}

.stat-box {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ece8f5;
    box-shadow: 0 12px 28px rgba(55, 24, 114, 0.05);
}

.stat-box strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.stat-box span {
    display: block;
    line-height: 1.8;
    color: var(--text-main);
}

.home-categories {
    background: #fff;
}

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

.category-box {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #ece8f5;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.category-box h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.category-box p {
    margin: 0;
    line-height: 1.85;
}

.home-cta-band {
    background: linear-gradient(135deg, #2e0080 0%, #4f1ca9 100%);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.home-cta-band .section-kicker {
    color: #c8b5ff;
}

.home-cta-band h2,
.home-cta-band p {
    color: #fff;
}

.home-cta-band p {
    max-width: 760px;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
}

.cta-band-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.home-cta-band .btn-primary {
    background: #fff;
    color: #2e0080;
}

.home-cta-band .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}
.process-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfafe 100%);
}

.process-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.process-head h2 {
    margin: 0 0 12px;
}

.process-head p {
    margin: 0;
    line-height: 1.85;
}

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

.process-card {
    text-align: center;
    padding: 28px 22px;
    border: 1px solid #ece8f5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(57, 25, 111, 0.05);
}

.process-icon-wrap {
    width: 116px;
    height: 116px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.process-icon-wrap img {
    max-width: 58px;
    max-height: 58px;
    width: auto;
    height: auto;
    display: block;
}

.tone-orange {
    background: rgba(245, 162, 76, 0.18);
}

.tone-pink {
    background: rgba(234, 143, 143, 0.20);
}

.tone-purple {
    background: rgba(198, 146, 217, 0.24);
}

.tone-green {
    background: rgba(180, 224, 115, 0.26);
}

.process-step {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #b7bbc3;
    text-transform: uppercase;
}

.process-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.process-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-main);
}
/* ===============================
   GLOBAL CARD HOVER LIFT EFFECT
   =============================== */

.product-card,
.highlight-card,
.process-card,
.category-box,
.stat-box,
.content-box,
.sidebar-box {
    transition: transform .28s ease, box-shadow .28s ease;
}

.product-card:hover,
.highlight-card:hover,
.process-card:hover,
.category-box:hover,
.stat-box:hover,
.content-box:hover,
.sidebar-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(28, 14, 70, 0.16);
}

.home-featured-products {
    background: linear-gradient(180deg, #fcfbff 0%, #ffffff 100%);
}

.featured-grid {
    margin-top: 6px;
}

.home-featured-products .product-card {
    border: 1px solid #ece8f5;
    box-shadow: 0 12px 30px rgba(57, 25, 111, 0.05);
}

.home-featured-products .product-card-body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
}

.home-featured-products .product-card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.home-featured-products .product-card-body h3 a:hover {
    color: var(--brand-purple);
    text-decoration: none;
}

.section-bottom-cta {
    margin-top: 28px;
    text-align: center;
}
.product-hero-shell {
    background: linear-gradient(180deg, #ffffff 0%, #fbfafe 100%);
}

.product-modern-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
    margin-bottom: 28px;
}

.product-modern-media {
    min-width: 0;
}

.product-modern-image {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 30px;
}

.product-modern-side {
    min-width: 0;
}

.product-sticky-card {
    position: sticky;
    top: 120px;
    padding: 26px 24px;
    border: 1px solid #ece8f5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.06);
}

.product-modern-title {
    margin: 0 0 12px;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.02;
}

.product-modern-subtitle {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-main);
}

.product-modern-price-wrap {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ece8f5;
}

.product-modern-price {
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1;
    font-weight: 300;
    color: #9dca63;
}

.product-modern-stock {
    margin-top: 6px;
    font-size: 18px;
    color: #8bb75a;
}

.product-modern-stock.solo {
    margin-bottom: 18px;
    font-size: 18px;
    color: #8bb75a;
}

.product-variant-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.product-variant-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #d7dbe4;
    background: #fff;
    color: var(--text-main);
    cursor: default;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
}

.product-variant-chip strong {
    font-weight: 400;
    color: var(--text-dark);
}

.product-variant-chip.is-default {
    background: #23262f;
    border-color: #23262f;
    color: #fff;
}

.product-variant-chip.is-default strong {
    color: #fff;
}

.product-request-row {
    margin-bottom: 24px;
}

.product-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    border: 0;
    border-radius: 16px;
    background: #9dca63;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.product-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(157, 202, 99, 0.28);
    background: #8fc054;
}

.product-modern-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-bottom: 22px;
    padding-top: 6px;
    border-top: 1px solid #ece8f5;
}

.product-highlight-item {
    position: relative;
    padding-left: 18px;
    line-height: 1.65;
    color: var(--text-main);
}

.product-highlight-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b1d57a;
    transform: translateY(-50%);
}

.product-modern-meta {
    border-top: 1px solid #ece8f5;
    padding-top: 8px;
}

.product-modern-tabs {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    margin: 8px 0 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ece8f5;
}

.product-modern-tabs a {
    position: relative;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.product-modern-tabs a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 3px;
    background: #9dca63;
    border-radius: 999px;
    opacity: .85;
}

.product-modern-content .content-box {
    border: 1px solid #ece8f5;
    border-radius: 20px;
    background: #fff;
    padding: 28px;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(57, 25, 111, 0.04);
}

.product-extra-block {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ece8f5;
}

.product-extra-block h3 {
    margin: 0 0 10px;
    font-size: 24px;
}
.product-tab-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
}

.product-tab-btn:hover {
    color: var(--brand-purple);
}

.product-tab-btn.is-active {
    color: var(--text-dark);
    font-weight: 400;
}

.product-tab-btn.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 3px;
    background: #9dca63;
    border-radius: 999px;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.is-active {
    display: block;
}
/* product tabs typography fix */

.product-modern-content h2,
.product-modern-content h3 {
    font-weight: 300;
    letter-spacing: 0.01em;
}

.product-modern-content strong,
.product-modern-content b {
    font-weight: 400;
}

.product-modern-content .content-text {
    font-weight: 300;
    line-height: 1.9;
}

.product-extra-block h3 {
    font-weight: 300;
}
.product-modern-content h2 {
    font-size: 32px;
}

.product-modern-content h3 {
    font-size: 22px;
}
.product-modern-media,
.product-modern-side {
    height: 100%;
}

.product-sticky-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.product-modern-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #ece8f5;
}
.product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 28px;
}

.product-left-col,
.product-right-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.product-main-equal {
    min-height: 620px;
}

.product-modern-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff00;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    box-shadow: 0 18px 40px rgba(35, 18, 84, 0.06);
    overflow: hidden;
}

.product-modern-image {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    border-radius: 22px;
    background: #fff;
    padding: 30px;
}

.product-sticky-card {
    padding: 26px 24px;
    border: 1px solid #ece8f5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-side-meta-box {
    padding: 24px;
    border: 1px solid #ece8f5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.04);
}

.product-side-meta-box .detail-row strong,
.product-side-meta-box .detail-row span {
    font-size: 16px;
}

.product-side-meta-box .detail-row span {
    text-align: right;
    max-width: 65%;
}

.product-note-card {
    padding: 28px 24px;
    border: 1px solid #e5dbfa;
    border-radius: 22px;
    background: linear-gradient(180deg, #f5efff 0%, #f8f4ff 100%);
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
}

.product-note-kicker {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-purple-soft);
}

.product-note-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.08;
    color: var(--text-dark);
}

.product-note-card p {
    margin: 0 0 14px;
    line-height: 1.9;
    color: var(--text-main);
}

.product-note-card strong {
    font-weight: 400;
    color: var(--text-dark);
}
.product-wide-banner{
    position:relative;
    margin-top:70px;
    background-image:url('/assets/img/4.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:420px;
    display:flex;
    align-items:center;
    width:100%;
}

.product-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(25,10,60,0.85) 0%,
        rgba(45,20,110,0.65) 40%,
        rgba(45,20,110,0.25) 100%
    );
}

.product-banner-inner{
    position:relative;
    z-index:2;
    max-width:780px;
    color:#fff;
}

.banner-kicker{
    margin:0 0 14px;
    font-family:var(--font-heading);
    font-size:13px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--brand-orange);
}

.product-wide-banner h2{
    margin:0 0 18px;
    font-size:44px;
    line-height:1.05;
    font-weight:300;
    color:#fff;
}

.product-wide-banner h2 span{
    display:block;
    color:#d9caff;
}

.banner-text{
    margin:0 0 26px;
    max-width:640px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
}

.banner-actions .btn-primary{
    background:#fff;
    color:#2e0080;
}

.banner-actions .btn-primary:hover{
    background:#f5f5ff;
}
.product-related {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.related-grid {
    margin-top: 6px;
}

.product-related .product-card {
    border: 1px solid #ece8f5;
    box-shadow: 0 12px 30px rgba(57, 25, 111, 0.05);
}

.product-related .product-card-body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.16;
}

.product-related .product-card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.product-related .product-card-body h3 a:hover {
    color: var(--brand-purple);
    text-decoration: none;
}
.product-page-head {
    position: relative;
    min-height: 280px;
    max-height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.product-page-head-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 10, 54, 0.82) 0%,
        rgba(46, 0, 128, 0.58) 45%,
        rgba(46, 0, 128, 0.22) 100%
    );
}

.product-page-head-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
    padding: 26px 0;
}

.product-page-head-kicker {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.product-page-head h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    color: #fff;
    font-weight: 300;
}

.product-page-head-text {
    margin: 0;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
}
.products-catalog {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.products-intro {
    max-width: 840px;
    margin-bottom: 34px;
}

.products-intro h1 {
    margin: 0 0 12px;
}

.products-intro p {
    margin: 0;
    line-height: 1.9;
}

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

.products-premium-card {
    border: 1px solid #ece8f5;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}

.products-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(32, 10, 78, 0.12);
}

.products-premium-image-link {
    display: block;
    background: linear-gradient(180deg, #faf8ff 0%, #f6f2ff 100%);
    border-bottom: 1px solid #ece8f5;
}

.products-premium-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 24px;
    background: white;
}

.products-premium-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.products-premium-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.products-code {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f4f1fb;
    color: var(--brand-purple);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.products-stock-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.products-stock-badge.is-in {
    background: rgba(124, 217, 146, 0.16);
    color: #3c8d55;
}

.products-stock-badge.is-out {
    background: rgba(245, 162, 76, 0.16);
    color: #b66a1f;
}

.products-premium-body h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.products-premium-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.products-premium-body h3 a:hover {
    color: var(--brand-purple);
    text-decoration: none;
}

.products-subtitle {
    margin: 0;
    line-height: 1.8;
    color: var(--text-main);
    min-height: 92px;
}

.products-price {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 300;
    color: #9dca63;
}

.products-card-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 8px;
}
.catalog-pagination {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #ece8f5;
    background: #fff;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(46, 0, 128, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

.pagination-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(46, 0, 128, 0.08);
    border-color: #d8c8fb;
    color: var(--brand-purple);
    text-decoration: none;
}

.pagination-link.is-current {
    background: #2e0080;
    border-color: #2e0080;
    color: #fff;
    font-weight: 400;
}

.pagination-disabled {
    opacity: .45;
    cursor: default;
    pointer-events: none;
}

.pagination-prev,
.pagination-next {
    min-width: 110px;
}
.home-featured-products {
    background: linear-gradient(180deg, #fcfbff 0%, #ffffff 100%);
}

.featured-products-grid {
    margin-top: 8px;
}

.home-featured-products .products-premium-card {
    min-height: 100%;
}

.home-featured-products .products-premium-body h3 {
    margin: 0;
    font-size: 26px;
    line-height: 1.12;
}

.home-featured-products .products-subtitle {
    min-height: 88px;
}

.section-bottom-cta {
    margin-top: 30px;
    text-align: center;
}
.split-panel-premium {
    display: grid;
    gap: 20px;
}

.stat-box-premium {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    box-shadow: 0 12px 28px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.stat-box-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(32, 10, 78, 0.12);
}

.stat-icon-wrap {
    width: 92px;
    height: 92px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f4eeff 0%, #faf7ff 100%);
    border: 1px solid #e8defa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrap img {
    max-width: 44px;
    max-height: 44px;
    width: auto;
    height: auto;
    display: block;
}

.stat-copy h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 300;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.stat-copy p {
    margin: 0;
    line-height: 1.85;
    color: var(--text-main);
}
.home-categories {
    background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.applications-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.application-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.application-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.application-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4eeff, #faf7ff);
    border: 1px solid #e6defa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.application-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.application-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
}

.application-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-main);
}
.site-footer-premium {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
}

.site-footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(92, 43, 180, 0.92) 0%, rgba(46, 0, 128, 0.96) 55%, rgba(28, 0, 88, 0.98) 100%);
}

.site-footer-inner {
    position: relative;
    z-index: 2;
    padding: 54px 0 22px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.footer-col {
    min-height: 100%;
    color: #fff;
}

.footer-links-col,
.footer-contact-col,
.footer-rating-col {
    padding-left: 26px;
    border-left: 1px solid rgba(255,255,255,0.16);
}

.footer-brand-logo {
    display: block;
    max-width: 170px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand-text {
    max-width: 340px;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
}

.footer-cert-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-cert-icon {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
}

.site-footer-grid h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 300;
    font-family: var(--font-heading);
}

.footer-link-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-link-list li {
    margin: 0;
}

.footer-link-list a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    line-height: 1.8;
    transition: color .25s ease, transform .25s ease;
}

.footer-link-list a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-popup-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(124,217,146,0.18) 0%, rgba(124,217,146,0.26) 100%);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.footer-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(124,217,146,0.18);
    background: linear-gradient(180deg, rgba(124,217,146,0.24) 0%, rgba(124,217,146,0.34) 100%);
    text-decoration: none;
}

.footer-rating-text {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.84);
    line-height: 1.85;
}

.footer-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1;
}

.footer-stars span {
    color: var(--brand-orange);
    text-shadow: 0 4px 12px rgba(245,162,76,0.16);
}

.footer-rating-note {
    margin: 0;
    color: rgba(255,255,255,0.70);
    line-height: 1.8;
    font-size: 14px;
}

.footer-bottom-premium {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}

.floating-inquiry-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #7cd992 0%, #66c57f 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(60, 140, 85, 0.22);
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    .popup-dialog {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .popup-head h3 {
        font-size: 28px;
    }

    .popup-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .popup-actions {
        flex-direction: column;
    }

    .popup-actions .btn-primary,
    .popup-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
/* =======================
   SUCCESS POPUP
   ======================= */

.popup-success{
text-align:center;
padding:42px 36px;
}

.popup-success-icon{
width:70px;
height:70px;
border-radius:50%;
background:linear-gradient(180deg,#7cd992,#5cc27a);
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
margin:0 auto 18px;
box-shadow:0 12px 28px rgba(60,140,85,0.25);
}

.popup-success h3{
margin:0 0 10px;
font-size:32px;
font-weight:300;
color:var(--text-dark);
}

.popup-success p{
margin:0 0 24px;
color:var(--text-main);
line-height:1.8;
max-width:420px;
margin-left:auto;
margin-right:auto;
}
.popup-countdown{
margin-top:10px;
font-size:14px;
color:#7a7f8c;
}

.popup-countdown strong{
color:#2e0080;
font-weight:400;
}

.about-intro {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.about-intro-wrap {
    max-width: 900px;
}

.about-intro-wrap h1 {
    margin: 0 0 14px;
}

.about-intro-wrap p {
    margin: 0 0 14px;
    line-height: 1.9;
}

.about-split {
    background: #fff;
}

.about-split-alt {
    background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.about-split-grid-reverse {
    direction: rtl;
}

.about-split-grid-reverse > * {
    direction: ltr;
}

.about-split-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ece8f5;
    box-shadow: 0 18px 40px rgba(35, 18, 84, 0.06);
    height: 100%;
}

.about-split-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.about-split-copy p {
    line-height: 1.9;
}

.about-stats {
    background: linear-gradient(180deg, #fcfbff 0%, #ffffff 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.about-stat-card {
    padding: 28px 22px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
    text-align: center;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.about-stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f4eeff, #faf7ff);
    border: 1px solid #e6defa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stat-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.about-stat-number {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
    font-weight: 300;
    color: var(--brand-purple);
}

.about-stat-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.08;
}

.about-stat-card p {
    margin: 0;
    line-height: 1.8;
}

.about-cta {
    background: linear-gradient(135deg, #2e0080 0%, #4f1ca9 100%);
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-cta h2,
.about-cta p {
    color: #fff;
}

.about-cta p {
    max-width: 760px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.about-cta .btn-primary {
    background: #fff;
    color: #2e0080;
}

.about-cta .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}
/* =========================
   ABOUT IMAGE HOVER LIFT
   ========================= */

.about-split-media{
border-radius:24px;
overflow:hidden;
border:1px solid #ece8f5;
box-shadow:0 18px 40px rgba(35,18,84,0.06);
height:100%;
transition:transform .35s ease, box-shadow .35s ease;
}

.about-split-media img{
width:100%;
height:100%;
min-height:420px;
object-fit:cover;
display:block;
transition:transform .45s ease;
}

/* hover lift */

.about-split-media:hover{
transform:translateY(-8px);
box-shadow:0 30px 60px rgba(32,10,78,0.16);
}

/* subtle zoom */

.about-split-media:hover img{
transform:scale(1.04);
}
/* =========================
   LEGAL PIANO SECTION
   ========================= */

.legal-piano{
background:linear-gradient(180deg,#faf7ff 0%,#ffffff 100%);
}

.legal-piano-wrap{
margin-top:30px;
border-radius:22px;
overflow:hidden;
border:1px solid #ece8f5;
}

.legal-key{
display:flex;
justify-content:space-between;
align-items:center;
padding:26px 28px;
text-decoration:none;
background:#fff;
border-bottom:1px solid #ece8f5;
transition:all .28s ease;
}

.legal-key:last-child{
border-bottom:none;
}

.legal-key:hover{
background:#f7f2ff;
transform:translateX(6px);
}

.legal-key-inner h3{
margin:0 0 4px;
font-size:24px;
font-weight:300;
color:var(--text-dark);
}

.legal-key-inner p{
margin:0;
font-size:15px;
line-height:1.7;
color:var(--text-main);
}

.legal-arrow{
font-size:24px;
color:var(--brand-purple);
opacity:.8;
transition:transform .25s ease;
}

.legal-key:hover .legal-arrow{
transform:translateX(6px);
}
/* ===============================
   LEGAL PIANO PREMIUM
================================ */

.legal-piano{
background:linear-gradient(180deg,#faf7ff 0%,#ffffff 100%);
}

.legal-piano-wrap{
margin-top:34px;
border-radius:22px;
overflow:hidden;
border:1px solid #ece8f5;
box-shadow:0 16px 40px rgba(40,20,80,0.05);
}

/* KEY */

.legal-key{
display:flex;
justify-content:space-between;
align-items:center;
padding:28px 34px;
text-decoration:none;
background:#fff;
border-bottom:1px solid #ece8f5;
position:relative;
transition:all .35s ease;
}

.legal-key:last-child{
border-bottom:none;
}

/* vertical accent line */

.legal-key::before{
content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:100%;
background:linear-gradient(180deg,#5c2bb4,#2e0080);
opacity:.15;
transition:all .35s ease;
}

/* hover */

.legal-key:hover{
background:linear-gradient(90deg,#f7f2ff 0%,#ffffff 70%);
transform:translateX(8px);
box-shadow:0 12px 30px rgba(32,10,78,0.08);
}

.legal-key:hover::before{
opacity:1;
}

/* TEXT */

.legal-key-inner h3{
margin:0 0 6px;
font-size:26px;
font-weight:300;
color:var(--text-dark);
}

.legal-key-inner p{
margin:0;
font-size:15px;
line-height:1.8;
color:var(--text-main);
}

/* ARROW */

.legal-arrow{
font-size:26px;
color:var(--brand-purple);
transition:all .35s ease;
}

.legal-key:hover .legal-arrow{
transform:translateX(8px);
color:#5c2bb4;
}
.about-cert-banner{
background:linear-gradient(180deg,#faf7ff 0%,#ffffff 100%);
}

.about-cert-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:36px;
align-items:center;
}

.about-cert-copy p{
line-height:1.9;
margin-bottom:14px;
}

.about-cert-media{
border-radius:22px;
overflow:hidden;
border:0px solid #ece8f5;
transition:transform .35s ease;
}

.about-cert-media:hover{
transform:translateY(-6px);
}

.about-cert-media img{
width:60%;
height:60%;
object-fit:cover;
display:block;
}
.packaging-intro {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.packaging-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.packaging-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.packaging-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4eeff, #faf7ff);
    border: 1px solid #e6defa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.packaging-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.packaging-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
}

.packaging-card p {
    margin: 0;
    line-height: 1.8;
}

.packaging-split {
    background: #fff;
}

.packaging-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.packaging-split-copy p {
    line-height: 1.9;
}

.packaging-split-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ece8f5;
    box-shadow: 0 18px 40px rgba(35, 18, 84, 0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

.packaging-split-media:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(32, 10, 78, 0.16);
}

.packaging-split-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.packaging-split-media:hover img {
    transform: scale(1.04);
}

.packaging-banner {
    position: relative;
    min-height: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.packaging-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 10, 54, 0.82) 0%,
        rgba(46, 0, 128, 0.58) 45%,
        rgba(46, 0, 128, 0.22) 100%
    );
}

.packaging-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.packaging-banner h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #fff;
    font-weight: 300;
}

.packaging-banner p {
    margin: 0 0 22px;
    max-width: 620px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
}

.packaging-banner .btn-primary {
    background: #fff;
    color: #2e0080;
}

.packaging-final {
    background: linear-gradient(180deg, #fcfbff 0%, #ffffff 100%);
}

.packaging-final-box {
    max-width: 980px;
    padding: 34px;
    border-radius: 24px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
}

.packaging-final-box h2 {
    margin: 0 0 14px;
}

.packaging-final-box p {
    margin: 0 0 14px;
    line-height: 1.9;
}
/* ========================
   FAQ PIANO
======================== */

.packaging-faq{
background:linear-gradient(180deg,#faf7ff 0%,#ffffff 100%);
}

.faq-piano{
margin-top:30px;
border-radius:22px;
overflow:hidden;
border:1px solid #ece8f5;
}

.faq-item{
border-bottom:1px solid #ece8f5;
}

.faq-item:last-child{
border-bottom:none;
}

.faq-question{
width:100%;
text-align:left;
background:#fff;
border:none;
padding:26px 28px;
font-size:22px;
font-weight:300;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
transition:all .3s ease;
font-family:var(--font-heading);
}

.faq-question:hover{
background:#f7f2ff;
}

.faq-arrow{
font-size:28px;
color:var(--brand-purple);
transition:transform .3s ease;
}

.faq-answer{
max-height:0;
overflow:hidden;
background:#ffffff;
transition:max-height .4s ease;
}

.faq-answer p{
padding:0 28px 26px 28px;
margin:0;
line-height:1.8;
color:var(--text-main);
}

.faq-item.active .faq-answer{
max-height:220px;
}

.faq-item.active .faq-arrow{
transform:rotate(45deg);
}
.quality-intro {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.quality-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.quality-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4eeff, #faf7ff);
    border: 1px solid #e6defa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.quality-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.quality-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
}

.quality-card p {
    margin: 0;
    line-height: 1.8;
}

.quality-split {
    background: #fff;
}

.quality-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.quality-split-copy p {
    line-height: 1.9;
}

.quality-split-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ece8f5;
    box-shadow: 0 18px 40px rgba(35, 18, 84, 0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

.quality-split-media:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(32, 10, 78, 0.16);
}

.quality-split-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.quality-split-media:hover img {
    transform: scale(1.04);
}

.quality-banner {
    position: relative;
    min-height: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.quality-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 10, 54, 0.82) 0%,
        rgba(46, 0, 128, 0.58) 45%,
        rgba(46, 0, 128, 0.22) 100%
    );
}

.quality-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.quality-banner h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #fff;
    font-weight: 300;
}

.quality-banner p {
    margin: 0 0 22px;
    max-width: 620px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
}

.quality-banner .btn-primary {
    background: #fff;
    color: #2e0080;
}

.quality-cert-list {
    background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.quality-cert-wrap {
    margin-top: 30px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ece8f5;
    box-shadow: 0 16px 40px rgba(40,20,80,0.05);
}

.quality-cert-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 26px 30px;
    text-decoration: none;
    background: #fff;
    border-bottom: 1px solid #ece8f5;
    position: relative;
    transition: all .35s ease;
}

.quality-cert-row:last-child {
    border-bottom: none;
}

.quality-cert-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #5c2bb4, #2e0080);
    opacity: .15;
    transition: all .35s ease;
}

.quality-cert-row:hover {
    background: linear-gradient(90deg, #f7f2ff 0%, #ffffff 70%);
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(32,10,78,0.08);
}

.quality-cert-row:hover::before {
    opacity: 1;
}

.quality-cert-text h3 {
    margin: 0 0 6px;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.08;
    color: var(--text-dark);
}

.quality-cert-text p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-main);
}

.quality-cert-arrow {
    font-size: 26px;
    color: var(--brand-purple);
    transition: all .35s ease;
    flex-shrink: 0;
}

.quality-cert-row:hover .quality-cert-arrow {
    transform: translateX(8px);
    color: #5c2bb4;
}
.logistics-intro {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.logistics-card {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.logistics-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.logistics-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f4eeff, #faf7ff);
    border: 1px solid #e6defa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.logistics-icon svg {
    width: 42px;
    height: 42px;
    display: block;
}

.logistics-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
}

.logistics-card p {
    margin: 0;
    line-height: 1.8;
}

.logistics-split {
    background: #fff;
}

.logistics-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.logistics-split-copy p {
    line-height: 1.9;
}

.logistics-split-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ece8f5;
    box-shadow: 0 18px 40px rgba(35, 18, 84, 0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}

.logistics-split-media:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(32, 10, 78, 0.16);
}

.logistics-split-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.logistics-split-media:hover img {
    transform: scale(1.04);
}

.logistics-flow {
    background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.logistics-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.logistics-flow-card {
    padding: 26px 22px;
    border-radius: 22px;
    border: 1px solid #ece8f5;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.logistics-flow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.logistics-flow-number {
    display: inline-flex;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    color: var(--brand-purple);
}

.logistics-flow-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.1;
}

.logistics-flow-card p {
    margin: 0;
    line-height: 1.8;
}

.logistics-banner {
    position: relative;
    min-height: 360px;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.logistics-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 10, 54, 0.82) 0%,
        rgba(46, 0, 128, 0.58) 45%,
        rgba(46, 0, 128, 0.22) 100%
    );
}

.logistics-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.logistics-banner h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #fff;
    font-weight: 300;
}

.logistics-banner p {
    margin: 0 0 22px;
    max-width: 620px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
}

.logistics-banner .btn-primary {
    background: #fff;
    color: #2e0080;
}

.logistics-updates {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}
/* ==================================
   MINI HERO (CONTACT + LEGAL BASE)
================================== */

.inner-mini-hero {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #5c2bb4 0%, #2e0080 58%, #26006d 100%);
}

.inner-mini-hero--pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 38%),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 24px
        );
    pointer-events: none;
}

.inner-mini-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
    padding: 26px 0;
}

.inner-mini-hero__kicker {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.inner-mini-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 300;
}

.inner-mini-hero p {
    margin: 0;
    max-width: 620px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
}

/* ==================================
   CONTACT LAYOUT
================================== */

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    border: 1px solid #ece8f5;
    border-radius: 24px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(32, 10, 78, 0.10);
}

.contact-info-card h2,
.contact-form-card h2 {
    margin: 0 0 12px;
}

.contact-intro-text,
.contact-form-lead {
    margin: 0 0 18px;
    line-height: 1.9;
}

.contact-info-list {
    display: grid;
    gap: 0;
    margin-bottom: 22px;
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ece8f5;
}

.contact-info-row:last-child {
    border-bottom: 0;
}

.contact-info-row strong {
    min-width: 110px;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--text-dark);
}

.contact-info-row span {
    text-align: right;
    line-height: 1.8;
    color: var(--text-main);
}

.contact-info-row a {
    color: var(--brand-purple);
}

.contact-info-note {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #ece8f5;
}

.contact-info-note h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.08;
}

.contact-form-premium label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--text-dark);
}

.contact-form-premium input,
.contact-form-premium textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd6f5;
    border-radius: 16px;
    margin-bottom: 18px;
    background: #fff;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contact-form-premium input:focus,
.contact-form-premium textarea:focus {
    outline: none;
    border-color: #cbb8f3;
    box-shadow: 0 0 0 4px rgba(92, 43, 180, 0.08);
    transform: translateY(-1px);
}

.contact-form-premium textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form-actions {
    margin-top: 4px;
}

/* ==================================
   CONTACT PRODUCTS CTA
================================== */

.contact-products-cta {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2e0080 0%, #4f1ca9 100%);
}

.contact-products-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22,10,54,0.20) 0%, rgba(22,10,54,0.00) 45%),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 24px
        );
}

.contact-products-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
}

.contact-products-cta__inner h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    font-weight: 300;
}

.contact-products-cta__inner p {
    margin: 0 0 22px;
    line-height: 1.85;
    color: rgba(255,255,255,0.84);
}

.contact-products-cta__inner .btn-primary {
    background: #fff;
    color: #2e0080;
}
/* CONTACT WHITE BANNER */

.contact-white-banner{
    background:#ffffff;
}

.contact-white-banner-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.contact-white-banner-text h2{
    margin:0 0 14px;
}

.contact-white-banner-text p{
    line-height:1.8;
    margin-bottom:22px;
}

.banner-actions{
    display:flex;
    gap:14px;
}

.contact-white-banner-image{
    border-radius:20px;
    overflow:hidden;
    border:1px solid #ece8f5;
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
    transition:all .35s ease;
}

.contact-white-banner-image:hover{
    transform:translateY(-6px);
}

.contact-white-banner-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/* TRUSTED BRANDS */

.trusted-brands{
background:#faf7ff;
}

.trusted-logos{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:26px;
margin-top:36px;
align-items:center;
}

.trusted-logo{
background:#fff;
border-radius:16px;
padding:24px;
display:flex;
align-items:center;
justify-content:center;
border:1px solid #ece8f5;
box-shadow:0 10px 24px rgba(0,0,0,0.04);
transition:all .3s ease;
}

.trusted-logo:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.trusted-logo img{
max-width:110px;
opacity:.65;
transition:.3s;
filter:grayscale(100%);
}

.trusted-logo:hover img{
opacity:1;
filter:grayscale(0%);
}
/* ==================================
   LEGAL HERO
================================== */

.inner-mini-hero--legal {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #776d7c 0%, #655b6a 38%, #5b4f60 100%);
}

.inner-mini-hero--legal::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.00) 38%),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 24px
        );
    pointer-events: none;
}

/* ==================================
   LEGAL LAYOUT
================================== */

.legal-layout {
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.legal-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.legal-content {
    display: grid;
    gap: 22px;
}

.legal-content-box {
    padding: 30px;
    border: 1px solid #ece8f5;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.legal-content-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(32, 10, 78, 0.10);
}

.legal-content-box h2 {
    margin: 0 0 14px;
}

.legal-content-box p {
    margin: 0 0 14px;
    line-height: 1.9;
}

.legal-info-table {
    margin-top: 18px;
    border-top: 1px solid #ece8f5;
}

.legal-info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #ece8f5;
}

.legal-info-row:last-child {
    border-bottom: 0;
}

.legal-info-row strong {
    min-width: 140px;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--text-dark);
}

.legal-info-row span {
    text-align: right;
    color: var(--text-main);
    line-height: 1.8;
}

.legal-info-row a {
    color: var(--brand-purple);
}

/* ==================================
   LEGAL SIDEBAR
================================== */

.legal-sidebar-sticky {
    position: sticky;
    top: 120px;
    padding: 24px;
    border: 1px solid #ece8f5;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(46, 0, 128, 0.05);
}

.legal-sidebar-nav {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ece8f5;
}

.legal-side-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-bottom: 1px solid #ece8f5;
    text-decoration: none;
    transition: all .32s ease;
}

.legal-side-link:last-child {
    border-bottom: 0;
}

.legal-side-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #5c2bb4, #2e0080);
    opacity: .14;
    transition: all .32s ease;
}

.legal-side-link:hover {
    background: linear-gradient(90deg, #f7f2ff 0%, #ffffff 70%);
    transform: translateX(6px);
}

.legal-side-link:hover::before,
.legal-side-link.is-active::before {
    opacity: 1;
}

.legal-side-link.is-active {
    background: linear-gradient(90deg, #f7f2ff 0%, #ffffff 70%);
}

.legal-side-link span:first-child {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-dark);
}

.legal-side-arrow {
    font-size: 22px;
    color: var(--brand-purple);
    transition: transform .32s ease, color .32s ease;
    flex-shrink: 0;
}

.legal-side-link:hover .legal-side-arrow {
    transform: translateX(6px);
    color: #5c2bb4;
}
.legal-side-banner {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid #ece8f5;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7f2ff 0%, #ffffff 100%);
    box-shadow: 0 12px 28px rgba(46, 0, 128, 0.05);
}

.legal-side-banner h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.08;
    color: var(--text-dark);
}

.legal-side-banner p {
    margin: 0 0 16px;
    line-height: 1.85;
    color: var(--text-main);
}

.legal-side-banner .btn-primary {
    width: 100%;
    text-align: center;
}
/* ==================================
   COOKIE CONSENT POPUP
================================== */

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: min(520px, calc(100% - 24px));
    display: none;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__dialog {
    padding: 26px 24px 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    border: 1px solid #ece8f5;
    box-shadow: 0 24px 60px rgba(32, 10, 78, 0.18);
}

.cookie-consent__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.cookie-consent__logo {
    width: 160px;
    max-width: 160px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.cookie-consent__title-wrap h3 {
    margin: 0 0 4px;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 300;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.cookie-consent__title-wrap p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
}

.cookie-consent__body p {
    margin: 0 0 12px;
    color: var(--text-main);
    line-height: 1.85;
}

.cookie-consent__body p:last-child {
    margin-bottom: 0;
}

.cookie-consent__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cookie-btn {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.04em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

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

.cookie-btn--accept {
    background: linear-gradient(180deg, #7cd992 0%, #66c57f 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(60, 140, 85, 0.18);
}

.cookie-btn--accept:hover {
    background: linear-gradient(180deg, #85dfa0 0%, #6dc987 100%);
}

.cookie-btn--reject {
    background: #f3eefc;
    color: #2e0080;
    border-color: #e1d6f8;
}

.cookie-btn--reject:hover {
    background: #eee7fb;
}

@media (max-width: 768px) {
    .cookie-consent {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }

    .cookie-consent__dialog {
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    .cookie-consent__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-consent__logo {
        width: 160px;
        max-width: 160px;
    }

    .cookie-consent__title-wrap h3 {
        font-size: 24px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
.industry-news{
    background: linear-gradient(180deg,#faf7ff 0%,#ffffff 100%);
}

.news-piano-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-top:30px;
}

.news-piano-col{
    border:1px solid #ece8f5;
    border-radius:22px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 16px 40px rgba(40,20,80,0.05);
}

.news-item{
    border-bottom:1px solid #ece8f5;
}

.news-item:last-child{
    border-bottom:none;
}

.news-question{
    width:100%;
    text-align:left;
    background:#fff;
    border:none;
    padding:22px 24px;
    font-family:var(--font-heading);
    font-size:18px;
    font-weight:300;
    color:var(--text-dark);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    cursor:pointer;
    transition:all .32s ease;
}

.news-question:hover{
    background:linear-gradient(90deg,#f7f2ff 0%,#ffffff 70%);
}

.news-arrow{
    font-size:24px;
    color:var(--brand-purple);
    transition:all .32s ease;
    flex-shrink:0;
}

.news-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fff;
}

.news-answer p{
    margin:0;
    padding:0 24px 14px;
    line-height:1.8;
    color:var(--text-main);
}

.news-answer p:last-child{
    padding-bottom:22px;
}

.news-meta{
    padding-top:2px !important;
    color:#7a7f8c !important;
    font-size:14px;
}

.news-item.active .news-answer{
    max-height:420px;
}

.news-item.active .news-arrow{
    transform:rotate(45deg);
}
.logistics-news-cards {
    background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.logistics-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.logistics-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ece8f5;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(55, 24, 114, 0.05);
    transition: transform .28s ease, box-shadow .28s ease;
}

.logistics-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(32, 10, 78, 0.12);
}

.logistics-news-image-link {
    display: block;
}

.logistics-news-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}

.logistics-news-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.logistics-news-meta {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #7a7f8c;
}

.logistics-news-body h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 300;
    color: var(--text-dark);
}

.logistics-news-summary {
    margin: 0;
    line-height: 1.8;
    color: var(--text-main);
    flex: 1;
}

.logistics-news-footer {
    margin-top: 18px;
}
/* =========================
   MOBILE HEADER / MENU
========================= */

.mobile-nav-toggle{
    display:none;
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    padding:0;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.mobile-nav-toggle span{
    display:block;
    width:20px;
    height:2px;
    border-radius:999px;
    background:#fff;
}

.mobile-nav-panel{
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(22,10,54,0.52);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transition:all .28s ease;
}

.mobile-nav-panel.is-open{
    opacity:1;
    visibility:visible;
}

.mobile-nav-panel__inner{
    position:absolute;
    top:0;
    right:0;
    width:min(360px, 100%);
    height:100%;
    background:linear-gradient(180deg,#5b5d6a 0%, #4f5160 42%, #434654 100%);
    padding:20px 18px 24px;
    box-shadow:-18px 0 40px rgba(0,0,0,0.16);
    overflow-y:auto;
}

.mobile-nav-panel__inner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.00) 38%),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.05) 0px,
            rgba(255,255,255,0.05) 1px,
            transparent 1px,
            transparent 24px
        );
    pointer-events:none;
}

.mobile-nav-head,
.mobile-nav-links{
    position:relative;
    z-index:2;
}

.mobile-nav-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,0.10);
    margin-bottom:18px;
}

.mobile-nav-head img{
    max-width:150px;
    width:100%;
    height:auto;
    display:block;
}

.mobile-nav-close{
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-size:28px;
    line-height:1;
    cursor:pointer;
}

.mobile-nav-links{
    display:grid;
    gap:10px;
}

.mobile-nav-links a{
    position:relative;
    display:flex;
    align-items:center;
    min-height:54px;
    padding:14px 16px;
    border-radius:18px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    font-family:var(--font-heading);
    font-size:17px;
    font-weight:300;
    transition:all .25s ease;
}

.mobile-nav-links a::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    border-radius:18px 0 0 18px;
    background:linear-gradient(180deg,#f5a24c,#7cd992);
    opacity:0;
    transition:opacity .25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.is-active{
    background:rgba(255,255,255,0.10);
    transform:translateX(4px);
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.is-active::before{
    opacity:1;
}

@media (max-width: 980px){
    .mobile-nav-toggle{
        display:inline-flex;
    }

    .main-nav{
        display:none;
    }

    .topbar{
        min-height:auto;
        padding:12px 0;
    }

    .brand img{
        max-height:42px;
    }
}
/* ==================================
   REQUEST QUOTE PAGE
================================== */

.quote-section{
    background: linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
}

.quote-layout{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:28px;
    align-items:stretch;
}

.quote-info-card,
.quote-form-card{
    border:1px solid #ece8f5;
    border-radius:24px;
    background:#fff;
    padding:30px;
    box-shadow:0 14px 34px rgba(46, 0, 128, 0.05);
    transition:transform .28s ease, box-shadow .28s ease;
}

.quote-info-card:hover,
.quote-form-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(32, 10, 78, 0.10);
}

.quote-intro-text,
.quote-form-lead{
    margin:0 0 18px;
    line-height:1.9;
}

.quote-points{
    display:grid;
    gap:16px;
    margin-bottom:22px;
}

.quote-point{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:18px;
    border:1px solid #ece8f5;
    border-radius:18px;
    background:#faf8ff;
}

.quote-point__dot{
    width:12px;
    height:12px;
    margin-top:7px;
    border-radius:50%;
    background:var(--brand-green);
    box-shadow:0 0 0 7px rgba(124, 217, 146, 0.12);
    flex-shrink:0;
}

.quote-point strong{
    display:block;
    margin:0 0 4px;
    font-family:var(--font-heading);
    font-size:18px;
    font-weight:300;
    color:var(--text-dark);
}

.quote-point p{
    margin:0;
    line-height:1.75;
    color:var(--text-main);
}

.quote-side-note{
    margin-top:10px;
    padding-top:18px;
    border-top:1px solid #ece8f5;
}

.quote-side-note h3{
    margin:0 0 12px;
    font-size:24px;
    font-weight:300;
    line-height:1.08;
}

.quote-form-premium label{
    display:block;
    margin-bottom:8px;
    font-family:var(--font-heading);
    font-weight:300;
    font-size:14px;
    letter-spacing:0.04em;
    color:var(--text-dark);
}

.quote-form-premium input,
.quote-form-premium textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd6f5;
    border-radius:16px;
    margin-bottom:18px;
    background:#fff;
    color:var(--text-dark);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.5;
    transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.quote-form-premium input:focus,
.quote-form-premium textarea:focus{
    outline:none;
    border-color:#cbb8f3;
    box-shadow:0 0 0 4px rgba(92, 43, 180, 0.08);
    transform:translateY(-1px);
}

.quote-form-premium textarea{
    min-height:170px;
    resize:vertical;
}

.quote-form-actions{
    margin-top:4px;
}

/* bottom white cta */

.request-products-cta{
    background:#fff;
    padding:0 0 56px;
}

.request-products-cta__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
    padding:28px 30px;
    border:1px solid #ece8f5;
    border-radius:24px;
    background:linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
    box-shadow:0 14px 34px rgba(46, 0, 128, 0.05);
}

.request-products-cta__copy h2{
    margin:0 0 10px;
}

.request-products-cta__copy p{
    margin:0;
    max-width:720px;
    line-height:1.85;
}

.request-products-cta__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    flex-shrink:0;
}
.about-cert-banner{
    background: linear-gradient(180deg,#ffffff 0%,#fcfbff 100%);
}

.about-cert-grid{
    display:grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap:24px;
    align-items:stretch;
}

.about-cert-media{
    border:1px solid #ece8f5;
    border-radius:22px;
    background:#fff;
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 34px rgba(46,0,128,0.05);
}

.about-cert-media img{
    display:block;
    width:auto;
    max-width:100%;
    max-height:420px;
    object-fit:contain;
}

.about-cert-copy{
    border:1px solid #ece8f5;
    border-radius:22px;
    background:#fff;
    padding:26px 28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 14px 34px rgba(46,0,128,0.05);
}

.about-cert-copy h2{
    margin:0 0 12px;
}

.about-cert-copy p{
    margin:0 0 12px;
    line-height:1.8;
}

.about-cert-copy .btn-primary{
    margin-top:10px;
    align-self:flex-start;
}