/* ==========================================================================
   Landing Page - Printory
   Standalone stylesheet. Does NOT depend on bootstrap.css / app.css.
   ========================================================================== */

/* 1. Reset (subset of Normalize) ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-700);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body.landing-page.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* 2. Design tokens ------------------------------------------------------- */
:root {
    --brand-500: #7367f0;
    --brand-400: rgba(115, 103, 240, 0.7);
    --brand-300: #9e95ff;
    --brand-700: #5a4dd8;
    --brand-gradient: linear-gradient(270deg, rgba(115, 103, 240, 0.7) 0%, #7367f0 100%);
    --brand-gradient-alt: linear-gradient(135deg, #7367f0 0%, #9e95ff 100%);
    --brand-soft: #f3f1ff;

    --ink-900: #0f1115;
    --ink-700: #2b2f3a;
    --ink-500: #6b7280;
    --ink-300: #b6bac4;
    --line:    #e6e8ef;

    --bg-page:    #ffffff;
    --bg-section: #faf9ff;
    --bg-dark:    #0e1014;

    --success: #28c76f;
    --warning: #ff9f43;
    --star:    #ffb800;

    --shadow-sm: 0 1px 2px rgba(15, 17, 21, .06);
    --shadow-md: 0 8px 24px rgba(115, 103, 240, .12);
    --shadow-lg: 0 24px 48px -16px rgba(115, 103, 240, .28);

    --container: 1240px;
    --container-pad: 24px;
    --radius-card: 16px;
    --radius-image: 12px;
    --header-h: 76px;
    --announcement-h: 44px;
}

/* 3. Typography ---------------------------------------------------------- */
.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 800;
}
.landing-page h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; }
.landing-page h2 { font-size: clamp(32px, 4vw, 48px); }
.landing-page h3 { font-size: clamp(24px, 3vw, 36px); }
.landing-page h4 { font-size: 18px; font-weight: 700; }
.landing-page p { color: var(--ink-700); }

.text-gradient {
    background: var(--brand-gradient-alt);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

/* 4. Utilities ----------------------------------------------------------- */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--brand-soft);
    color: var(--brand-500);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}
.eyebrow--dark { background: rgba(255, 255, 255, 0.08); color: var(--brand-300); }

.badge-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #fff;
    color: var(--brand-500);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
}
.badge-dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--brand-500);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn--primary {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-1px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn--secondary {
    background: #fff;
    color: var(--brand-500);
    border: 1.5px solid var(--brand-500);
}
.btn--secondary:hover { background: var(--brand-soft); }
.btn--ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--ghost {
    background: transparent;
    color: var(--brand-500);
    padding: 6px 0;
}
.btn--ghost::after { content: '→'; transition: transform .2s; }
.btn--ghost:hover::after { transform: translateX(4px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* Reveal on scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease-out, transform .7s ease-out;
    transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus ring */
.landing-page :focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* 5. Announcement bar ---------------------------------------------------- */
.announcement {
    position: relative;
    background: var(--brand-gradient);
    color: #fff;
    min-height: var(--announcement-h);
    display: flex;
    align-items: center;
    z-index: 60;
}
.announcement__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 8px 56px 8px var(--container-pad);
    font-size: 13px;
}
.announcement__badge {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.announcement__text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.announcement__cta {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    flex-shrink: 0;
}
.announcement__cta--solid {
    background: #fff;
    color: var(--brand-500);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 12px;
}
.announcement__close {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    opacity: 0.85;
}
.announcement__close:hover { background: rgba(255,255,255,0.18); opacity: 1; }
.announcement.is-hidden { display: none; }

/* 6. Header / Nav -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 1px 8px rgba(15,17,21,.04);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--header-h);
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 36px; width: auto; }
.site-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-inline: auto;
}
.site-header__nav a {
    padding: 8px 14px;
    color: var(--ink-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 999px;
    transition: color .15s, background .15s;
}
.site-header__nav a:hover { color: var(--brand-500); background: var(--brand-soft); }
.site-header__nav a.is-active { color: var(--brand-500); font-weight: 600; }
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--ink-900);
    font-weight: 600;
    font-size: 13px;
}
.lang-switch__flag {
    width: 16px; height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #cf142b 50%, #00247d 50%);
    display: inline-block;
}
.hamburger {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-soft);
}
.hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--ink-900);
    position: relative;
}
.hamburger span::before,
.hamburger span::after {
    content: '';
    position: absolute; left: 0;
    width: 18px; height: 2px;
    background: var(--ink-900);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    background: #fff;
    z-index: 200;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -16px 0 40px -10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__overlay {
    position: fixed; inset: 0;
    background: rgba(15,17,21,.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
    z-index: 199;
}
.mobile-drawer__overlay.is-open { opacity: 1; visibility: visible; }
.mobile-drawer__close {
    align-self: flex-end;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: var(--brand-soft);
    display: grid; place-items: center;
    font-size: 18px;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--ink-900);
}
.mobile-drawer nav a:hover { background: var(--brand-soft); color: var(--brand-500); }
.mobile-drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mobile-drawer__actions .btn { width: 100%; }

/* 7. Hero ---------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
    padding: clamp(64px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 80% 30%, rgba(115,103,240,.55), transparent 60%),
        radial-gradient(40% 35% at 10% 80%, rgba(158,149,255,.35), transparent 60%);
    z-index: -1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/landing_page/images/pattern-dots.svg');
    background-size: 80px 80px;
    opacity: 0.45;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero__eyebrow svg { width: 14px; height: 14px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .hero__highlight {
    background: linear-gradient(135deg, #9e95ff, #c5beff);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero__trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--success); }
.hero__trust-divider {
    width: 4px; height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
}
.hero__visual {
    position: relative;
}
.hero__visual img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* 8. Section base + offer ------------------------------------------------ */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--soft { background: var(--bg-section); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section__head .eyebrow { margin-bottom: 16px; }
.section__head p { color: var(--ink-500); margin-top: 16px; font-size: 17px; }
.section__head--dark h2 { color: #fff; }
.section__head--dark p { color: rgba(255,255,255,0.7); }

.services-title {
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(15, 17, 21, 0.04);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card__icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.service-card__icon img { width: 32px; height: 32px; }
.service-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.service-card h4 {
    color: var(--ink-900);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.service-card p {
    color: var(--ink-500);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}
.service-card__cta {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
    margin-top: auto;
}

/* 9. Why Choose Us ------------------------------------------------------- */
.why {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}
.why__copy .eyebrow { margin-bottom: 18px; }
.why__copy h3 { margin-bottom: 20px; }
.why__copy p { color: var(--ink-500); font-size: 17px; margin-bottom: 32px; }
.why__list { display: flex; flex-direction: column; gap: 14px; }
.why__list li { display: flex; align-items: flex-start; gap: 14px; font-weight: 500; color: var(--ink-700); }
.why__list svg {
    flex-shrink: 0;
    width: 22px; height: 22px;
    color: var(--brand-500);
    margin-top: 2px;
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-tile {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: left;
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s;
}
.stat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-tile__number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 48px);
    background: var(--brand-gradient-alt);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-tile__label { color: var(--ink-500); font-size: 14px; }

/* 10. Testimonials ------------------------------------------------------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.t-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-card__stars { color: var(--star); font-size: 16px; letter-spacing: 2px; }
.t-card__quote { color: var(--ink-700); font-size: 16px; line-height: 1.7; flex: 1; }
.t-card__quote::before { content: '"'; }
.t-card__quote::after { content: '"'; }
.t-card__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-card__avatar {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.t-card__name { font-weight: 700; color: var(--ink-900); font-size: 14px; }
.t-card__role { color: var(--ink-500); font-size: 13px; }

/* 11. Blog --------------------------------------------------------------- */
.blog-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.blog-head .eyebrow { margin-bottom: 14px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.b-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform .25s;
}
.b-card:hover { transform: translateY(-6px); }
.b-card__thumb {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-image);
    overflow: hidden;
    background: var(--brand-soft);
    position: relative;
}
.b-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.b-card:hover .b-card__thumb img { transform: scale(1.05); }
.b-card__cat {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,0.95);
    color: var(--brand-500);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.b-card__body { padding-inline: 4px; }
.b-card h4 {
    color: var(--ink-900);
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    transition: color .2s;
}
.b-card:hover h4 { color: var(--brand-500); }
.b-card__date { color: var(--ink-500); font-size: 13px; }

/* 12. Newsletter --------------------------------------------------------- */
.newsletter {
    background: var(--bg-dark);
    color: #fff;
    padding: clamp(56px, 7vw, 96px) 0;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(40% 60% at 80% 50%, rgba(115,103,240,.4), transparent 70%);
}
.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.newsletter h4 { color: #fff; font-size: clamp(24px, 3vw, 32px); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.7); }
.newsletter__form {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
}
.newsletter__form input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 14px 20px;
    outline: none;
    font-size: 15px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter__form .btn { flex-shrink: 0; }
.newsletter__msg { margin-top: 14px; font-size: 13px; min-height: 18px; }
.newsletter__msg.is-ok { color: #6ce29a; }
.newsletter__msg.is-err { color: #ff8e8e; }

/* 13. Footer ------------------------------------------------------------- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: clamp(56px, 7vw, 96px) 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 41;
}
.site-footer__cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__brand img { height: 40px; margin-bottom: 20px; }
.site-footer__brand address {
    font-style: normal;
    line-height: 1.7;
    font-size: 14px;
}
.site-footer__brand address strong { color: #fff; display: block; margin-bottom: 4px; }
.site-footer h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color .2s;
}
.site-footer__col a:hover { color: var(--brand-300); }
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    gap: 24px;
    flex-wrap: wrap;
}
.site-footer__copyright { font-size: 13px; }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
    width: 36px; height: 36px;
    border-radius: 999px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    transition: background .2s, color .2s;
}
.site-footer__social a:hover { background: var(--brand-500); color: #fff; }
.site-footer__social svg { width: 16px; height: 16px; }

/* 14. Floating widgets --------------------------------------------------- */
.floating-voucher {
    position: fixed;
    left: 16px;
    bottom: 96px;
    z-index: 40;
    width: 280px;
    transition: transform .3s, opacity .3s;
    animation: voucher-in .8s ease-out .6s both;
}
.floating-voucher:hover { transform: translateY(-4px) rotate(-2deg); }
@keyframes voucher-in {
    from { transform: translateX(-120%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}
.floating-voucher img { width: 100%; }

.floating-social {
    position: fixed;
    left: 16px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 40;
}
.floating-social a {
    width: 40px; height: 40px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-500);
    display: grid; place-items: center;
    box-shadow: var(--shadow-md);
    transition: transform .2s, background .2s, color .2s;
}
.floating-social a:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }
.floating-social svg { width: 18px; height: 18px; }

.scroll-top {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--brand-gradient);
    color: #fff;
    display: none;
    place-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 40;
    transition: transform .2s, opacity .3s;
}
.scroll-top.is-visible { display: grid; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* 15. Stub pages --------------------------------------------------------- */
.stub-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.stub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 40% at 70% 30%, rgba(115,103,240,.5), transparent 60%),
        radial-gradient(40% 30% at 20% 80%, rgba(158,149,255,.3), transparent 60%);
    z-index: -1;
}
.stub-hero__eyebrow {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-300);
    margin-bottom: 16px;
}
.stub-hero h1 { color: #fff; font-size: clamp(40px, 6vw, 64px); margin-bottom: 16px; }
.stub-hero p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 640px; }
.stub-hero__breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 24px;
}
.stub-hero__breadcrumb a { color: var(--brand-300); }

/* Catalog stub */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card__visual {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand-soft), #ffffff);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 60px;
    color: var(--brand-500);
}
.cat-card h4 { color: var(--ink-900); margin-bottom: 4px; }
.cat-card p { color: var(--ink-500); font-size: 13px; }
.cat-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--brand-soft);
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Integration stub */
.int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.int-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 36px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.int-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.int-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid; place-items: center;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
}
.int-card h4 { color: var(--ink-900); margin-bottom: 10px; }
.int-card p { color: var(--ink-500); font-size: 15px; margin-bottom: 18px; }
.int-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--warning);
    font-weight: 600;
}
.int-card__status::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--warning);
}

/* About stub */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-grid h3 { margin-bottom: 20px; }
.about-grid p { color: var(--ink-700); margin-bottom: 16px; font-size: 17px; }
.about-grid__visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-grid__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Q&A stub */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand-500); box-shadow: var(--shadow-md); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--ink-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid; place-items: center;
    font-size: 18px;
    font-weight: 600;
    transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] summary::after {
    content: '−';
    background: var(--brand-500);
    color: #fff;
}
.faq-item__body {
    padding: 0 24px 20px;
    color: var(--ink-500);
    line-height: 1.7;
}

/* Contact stub */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
}
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 40px;
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 6px;
}
.field input, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    color: var(--ink-900);
}
.field input:focus, .field textarea:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(115,103,240,.12);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.contact-form__msg { font-size: 14px; margin-top: 12px; min-height: 18px; }
.contact-form__msg.is-ok { color: var(--success); }
.contact-form__msg.is-err { color: #d63838; }

.contact-info { padding: 8px 0; }
.contact-info h4 { color: var(--ink-900); margin-bottom: 8px; font-size: 18px; }
.contact-info p { color: var(--ink-500); margin-bottom: 28px; }
.contact-info__item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-info__label { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-info__value { font-weight: 600; color: var(--ink-900); font-size: 15px; }

/* News stub */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Catalog — product cards */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.catalog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 4px 28px;
    color: var(--ink-500);
    font-size: 14px;
}
.catalog-meta__brand { color: var(--ink-700); }
.catalog-meta__brand strong { color: var(--ink-900); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.p-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.p-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #fbfaff 0%, #f3f1ff 100%);
    overflow: hidden;
}
.p-card__media img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .5s ease;
    padding: 18px;
}
.p-card:hover .p-card__media img { transform: scale(1.04); }
.p-card__sku {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--ink-700);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.p-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.p-card__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-500);
}
.p-card__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink-900);
}
.p-card__name a {
    color: inherit;
    transition: color .15s;
}
.p-card__name a:hover { color: var(--brand-500); }

.p-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 7px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-700);
    background: #fff;
}

.p-card__colors {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}
.swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}
.swatch {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--swatch, #ccc);
    border: 1px solid rgba(15, 17, 21, 0.12);
    box-shadow: inset 0 0 0 2px #fff;
    transition: transform .15s;
    cursor: default;
}
.swatch:hover { transform: scale(1.2); z-index: 1; }
.swatch--more {
    background: var(--brand-soft);
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border-color: var(--brand-soft);
    padding: 0 4px;
    min-width: 24px;
    width: auto;
}
.p-card__color-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-500);
    white-space: nowrap;
}

.catalog-cta {
    margin-top: 64px;
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #fff 0%, var(--brand-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
}
.catalog-cta h3 { margin-bottom: 8px; }
.catalog-cta p { color: var(--ink-500); margin-bottom: 20px; }

/* Product Detail Page (PDP) */
.pdp-hero {
    background: var(--bg-section);
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}
.pdp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-500);
}
.pdp-breadcrumb a {
    color: var(--ink-500);
    transition: color .15s;
}
.pdp-breadcrumb a:hover { color: var(--brand-500); }
.pdp-breadcrumb span { color: var(--ink-300); }
.pdp-breadcrumb__current { color: var(--ink-900); font-weight: 600; }

.pdp { padding: clamp(40px, 5vw, 64px) 0; }
.pdp__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

/* Gallery */
.pdp__gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pdp__main-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #fbfaff 0%, #f3f1ff 100%);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--line);
}
.pdp__main-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 36px;
    transition: opacity .25s;
}
.pdp__sku-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--ink-700);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}
.pdp__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.pdp__thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(180deg, #fbfaff 0%, #f3f1ff 100%);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: border-color .15s, transform .15s;
}
.pdp__thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 8px;
}
.pdp__thumb:hover { transform: translateY(-2px); }
.pdp__thumb.is-active { border-color: var(--brand-500); }
.pdp__thumb--empty {
    cursor: default;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-300);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #fff;
    border: 1px dashed var(--line);
}
.pdp__thumb--empty:hover { transform: none; }

/* Info */
.pdp__info { padding-top: 4px; }
.pdp__brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}
.pdp__brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-500);
}
.pdp__sku-text {
    font-size: 12px;
    color: var(--ink-500);
}
.pdp__title {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    margin-bottom: 14px;
}
.pdp__short {
    font-size: 16px;
    color: var(--ink-500);
    margin-bottom: 24px;
    line-height: 1.6;
}
.pdp__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.pdp__stars { color: var(--star); font-size: 16px; letter-spacing: 2px; }
.pdp__rating-meta { font-size: 13px; color: var(--ink-500); }

.pdp__option { margin-bottom: 24px; }
.pdp__option-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.pdp__option-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-900);
}
.pdp__option-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-700);
}
.pdp__option-link {
    font-size: 12px;
    color: var(--brand-500);
    font-weight: 600;
    text-decoration: underline;
}
.pdp__option-count {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--ink-500);
}

.pdp-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-swatch {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--swatch);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--line);
    cursor: pointer;
    padding: 0;
    transition: transform .15s, box-shadow .15s;
}
.pdp-swatch:hover { transform: scale(1.1); }
.pdp-swatch.is-selected {
    box-shadow: 0 0 0 2px var(--brand-500);
    transform: scale(1.1);
}

.pdp-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-size {
    min-width: 48px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink-700);
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}
.pdp-size:hover { border-color: var(--brand-500); color: var(--brand-500); }
.pdp-size.is-selected {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
}

.pdp__cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pdp__perks {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pdp__perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-700);
}
.pdp__perks svg {
    width: 20px; height: 20px;
    color: var(--brand-500);
    flex-shrink: 0;
}

/* Details (description + specs) */
.pdp__details {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
}
.pdp__h {
    font-size: 22px;
    margin-bottom: 16px;
}
.pdp__details-col p {
    color: var(--ink-500);
    margin-bottom: 14px;
    line-height: 1.7;
}
.pdp__specs {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pdp__spec-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.pdp__spec-row:last-child { border-bottom: 0; }
.pdp__spec-row dt {
    color: var(--ink-500);
    font-weight: 600;
}
.pdp__spec-row dd {
    margin: 0;
    color: var(--ink-900);
}

.section__head--left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }

/* PDP — extras */
.pdp__zoom {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    display: grid;
    place-items: center;
    color: var(--ink-900);
    box-shadow: var(--shadow-md);
    transition: transform .15s, background .15s, color .15s;
    backdrop-filter: blur(6px);
}
.pdp__zoom:hover { background: var(--brand-500); color: #fff; transform: translateY(-2px); }
.pdp__zoom svg { width: 18px; height: 18px; }

.pdp__meta-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pdp__meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--brand-500);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.pdp__meta-pill--soft {
    background: var(--brand-soft);
    color: var(--brand-500);
}

.pdp__spec-card {
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.pdp__spec-card > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.pdp__spec-card > div:last-child { border-bottom: 0; }
.pdp__spec-card dt {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-500);
}
.pdp__spec-card dd {
    margin: 0;
    color: var(--ink-900);
    font-weight: 500;
    font-size: 14px;
}

/* Add-ons */
.pdp__addons {
    margin-bottom: 24px;
    padding: 18px;
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: 12px;
}
.pdp__addons .pdp__option-label { display: block; margin-bottom: 12px; }
.pdp-addon { margin-bottom: 14px; }
.pdp-addon:last-child { margin-bottom: 0; }
.pdp-addon__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 8px;
}
.pdp-addon__opts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-addon__opt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink-700);
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}
.pdp-addon__opt em {
    font-style: normal;
    color: var(--brand-500);
    font-weight: 700;
    font-size: 12px;
}
.pdp-addon__opt:hover { border-color: var(--brand-500); color: var(--brand-500); }
.pdp-addon__opt.is-selected {
    background: var(--brand-soft);
    border-color: var(--brand-500);
    color: var(--brand-500);
}

/* Price tiers */
.pdp-tiers {
    margin-bottom: 20px;
    border: 1px solid var(--brand-soft);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 220%);
}
.pdp-tiers__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px 14px;
    gap: 12px;
}
.pdp-tiers__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-500);
    margin-bottom: 6px;
}
.pdp-tiers__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.pdp-tiers__from { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.pdp-tiers__value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ink-900);
    line-height: 1;
}
.pdp-tiers__unit { font-size: 13px; color: var(--ink-500); }
.pdp-tiers__hint {
    background: var(--brand-500);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pdp-tiers__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--brand-soft);
}
.pdp-tier {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 8px;
    background: rgba(255,255,255,0.6);
    border-right: 1px solid var(--brand-soft);
    cursor: pointer;
    transition: background .15s, color .15s;
}
.pdp-tier:last-child { border-right: 0; }
.pdp-tier__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-900);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.pdp-tier__sub {
    font-size: 10px;
    color: var(--ink-500);
    margin-bottom: 6px;
}
.pdp-tier__price {
    font-weight: 700;
    color: var(--ink-700);
    font-size: 13px;
}
.pdp-tier:hover { background: #fff; }
.pdp-tier.is-selected {
    background: var(--brand-500);
}
.pdp-tier.is-selected .pdp-tier__name,
.pdp-tier.is-selected .pdp-tier__price { color: #fff; }
.pdp-tier.is-selected .pdp-tier__sub { color: rgba(255,255,255,0.85); }

/* Availability */
.pdp-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(40, 199, 111, 0.08);
    border: 1px solid rgba(40, 199, 111, 0.2);
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink-700);
    margin-bottom: 20px;
}
.pdp-availability strong { color: var(--success); font-weight: 700; }
.pdp-availability__dot {
    width: 10px; height: 10px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(40, 199, 111, 0.18);
    animation: pulse 2s ease-out infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(40, 199, 111, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(40, 199, 111, 0.08); }
}

/* Size guide modal */
.pdp-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
}
.pdp-modal[hidden] { display: none; }
.pdp-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(14, 16, 20, 0.55);
    backdrop-filter: blur(6px);
    animation: fadein .2s ease-out;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.pdp-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 18px;
    max-width: 720px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    animation: pop .25s cubic-bezier(.2,.7,.2,1);
}
@keyframes pop {
    from { transform: scale(0.94); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.pdp-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}
.pdp-modal__head h3 { font-size: 20px; margin-bottom: 4px; }
.pdp-modal__head p { font-size: 13px; color: var(--ink-500); }
.pdp-modal__close {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.pdp-modal__close:hover { background: var(--brand-500); color: #fff; }
.pdp-modal__body {
    padding: 24px 28px 28px;
    overflow-y: auto;
}

/* Size chart table */
.pdp-size-chart { margin-bottom: 24px; }
.pdp-size-chart table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.pdp-size-chart th, .pdp-size-chart td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.pdp-size-chart th {
    background: var(--bg-section);
    font-weight: 700;
    color: var(--ink-900);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pdp-size-chart tr:hover td { background: var(--brand-soft); }
.pdp-size-chart td:first-child {
    font-weight: 700;
    color: var(--brand-500);
}

.pdp-size-tips h4 { font-size: 14px; color: var(--ink-900); margin-bottom: 10px; }
.pdp-size-tips ul { padding: 0; }
.pdp-size-tips li {
    padding: 6px 0 6px 18px;
    position: relative;
    color: var(--ink-700);
    font-size: 14px;
}
.pdp-size-tips li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--brand-500);
}
.pdp-size-tips__note {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--bg-section);
    border-left: 3px solid var(--brand-500);
    border-radius: 6px;
    font-size: 13px;
    color: var(--ink-700);
}

/* Inline size guide (under specs) */
.pdp__inline-guide {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}
.pdp__inline-guide summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    background: var(--bg-section);
    font-weight: 600;
    color: var(--ink-900);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pdp__inline-guide summary::-webkit-details-marker { display: none; }
.pdp__inline-guide summary::after {
    content: '+';
    width: 22px; height: 22px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid; place-items: center;
    font-size: 16px; font-weight: 600;
}
.pdp__inline-guide[open] summary::after { content: '−'; background: var(--brand-500); color: #fff; }
.pdp__inline-guide .pdp-size-chart { margin: 16px 18px 18px; }

/* Legal pages (Privacy / Terms) */
.legal-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: 48px 0 clamp(40px, 5vw, 64px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40% 50% at 80% 20%, rgba(115,103,240,.32), transparent 60%),
        radial-gradient(30% 30% at 15% 90%, rgba(158,149,255,.18), transparent 60%);
    z-index: -1;
}
.legal-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    margin: 14px 0 12px;
}
.legal-hero__meta {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-top: 8px;
}

.legal-section { padding-top: 56px; }
.legal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: flex-start;
}

.legal-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    padding: 20px 18px;
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: 14px;
}
.legal-toc__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: 12px;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal-toc li a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink-700);
    transition: background .15s, color .15s;
    line-height: 1.4;
}
.legal-toc li a:hover {
    background: #fff;
    color: var(--brand-500);
}

.legal-article {
    max-width: 760px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--ink-700);
}
.legal-article section {
    padding: 24px 0 8px;
    border-bottom: 1px solid var(--line);
}
.legal-article section:last-child { border-bottom: 0; }
.legal-article section:first-child { padding-top: 0; }
.legal-article h2 {
    font-size: 22px;
    color: var(--ink-900);
    margin: 0 0 14px;
    scroll-margin-top: calc(var(--header-h) + 16px);
}
.legal-article h3 {
    font-size: 17px;
    color: var(--ink-900);
    margin: 22px 0 10px;
    font-weight: 700;
}
.legal-article p { margin-bottom: 14px; color: var(--ink-700); }
.legal-article p:last-child { margin-bottom: 8px; }
.legal-article ul {
    margin: 12px 0 18px;
    padding-left: 0;
}
.legal-article li {
    position: relative;
    padding: 4px 0 4px 26px;
    color: var(--ink-700);
}
.legal-article li::before {
    content: '';
    position: absolute;
    left: 4px; top: 14px;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
}
.legal-article a {
    color: var(--brand-500);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.legal-article a:hover { color: var(--brand-700); }
.legal-article strong { color: var(--ink-900); }

/* News detail page */
.np-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: 48px 0 clamp(48px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.np-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40% 50% at 80% 20%, rgba(115,103,240,.35), transparent 60%),
        radial-gradient(30% 30% at 15% 90%, rgba(158,149,255,.2), transparent 60%);
    z-index: -1;
}
.np-hero__inner { max-width: 880px; margin-inline: auto; padding-top: 24px; }
.np-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin: 18px 0 20px;
}
.np-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 22px;
}
.np-hero__cat {
    background: var(--brand-gradient-alt);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.np-hero__dot { color: rgba(255,255,255,0.3); }
.np-hero__lede {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
}

.np-body-section { padding-top: 0; margin-top: -32px; }
.np-body-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: flex-start;
}

.np-article__hero {
    margin: 0 0 32px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--brand-soft);
    box-shadow: var(--shadow-lg);
}
.np-article__hero img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.np-article__body {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-700);
}
.np-article__body > * + * { margin-top: 18px; }
.np-article__body h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--ink-900);
    margin-top: 40px !important;
    margin-bottom: 16px;
}
.np-article__body h3 {
    font-size: 22px;
    color: var(--ink-900);
    margin-top: 36px !important;
    margin-bottom: 12px;
    font-weight: 700;
}
.np-article__body p { color: var(--ink-700); }
.np-article__body ul {
    margin: 16px 0;
    padding-left: 0;
}
.np-article__body li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--ink-700);
}
.np-article__body li::before {
    content: '';
    position: absolute;
    left: 4px; top: 18px;
    width: 14px; height: 14px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
}
.np-article__body li::after {
    content: '';
    position: absolute;
    left: 8px; top: 21px;
    width: 6px; height: 6px;
    border-radius: 999px;
    background: #fff;
}
.np-article__body blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--brand-soft);
    border-left: 4px solid var(--brand-500);
    border-radius: 0 12px 12px 0;
    font-size: 19px;
    font-style: italic;
    color: var(--ink-900);
    line-height: 1.55;
}

.np-share {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.np-share > span:first-child {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-500);
}
.np-share__btns { display: flex; gap: 8px; }
.np-share__btns a,
.np-share__copy {
    width: 38px; height: 38px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    transition: background .15s, color .15s, transform .15s;
}
.np-share__btns a:hover,
.np-share__copy:hover {
    background: var(--brand-500);
    color: #fff;
    transform: translateY(-2px);
}
.np-share__btns img { filter: none; }
.np-share__copy svg { width: 16px; height: 16px; }
.np-share__msg {
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
}

/* Sidebar */
.np-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.np-sidebar__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-500);
    margin-bottom: 12px;
}
.np-related-product__card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.np-related-product__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.np-related-product__media {
    aspect-ratio: 4 / 5;
    background: linear-gradient(180deg, #fbfaff 0%, #f3f1ff 100%);
    padding: 24px;
    overflow: hidden;
}
.np-related-product__media img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.np-related-product__body { padding: 18px 20px 22px; }
.np-related-product__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-500);
    margin-bottom: 4px;
}
.np-related-product__body h4 {
    font-size: 17px;
    color: var(--ink-900);
    margin-bottom: 8px;
    line-height: 1.3;
}
.np-related-product__body p {
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.np-related-product__cta { width: 100%; }

.np-sidebar__newsletter {
    background: var(--bg-dark);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
}
.np-sidebar__newsletter h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.np-sidebar__newsletter p {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.55;
}
.np-sidebar__newsletter .btn {
    width: 100%;
    background: #fff;
    color: var(--brand-500);
    border-color: #fff;
}
.np-sidebar__newsletter .btn:hover { background: var(--brand-soft); }

/* Integration page (rich) */
.ig-hero {
    background: var(--bg-dark);
    color: #fff;
    padding: 48px 0 clamp(64px, 8vw, 100px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.ig-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(45% 50% at 80% 30%, rgba(115,103,240,.45), transparent 60%),
        radial-gradient(35% 30% at 15% 80%, rgba(158,149,255,.25), transparent 60%);
    z-index: -1;
}
.ig-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 32px;
}
.ig-hero__copy { max-width: 620px; }
.pdp-breadcrumb--light a,
.pdp-breadcrumb--light span:not(.pdp-breadcrumb__current) {
    color: rgba(255,255,255,0.55);
}
.pdp-breadcrumb--light a:hover { color: var(--brand-300); }
.pdp-breadcrumb--light .pdp-breadcrumb__current { color: #fff; }
.ig-hero h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 56px);
    margin: 18px 0 18px;
}
.ig-hero__visual img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Stats */
.ig-stats-section { padding-bottom: 80px; }
.ig-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.ig-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.ig-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ig-stat__num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    background: var(--brand-gradient-alt);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.ig-stat__label {
    font-size: 12px;
    color: var(--ink-500);
    line-height: 1.4;
}

/* Showcase: 2 big cards */
.ig-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ig-showcase__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ig-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ig-showcase__top h3 { margin: 12px 0 12px; }
.ig-showcase__top p { color: var(--ink-500); font-size: 15px; line-height: 1.6; }
.ig-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ig-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 10px;
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color .15s, transform .15s;
}
.ig-logo:hover { border-color: var(--brand-500); transform: translateY(-2px); }
.ig-logo__mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
}
.ig-logo__name { font-weight: 700; color: var(--ink-900); font-size: 13px; }
.ig-logo__sub { font-size: 11px; color: var(--ink-500); }
.ig-showcase__cta { align-self: flex-start; }

/* 3-step */
.ig-steps-section { background: #fff; }
.ig-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.ig-step {
    background: var(--bg-section);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative;
}
.ig-step__visual {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
}
.ig-step__visual svg {
    width: 100%;
    height: auto;
    display: block;
}
.ig-step__num {
    position: absolute;
    top: -16px;
    left: 28px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    box-shadow: var(--shadow-md);
}
.ig-step h4 {
    font-size: 18px;
    color: var(--ink-900);
    margin-bottom: 8px;
}
.ig-step p {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.6;
}

/* Advantages 2x2 on dark band */
.ig-advantages-section { padding: clamp(64px, 8vw, 120px) 0; }
.ig-advantages-section .section__head { margin-bottom: 48px; }
.ig-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ig-advantage {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    transition: border-color .2s, background .2s, transform .2s;
}
.ig-advantage:hover {
    border-color: var(--brand-300);
    background: rgba(115,103,240,0.08);
    transform: translateY(-3px);
}
.ig-advantage__icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.ig-advantage__icon svg { width: 26px; height: 26px; }
.ig-advantage h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.ig-advantage p {
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    line-height: 1.65;
}

/* Trust */
.ig-trust-section { padding: clamp(72px, 9vw, 120px) 0; }
.ig-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}
.ig-trust__copy .eyebrow { margin-bottom: 16px; }
.ig-trust__copy h2 { margin-bottom: 18px; }
.ig-trust__copy p { color: var(--ink-500); font-size: 17px; margin-bottom: 32px; line-height: 1.65; }
.ig-trust__points { display: flex; flex-direction: column; gap: 18px; }
.ig-trust__points li {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color .15s, transform .15s;
}
.ig-trust__points li:hover { border-color: var(--brand-500); transform: translateX(4px); }
.ig-trust__check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid;
    place-items: center;
}
.ig-trust__check svg { width: 18px; height: 18px; }
.ig-trust__points h4 { font-size: 16px; color: var(--ink-900); margin-bottom: 4px; }
.ig-trust__points p { color: var(--ink-500); font-size: 14px; margin: 0; line-height: 1.55; }

/* Signup page */
.signup-perks-band { padding: 56px 0 24px; }
.signup-perks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.signup-perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.signup-perk:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.signup-perk__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand-500);
    display: grid;
    place-items: center;
    font-size: 18px;
}
.signup-perk__icon svg { width: 22px; height: 22px; }
.signup-perk h4 { font-size: 14px; color: var(--ink-900); margin-bottom: 4px; }
.signup-perk p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

.signup-section { padding-top: 32px; }
.signup-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Form */
.signup-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px;
}
.signup-form__step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0 18px;
}
.signup-form__step:first-child { margin-top: 0; }
.signup-form__step-num {
    width: 34px; height: 34px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}
.signup-form__step h3 {
    font-size: 18px;
    margin-bottom: 2px;
}
.signup-form__step p { font-size: 13px; color: var(--ink-500); }
.signup-form .field { margin-bottom: 16px; }
.signup-form .field label .req { color: var(--brand-500); }
.signup-form .field label .muted { color: var(--ink-500); font-weight: 400; font-size: 12px; }
.signup-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.signup-grid-2 .field { margin-bottom: 0; }

/* Radio (business type) */
.signup-radio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: 0;
    padding: 0;
    margin-bottom: 18px;
}
.signup-radio {
    display: block;
    position: relative;
    cursor: pointer;
}
.signup-radio input {
    position: absolute;
    opacity: 0;
}
.signup-radio span {
    display: block;
    padding: 16px 18px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    transition: border-color .15s, background .15s;
}
.signup-radio strong { display: block; font-size: 14px; color: var(--ink-900); margin-bottom: 4px; }
.signup-radio em { font-style: normal; font-size: 12px; color: var(--ink-500); }
.signup-radio input:checked + span {
    border-color: var(--brand-500);
    background: var(--brand-soft);
}

/* Chips multi-select */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    position: relative;
    cursor: pointer;
}
.chip input {
    position: absolute;
    opacity: 0;
}
.chip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
    background: #fff;
    transition: border-color .15s, background .15s, color .15s;
}
.chip span::before {
    content: '';
    width: 14px; height: 14px;
    border: 1.5px solid var(--ink-300);
    border-radius: 4px;
    transition: background .15s, border-color .15s;
    background: #fff no-repeat center / 10px;
}
.chip input:checked + span {
    border-color: var(--brand-500);
    background: var(--brand-soft);
    color: var(--brand-500);
}
.chip input:checked + span::before {
    background: var(--brand-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 10px;
    border-color: var(--brand-500);
}
.chip--alt input:checked + span {
    background: var(--brand-500);
    color: #fff;
}
.chip--alt input:checked + span::before {
    background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237367f0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / 10px;
    border-color: #fff;
}

/* Volume radios */
.signup-volume {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    border: 0;
    padding: 0;
}
.signup-volume__opt {
    position: relative;
    cursor: pointer;
}
.signup-volume__opt input {
    position: absolute;
    opacity: 0;
}
.signup-volume__opt span {
    display: block;
    padding: 14px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: border-color .15s, background .15s;
    height: 100%;
}
.signup-volume__opt strong { display: block; font-size: 13px; color: var(--ink-900); margin-bottom: 4px; }
.signup-volume__opt em { font-style: normal; font-size: 11px; color: var(--ink-500); line-height: 1.4; display: block; }
.signup-volume__opt input:checked + span {
    border-color: var(--brand-500);
    background: var(--brand-soft);
}
.signup-volume__opt input:checked + span strong { color: var(--brand-500); }

/* Preview pane */
.signup-preview { position: sticky; top: calc(var(--header-h) + 24px); }
.signup-preview__card {
    background: var(--ink-900);
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.signup-preview__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1c1f2a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.signup-preview__dots {
    display: inline-flex;
    gap: 6px;
}
.signup-preview__dots span {
    width: 11px; height: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
}
.signup-preview__dots span:nth-child(1) { background: #ff5f57; }
.signup-preview__dots span:nth-child(2) { background: #febc2e; }
.signup-preview__dots span:nth-child(3) { background: #28c840; }
.signup-preview__title {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
}

.signup-preview__row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
}
.signup-preview__lbl {
    width: 60px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.signup-preview__val {
    color: #fff;
    word-break: break-word;
    flex: 1;
}
.signup-preview__body {
    padding: 20px 18px;
    font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 460px;
    overflow-y: auto;
}
.signup-preview__body::-webkit-scrollbar { width: 6px; }
.signup-preview__body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 999px; }
.signup-preview__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 18px;
    background: #14171f;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.signup-preview__copied {
    padding: 0 18px 14px;
    background: #14171f;
    font-size: 12px;
    min-height: 18px;
}
.signup-preview__copied.is-ok { color: #6ce29a; }
.signup-preview__copied.is-err { color: #ff8e8e; }

.signup-preview__tip {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--brand-soft);
    border-radius: 12px;
    font-size: 13px;
    color: var(--ink-700);
    line-height: 1.5;
}
.signup-preview__tip strong { display: block; color: var(--ink-900); margin-bottom: 4px; }
.signup-preview__tip a { color: var(--brand-500); font-weight: 600; }

/* Steps */
.signup-steps-section { background: #fff; }
.signup-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0;
}
.signup-steps li {
    background: var(--bg-section);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    border: 1px solid var(--line);
}
.signup-steps__num {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--brand-gradient-alt);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 14px;
}
.signup-steps h4 { font-size: 16px; color: var(--ink-900); margin-bottom: 8px; }
.signup-steps p { font-size: 13px; color: var(--ink-500); line-height: 1.55; }

/* Highlight stats inside description */
.pdp__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: var(--brand-soft);
    border-radius: 12px;
}
.pdp__highlights-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    background: var(--brand-gradient-alt);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.pdp__highlights-label { font-size: 12px; color: var(--ink-500); }

/* 16. Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --header-h: 68px; }
    .legal-grid { grid-template-columns: 1fr; gap: 24px; }
    .legal-toc { position: static; }
    .np-body-grid { grid-template-columns: 1fr; gap: 32px; }
    .np-sidebar { position: static; flex-direction: row; }
    .np-sidebar > * { flex: 1; }
    .ig-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .ig-hero__visual { max-width: 540px; margin-inline: auto; }
    .ig-stats { grid-template-columns: repeat(3, 1fr); }
    .ig-stats > .ig-stat:nth-child(4),
    .ig-stats > .ig-stat:nth-child(5) { grid-column: span 1; }
    .ig-showcase { grid-template-columns: 1fr; }
    .ig-steps { grid-template-columns: 1fr; gap: 36px; }
    .ig-advantages { grid-template-columns: 1fr; }
    .ig-trust { grid-template-columns: 1fr; gap: 40px; }
    .signup-perks { grid-template-columns: repeat(2, 1fr); }
    .signup-grid { grid-template-columns: 1fr; gap: 32px; }
    .signup-preview { position: static; }
    .signup-volume { grid-template-columns: repeat(3, 1fr); }
    .signup-steps { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { max-width: 540px; margin-inline: auto; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .why { grid-template-columns: 1fr; gap: 48px; }
    .testimonials { grid-template-columns: 1fr; gap: 16px; }
    .blog-grid, .news-grid, .cat-grid, .int-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
    .site-header__nav { display: none; }
    .hamburger { display: inline-flex; }
    .site-header__actions .btn { display: none; }
    .site-header__actions .lang-switch { display: none; }
    .floating-voucher { width: 220px; bottom: 80px; }
    .newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
    .pdp__grid { grid-template-columns: 1fr; gap: 40px; }
    .pdp__gallery { position: static; }
    .pdp__details { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; padding-top: 36px; }
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .services { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid, .news-grid, .cat-grid, .int-grid, .product-grid { grid-template-columns: 1fr; }
    .site-footer__cols { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .announcement__cta { display: none; }
    .announcement__inner { padding-right: 44px; }
    .floating-voucher { width: 180px; left: 12px; bottom: 70px; }
    .floating-social { left: auto; right: 76px; bottom: 22px; }
    .newsletter__form { flex-direction: column; border-radius: 16px; padding: 12px; }
    .newsletter__form input { text-align: center; }
    .newsletter__form .btn { width: 100%; }
    .blog-head { flex-direction: column; align-items: stretch; }
    .blog-head .blog-head__right { align-self: flex-start; }
    .contact-form { padding: 28px; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn { width: 100%; }
    .pdp__main-image img { padding: 20px; }
    .pdp__thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .pdp__spec-row { grid-template-columns: 110px 1fr; gap: 12px; }
    .pdp__cta-row .btn { width: 100%; }
    .pdp__spec-card > div { grid-template-columns: 110px 1fr; gap: 10px; padding: 12px 14px; }
    .pdp-tiers__list { grid-template-columns: repeat(2, 1fr); }
    .pdp-tier { border-right: 1px solid var(--brand-soft); border-bottom: 1px solid var(--brand-soft); }
    .pdp-tier:nth-child(2n) { border-right: 0; }
    .pdp-tier:nth-last-child(-n+2) { border-bottom: 0; }
    .pdp__highlights { grid-template-columns: 1fr; }
    .pdp-modal { padding: 12px; }
    .pdp-modal__head, .pdp-modal__body { padding: 18px 20px; }
    .pdp-size-chart { font-size: 13px; }
    .pdp-size-chart th, .pdp-size-chart td { padding: 10px 8px; }
    .np-sidebar { flex-direction: column; }
    .np-article__body { font-size: 16px; }
    .ig-stats { grid-template-columns: 1fr 1fr; }
    .ig-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .ig-hero { padding-top: 32px; }
    .ig-hero h1 { font-size: clamp(28px, 7vw, 40px); }
    .signup-form { padding: 24px; }
    .signup-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .signup-grid-2 .field { margin-bottom: 16px; }
    .signup-radio-row { grid-template-columns: 1fr; }
    .signup-preview__actions { grid-template-columns: 1fr; }
}
