﻿:root {
    /* Brand colours */
    --color-brand-primary: #4b1468;
    --color-brand-primary-dark: #2a073d;
    --color-brand-primary-mid: #541b71;
    --color-brand-primary-soft: #7f6295;
    --color-accent: #ffd21a;
    --color-accent-dark: #f5b800;
    --color-green: #438f76;
    --color-green-dark: #2f7b65;

    /* Text and surface colours */
    --color-text: #20252a;
    --color-text-muted: #6a6f78;
    --color-text-inverse: #ffffff;
    --color-surface: #ffffff;
    --color-surface-soft: #fbf4ff;
    --color-surface-blue: #dff3fb;
    --color-surface-yellow: #fff8d8;
    --color-card-yellow: #f5ec84;

    /* Borders, shadows and status */
    --color-border: #a98abd;
    --color-border-soft: rgba(75, 20, 104, 0.10);
    --color-border-strong: rgba(75, 20, 104, 0.18);
    --color-danger: #c4235a;
    --color-danger-dark: #9d174d;
    --focus-ring: 0 0 0 4px rgba(75, 20, 104, 0.14);
    --shadow-soft: 0 12px 40px rgba(75, 20, 104, 0.08);
    --shadow-card: 0 18px 54px rgba(75, 20, 104, 0.08);
    --shadow-panel: 0 22px 70px rgba(75, 20, 104, 0.12);
    --shadow-header: 0 18px 60px rgba(75, 20, 104, 0.10);
    --shadow-header-scrolled: 0 16px 54px rgba(31, 38, 47, 0.14);
    --shadow-modal: 0 28px 80px rgba(0, 0, 0, 0.35);

    /* Gradients */
    --gradient-footer: linear-gradient(135deg, #3b0b54 0%, #541b71 48%, #2a073d 100%);
    --gradient-purple: linear-gradient(135deg, var(--color-brand-primary), #6e2a88);
    --gradient-purple-soft: linear-gradient(135deg, var(--color-brand-primary), #783094);
    --gradient-card-warm: linear-gradient(135deg, #ffffff, #fff8d7);
    --gradient-card-cool: linear-gradient(135deg, #e9f8fc, #fff8d8);

    /* Typography */
    --font-family-base: Poppins, Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-size-display: clamp(42px, 5.4vw, 72px);
    --font-size-page-title: clamp(34px, 3.4vw, 50px);
    --font-size-section-title: clamp(28px, 3vw, 44px);
    --font-size-card-title: clamp(22px, 2.1vw, 30px);
    --font-size-h3: 22px;
    --font-size-body-lg: 18px;
    --font-size-body: 16px;
    --font-size-body-sm: 15px;
    --font-size-caption: 13px;
    --font-size-eyebrow: 12px;
    --font-size-button: 14px;
    --font-size-nav: 14px;
    --line-height-tight: 1.08;
    --line-height-heading: 1.16;
    --line-height-body: 1.65;
    --letter-spacing-ui: 0.01em;

    /* Layout */
    --container-max: 1400px;
    --header-max: var(--container-max);
    --gutter-desktop: 48px;
    --gutter-mobile: 28px;
    --section-space: 72px;
    --section-space-compact: 52px;
    --section-space-mobile: 56px;
    --page-banner-top: 170px;
    --page-banner-bottom: 78px;

    /* Spacing scale */
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 24px;
    --space-6: 28px;
    --space-7: 32px;
    --space-8: 42px;
    --space-9: 48px;
    --space-10: 56px;
    --space-11: 64px;
    --space-12: 72px;
    --gap-sm: 14px;
    --gap-md: 18px;
    --gap-lg: 24px;
    --gap-xl: 34px;
    --gap-2xl: 46px;

    /* Radius scale */
    --radius-xs: 14px;
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 30px;
    --radius-xl: 34px;
    --radius-pill: 999px;
    --radius-circle: 50%;

    /* Motion */
    --duration-fast: 0.2s;
    --duration-standard: 0.25s;
    --duration-slow: 0.5s;
    --ease-standard: ease;
    --ease-premium: cubic-bezier(.22, .61, .36, 1);

    /* Z-index */
    --z-header: 20;
    --z-modal: 60;
    --header-top-space: 18px;
    --header-shell-padding-y: 16px;
    --header-shell-padding-x: 20px;

    /* Backward-compatible aliases */
    --color-bg-page: var(--color-surface-blue);
    --color-primary: var(--color-brand-primary);
    --color-primary-soft: var(--color-brand-primary-soft);
    --color-muted: var(--color-text-muted);
    --shadow: var(--shadow-panel);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-surface-soft); color: var(--color-text); font-family: var(--font-family-base); font-size: var(--font-size-body); font-weight: var(--font-weight-regular); line-height: var(--line-height-body); letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.mb-0 {margin-bottom: 0px;}
.container { width: min(var(--container-max), calc(100% - var(--gutter-desktop))); margin: 0 auto; }
:focus-visible { outline: 0; box-shadow: var(--focus-ring); }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); padding: var(--header-top-space) 20px 0; transition: padding var(--duration-standard) var(--ease-premium); }
.site-header::before { content: ""; position: absolute; inset: 0 0 auto; height: 0; background: linear-gradient(180deg, rgba(251,244,255,.86), rgba(251,244,255,.52)); opacity: 0; backdrop-filter: blur(18px) saturate(1.18); -webkit-backdrop-filter: blur(18px) saturate(1.18); transition: height var(--duration-standard) var(--ease-premium), opacity var(--duration-standard) var(--ease-premium); }
.site-header.is-scrolled { padding-top: 10px; }
.site-header.is-scrolled::before { height: 66px; opacity: .88; }
.header-shell { position: relative; display: flex; align-items: center; gap: var(--space-6); width: min(var(--header-max), 100%); margin: 0 auto; padding: var(--header-shell-padding-y) var(--header-shell-padding-x); border: 1px solid rgba(255,255,255,.74); border-radius: var(--radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--shadow-header); backdrop-filter: blur(16px) saturate(1.18); -webkit-backdrop-filter: blur(16px) saturate(1.18); transition: background var(--duration-standard) var(--ease-premium), border-color var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), padding var(--duration-standard) var(--ease-premium); }
.site-header.is-scrolled .header-shell { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.82); box-shadow: var(--shadow-header-scrolled); backdrop-filter: blur(24px) saturate(1.36); -webkit-backdrop-filter: blur(24px) saturate(1.36); }
@supports not (backdrop-filter: blur(1px)) {
    .header-shell { background: rgba(255,255,255,.96); }
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; border-radius: var(--radius-md); transition: opacity var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard); }
.brand:hover { opacity: .9; transform: translateY(-1px); }
.brand img { width: clamp(156px, 11vw, 180px); max-height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(22px, 2.05vw, 34px); flex: 1; font-size: var(--font-size-nav); font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.main-nav a { position: relative; display: inline-flex; align-items: center; min-height: 42px; color: var(--color-text); transition: color var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.main-nav a::before { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; border-radius: var(--radius-pill); background: var(--color-accent); transform: scaleX(0); transform-origin: center; opacity: 0; transition: transform var(--duration-standard) var(--ease-premium), opacity var(--duration-standard) var(--ease-premium); }
.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] { color: var(--color-primary); }
.main-nav a:hover::before,
.main-nav a.active::before,
.main-nav a[aria-current="page"]::before { transform: scaleX(1); opacity: 1; }
.main-nav a:not(.login-link):hover { transform: translateY(-1px); }
.login-link, .button { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-1); min-height: 46px; padding: 0 var(--space-6); border-radius: var(--radius-pill); border: 0; font-size: var(--font-size-button); font-weight: var(--font-weight-bold); letter-spacing: var(--letter-spacing-ui); text-transform: uppercase; cursor: pointer; }
.login-link, .button-yellow { background: var(--color-accent); color: var(--color-primary); }
.login-link { min-width: 104px; box-shadow: 0 10px 24px rgba(255, 210, 26, 0.24); transition: background var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.main-nav .login-link::before { display: none; }
.login-link:hover { background: var(--color-accent-dark); box-shadow: 0 14px 28px rgba(255, 210, 26, 0.28); transform: translateY(-2px); }
.button-light { background: var(--color-surface); color: var(--color-text); }
.button-outline { border: 2px solid var(--color-border); color: var(--color-text); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: var(--radius-circle); background: var(--color-accent); color: var(--color-primary); cursor: pointer; transition: background var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: var(--radius-pill); background: currentColor; transition: transform var(--duration-standard) var(--ease-premium), opacity var(--duration-fast) var(--ease-standard); }
.menu-toggle:hover,
.menu-toggle.is-open { background: var(--color-accent-dark); box-shadow: 0 10px 24px rgba(255, 210, 26, 0.22); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.home-slider { overflow: hidden; width: 100%; margin: 0; border-radius: 0; background: var(--color-surface-soft); }
.slider-frame { position: relative; overflow: hidden; width: 100%; min-height: clamp(560px, 48vw, 680px); background: radial-gradient(circle at 80% 26%, rgba(255,210,26,.24), transparent 28%), radial-gradient(circle at 12% 74%, rgba(75,20,104,.12), transparent 34%), var(--color-surface); isolation: isolate; }
.slider-frame::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; height: 120px; pointer-events: none; background: linear-gradient(180deg, rgba(251,244,255,0), var(--color-surface-soft)); }
.slide { position: absolute; inset: 0; display: grid; align-items: center; min-height: 100%; padding: 146px max(80px, calc((100vw - var(--container-max)) / 2 + var(--space-5))) var(--space-11); opacity: 0; visibility: hidden; transition: opacity .68s var(--ease-premium), visibility .68s var(--ease-premium); }
.slide.active { opacity: 1; visibility: visible; z-index: 1; }
.slide-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; /* object-position: center top; */ transform: scale(1.015); transition: transform .8s var(--ease-premium); }
.slide-image {
    max-width: none;
}
.slide.active .slide-image { transform: scale(1); }
.slide::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.26) 62%, rgba(255,255,255,.08) 100%); }
.slide::after { content: ""; position: absolute; left: -8%; right: 20%; bottom: -18%; z-index: -1; height: 42%; border-radius: 50%; background: rgba(255,210,26,.18); filter: blur(2px); }
.slide-copy { width: min(620px, 100%); transform: translateY(18px); opacity: 0; transition: opacity .56s var(--ease-premium), transform .56s var(--ease-premium); }
.slide.active .slide-copy { transform: translateY(0); opacity: 1; }
.slide-copy p { max-width: 560px; margin-bottom: var(--space-5); color: var(--color-text); font-size: var(--font-size-body-lg); line-height: 1.7; }
.slide-copy .button { min-height: 50px; padding-inline: var(--space-7); box-shadow: 0 16px 34px rgba(75,20,104,.08); transition: background var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.slide-copy .button:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(75,20,104,.12); }
.slide-copy .button span { display: inline-block; transition: transform var(--duration-standard) var(--ease-premium); }
.slide-copy .button span { width: 1em; overflow: hidden; color: transparent; }
.slide-copy .button span::before { content: "\2197"; color: var(--color-text); }
.slide-copy .button:hover span { transform: translate(2px, -2px); }
.pill { display: inline-flex; align-items: center; align-self: flex-start; width: max-content; max-width: 100%; min-height: 28px; padding: 0 22px; background-color: #a98abdb5; border-radius: var(--radius-pill); color: var(--color-primary); font-size: var(--font-size-eyebrow); font-weight: var(--font-weight-semibold); line-height: 1; text-transform: uppercase; margin-bottom: 3px; }
.pill.yellow { background: var(--color-accent); }
.panel-copy .pill { flex: 0 0 auto; width: fit-content; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: var(--gap-md) 0 var(--space-3); color: var(--color-primary); font-size: var(--font-size-display); font-weight: var(--font-weight-bold); line-height: var(--line-height-tight); letter-spacing: 0; }
h1 strong { display: block; font-weight: var(--font-weight-bold); }
h2 { color: var(--color-text); font-size: var(--font-size-section-title); font-weight: var(--font-weight-semibold); line-height: var(--line-height-heading); letter-spacing: 0; }
h3 { font-weight: var(--font-weight-semibold); line-height: 1.25; }
p { line-height: var(--line-height-body); }
.slider-control { position: absolute; top: calc(50% + 26px); z-index: 4; display: grid; place-items: center; width: 48px; height: 48px; padding: 0 0 4px; transform: translateY(-50%); border: 1px solid rgba(75,20,104,.14); border-radius: var(--radius-circle); background: rgba(255,255,255,.9); color: var(--color-primary); font-size: 34px; line-height: 1; cursor: pointer; box-shadow: 0 12px 28px rgba(75,20,104,.1); opacity: 0; pointer-events: none; transition: opacity var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard); }
.home-slider:hover .slider-control,
.home-slider:focus-within .slider-control { opacity: 1; pointer-events: auto; }
.slider-control:hover { background: var(--color-accent); transform: translateY(-50%) scale(1.03); }
.slider-control { overflow: hidden; color: transparent; }
.slider-control::before { color: var(--color-primary); }
.slider-control.previous::before { content: "\2039"; }
.slider-control.next::before { content: "\203A"; }
.slider-control.previous { left: 20px; }
.slider-control.next { right: 20px; }
.slider-dots { position: absolute; left: 50%; bottom: 34px; z-index: 4; display: flex; gap: 10px; transform: translateX(-50%); padding: 8px 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,.7); box-shadow: 0 10px 28px rgba(75,20,104,.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.slider-dots button { display: grid; place-items: center; width: 26px; height: 26px; padding: 0; border: 0; border-radius: var(--radius-circle); background: transparent; cursor: pointer; }
.slider-dots span { display: block; width: 8px; height: 8px; border-radius: var(--radius-pill); background: rgba(75,20,104,.34); transition: width var(--duration-standard) var(--ease-premium), background var(--duration-standard) var(--ease-premium); }
.slider-dots button[aria-current="true"] span { width: 20px; background: var(--color-accent); box-shadow: inset 0 0 0 1px rgba(75,20,104,.12); }
.trust-strip { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 30px; padding: 30px min(12vw, 220px); background: #eeb3ff; color: var(--color-primary); }
.trust-dashboard { position: relative; z-index: 3; margin-top: -42px; padding: 0 0 var(--section-space-compact); }
.trust-band { position: relative; display: grid; grid-template-columns: minmax(410px, .96fr) minmax(360px, .86fr) minmax(350px, .82fr); gap: clamp(30px, 3.2vw, 50px); align-items: center; padding: clamp(46px, 4.7vw, 72px); border-radius: var(--radius-xl); background: radial-gradient(circle at 74% 14%, rgba(255,210,26,.12), transparent 21%), radial-gradient(circle at 44% 78%, rgba(223,243,251,.75), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,244,255,.94) 52%, rgba(255,248,220,.58)); box-shadow: 0 26px 72px rgba(75,20,104,.11); overflow: hidden; isolation: isolate; }
.trust-band::before { content: ""; position: absolute; left: 36%; top: 18%; width: 45%; height: 56%; border-radius: 52% 48% 48% 52%; transform: rotate(-8deg); pointer-events: none; z-index: -1; }
.trust-band::after { content: ""; position: absolute; right: 40px; bottom: 36px; width: 140px; height: 92px; background: radial-gradient(circle, rgba(169,138,189,.24) 0 3px, transparent 4px); background-size: 18px 18px; opacity: .26; pointer-events: none; z-index: -1; }
.trust-copy { position: relative; z-index: 1; min-width: 0; max-width: 520px; animation: trustReveal .72s var(--ease-premium) both; }
.trust-copy .pill { margin-bottom: 18px; }
.trust-copy h2 { max-width: 520px; margin: 0; color: var(--color-primary); font-size: clamp(34px, 2.75vw, 48px); line-height: 1.09; font-weight: var(--font-weight-semibold); letter-spacing: 0; }
.trust-copy::after { content: ""; display: block; width: 112px; height: 3px; margin-top: 30px; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--color-accent), rgba(169,138,189,.42)); }
.trust-product { position: relative; z-index: 1; display: block; width: min(430px, 100%); aspect-ratio: 1 / 1; min-height: 0; justify-self: center; border-radius: 34px; background: transparent; box-shadow: 0 22px 58px rgba(75,20,104,.11); overflow: hidden; animation: trustReveal .76s var(--ease-premium) .08s both; }
.trust-product::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(75,20,104,.08); pointer-events: none; z-index: 2; }
.trust-product::after { display: none; }
.trust-product img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform var(--duration-standard) var(--ease-premium); }
.trust-product:hover img, .trust-band:hover .trust-product img { transform: scale(1.018); }
.trust-metrics { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 16px; min-width: 0; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.trust-metrics::before { content: ""; position: absolute; left: 31px; top: 54px; bottom: 54px; width: 2px; background: linear-gradient(180deg, var(--color-accent), rgba(169,138,189,.42), var(--color-primary)); opacity: .55; pointer-events: none; }
.trust-metric { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 18px; align-items: center; padding: 22px 24px; border: 1px solid rgba(75,20,104,.1); border-radius: 25px; background: rgba(255,255,255,.86); box-shadow: 0 16px 42px rgba(75,20,104,.07); overflow: hidden; animation: trustReveal .72s var(--ease-premium) .16s both; transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard); }
.trust-metric:nth-child(2) { animation-delay: .24s; }
.trust-metric:nth-child(3) { animation-delay: .32s; }
.trust-metric:hover { transform: translateY(-3px); border-color: rgba(75,20,104,.16); box-shadow: 0 22px 52px rgba(75,20,104,.1); }
.trust-marker { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; place-items: center; color: var(--color-primary); }
.trust-marker em { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; color: var(--color-primary); font-size: 13px; font-style: normal; font-weight: var(--font-weight-bold); line-height: 1; }
.trust-marker i { display: block; width: 62px; height: 62px; margin: 0; border-radius: var(--radius-circle); background: var(--color-accent); box-shadow: inset 0 0 0 1px rgba(75,20,104,.08); transition: transform var(--duration-fast) var(--ease-standard); }
.trust-metric:hover .trust-marker i { transform: scale(1.04); }
.trust-metric-protection .trust-marker i { background: var(--color-secondary); }
.trust-metric-copy { position: relative; z-index: 1; min-width: 0; }
.trust-metric-copy span { display: block; margin-bottom: 5px; color: var(--color-primary); font-size: 12px; font-weight: var(--font-weight-bold); text-transform: uppercase; }
.trust-metric-copy strong { display: block; color: var(--color-primary); font-size: clamp(28px, 2vw, 48px); line-height: 1; font-weight: var(--font-weight-bold); }
.trust-metric-copy p { margin: 6px 0 0; color: var(--color-muted); font-size: 16px; line-height: 1.45; }
@keyframes trustReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }.avatar-stack { display: flex; }
.avatar-stack span { width: 48px; height: 48px; margin-left: -10px; border: 3px solid #fff; border-radius: 50%; background: linear-gradient(135deg, #ffd21a, #4b1468); }
.avatar-stack span:first-child { margin-left: 0; }
.round-badge { display: grid; place-items: center; width: 116px; height: 116px; border-radius: var(--radius-circle); background: var(--color-accent); color: var(--color-primary); font-size: 11px; font-weight: var(--font-weight-bold); text-align: center; text-transform: uppercase; }
.pack-thumb { width: 136px; height: 70px; border-radius: 18px; background: url('../images/product-pack.svg') center / cover no-repeat; }
.section { padding: var(--section-space) 0; }
.products-preview { position: relative; overflow: hidden; padding-top: var(--gap-xl); padding-bottom: var(--section-space-compact); background: radial-gradient(circle at 12% 12%, rgba(223,243,251,.34), transparent 28%), radial-gradient(circle at 88% 8%, rgba(255,210,26,.18), transparent 24%), linear-gradient(180deg, rgba(251,244,255,.72), rgba(255,255,255,.55)); }
.products-preview::before,
.products-preview::after { content: ""; position: absolute; pointer-events: none; border-radius: 50%; opacity: .55; }
.products-preview::before { left: max(18px, calc((100vw - var(--container-max)) / 2)); top: 118px; width: 62px; height: 62px; background: repeating-conic-gradient(from 0deg, rgba(169,138,189,.32) 0 10deg, transparent 10deg 34deg); }
.products-preview::after { right: max(16px, calc((100vw - var(--container-max)) / 2)); top: 60px; width: 92px; height: 92px; background: repeating-conic-gradient(from 8deg, rgba(255,210,26,.28) 0 9deg, transparent 9deg 34deg); }
.section-heading { margin-bottom: 36px; padding-top: 0; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: var(--space-7); }
.center-heading { display: flex; align-items: end; justify-content: space-between; gap: var(--space-7); }
.products-preview .container { position: relative; z-index: 1; }
.products-preview .section-heading { align-items: center; margin-bottom: clamp(28px, 3vw, 42px); }
.products-preview .section-heading h2 { margin: 10px 0 8px; color: var(--color-primary); font-size: clamp(38px, 4vw, 62px); line-height: 1.02; }
.products-preview .section-heading p { max-width: 620px; color: var(--color-muted); font-size: var(--font-size-body); }
.product-preview-cta { min-height: 60px; padding-inline: 34px; border: 0; background: var(--color-primary); color: #fff; box-shadow: 0 16px 34px rgba(75,20,104,.22); }
.product-preview-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 42px rgba(75,20,104,.28); }
.product-preview-cta span { display: inline-block; transition: transform var(--duration-fast) var(--ease-standard); }
.product-preview-cta:hover span { transform: translate(3px, -1px); }
.home-product-families { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 2.7vw, 42px); }
.home-product-family { position: relative; display: flex; flex-direction: column; min-width: 0; min-height: 100%; padding: clamp(24px, 2.6vw, 34px); border: 1px solid rgba(75,20,104,.1); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(244,248,255,.9)); box-shadow: 0 26px 68px rgba(75,20,104,.09); overflow: hidden; opacity: 0; transform: translateY(18px); animation: familyReveal .72s var(--ease-premium) forwards; }
.home-product-family:nth-child(2) { animation-delay: .12s; }
.home-product-family::before { content: ""; position: absolute; inset: 16px; border-radius: 26px; background-image: radial-gradient(circle, rgba(109,187,221,.18) 0 6px, transparent 7px); background-size: 210px 170px; background-position: 16px 34px; opacity: .55; pointer-events: none; }
.home-product-family::after { display: none; }
.family-large { background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,248,216,.9)); border-color: rgba(255,210,26,.24); }
.family-large::before { background-image: radial-gradient(circle, rgba(255,210,26,.24) 0 6px, transparent 7px); }
.home-product-family h3 { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0 0 22px; color: var(--color-primary); font-size: clamp(28px, 2.3vw, 40px); line-height: 1.1; text-align: center; }
.home-product-family h3::before,
.home-product-family h3::after { content: ""; width: 62px; height: 1px; background: linear-gradient(90deg, transparent, rgba(75,20,104,.28)); }
.home-product-family h3::after { background: linear-gradient(90deg, rgba(75,20,104,.28), transparent); }
.family-product-stage { position: relative; z-index: 1; display: block; aspect-ratio: 1 / 1; min-height: 0; margin-bottom: 22px; border-radius: 28px; background: url('../images/products/01.png') center / cover no-repeat; box-shadow: 0 18px 48px rgba(75,20,104,.09); overflow: hidden; }
.family-large .family-product-stage { background-image: url('../images/products/02.png'); box-shadow: 0 18px 48px rgba(154,111,0,.10); }
.family-product-stage::before { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(75,20,104,.08); pointer-events: none; }
.family-product-stage img { position: relative; z-index: 1; width: 100%; height: 100%; max-height: none; object-fit: cover; border-radius: inherit; opacity: 0; transition: transform var(--duration-standard) var(--ease-premium); }
.home-product-family:hover .family-product-stage img { transform: scale(1.018); }
.family-options { position: relative; z-index: 1; display: grid; gap: 14px; margin-top: auto; }
.family-option-row { display: grid; grid-template-columns: 74px minmax(96px, .58fr) minmax(180px, 1fr) 34px; gap: 16px; align-items: center; min-height: 82px; padding: 14px 18px; border-radius: 16px; background: rgba(255,255,255,.88); color: var(--color-text); box-shadow: 0 12px 28px rgba(75,20,104,.06); text-decoration: none; transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard); }
.family-option-row:hover { transform: translateY(-3px); border-color: rgba(75,20,104,.14); box-shadow: 0 18px 34px rgba(75,20,104,.1); }
.option-count { display: inline-grid; place-items: center; min-width: 58px; min-height: 44px; padding: 0 12px; border-radius: 999px; background: var(--color-primary); color: #fff; font-size: 13px; font-style: normal; font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.family-large .option-count { background: var(--color-accent); color: var(--color-primary); }
.family-option-row strong { color: var(--color-primary); font-size: clamp(18px, 1.5vw, 22px); line-height: 1.1; }
.family-option-row em { color: var(--color-muted); font-size: var(--font-size-body-sm); font-style: normal; line-height: 1.45; }
.family-option-row i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: var(--radius-circle); background: rgba(75,20,104,.08); color: var(--color-primary); font-size: 0; font-style: normal; transition: transform var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard); }
.family-option-row i::before { content: "\2192"; font-size: 18px; line-height: 1; }
.family-option-row:hover i { transform: translateX(3px); background: rgba(255,210,26,.42); }
@keyframes familyReveal { to { opacity: 1; transform: translateY(0); } }
.home-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.home-product-card { display: flex; flex-direction: column; min-height: 100%; padding: 22px; border: 1px solid var(--color-border-soft); border-radius: var(--radius-md); background: var(--color-surface); box-shadow: var(--shadow-soft); }
.home-product-card img { height: 178px; width: 100%; object-fit: cover; padding: 0; border-radius: var(--radius-sm); background: var(--gradient-card-cool); }
.home-product-card span { margin-top: 18px; color: var(--color-primary-soft); font-size: var(--font-size-eyebrow); font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.home-product-card h3 { margin: 8px 0; color: var(--color-text); font-size: var(--font-size-h3); line-height: 1.2; font-weight: var(--font-weight-semibold); }
.home-product-card p { color: var(--color-muted); font-size: var(--font-size-body-sm); }
.home-product-card a { margin-top: auto; color: var(--color-primary); font-weight: var(--font-weight-semibold); }
.home-product-card i { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-left: 8px; border-radius: var(--radius-circle); background: var(--color-accent); font-style: normal; }
.product-showcase { display: grid; grid-template-columns: .85fr 1fr; gap: 54px; align-items: center; }
.products-preview .split-heading h2 { margin-bottom: 18px; }
.products-preview .split-heading p { margin-bottom: 0; }
.product-photo { overflow: hidden; height: 380px; border-radius: 28px; background: linear-gradient(135deg, #c8eaf4, #fff); }
.product-photo img { width: 100%; height: 100%; object-fit: contain; padding: 34px; }
.product-list a { position: relative; display: block; padding: 22px 76px 22px 0; border-bottom: 1px solid var(--color-border); }
.product-list span, .catalog-card span { display: block; color: var(--color-muted); font-size: var(--font-size-caption); font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.product-list span::before, .catalog-card span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: var(--color-accent); }
.product-list strong { display: block; color: var(--color-text); font-size: clamp(25px, 2.8vw, 38px); line-height: 1.16; font-weight: var(--font-weight-medium); }
.product-list i { position: absolute; right: 0; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; transform: translateY(-50%); border-radius: var(--radius-circle); background: var(--color-accent); color: var(--color-primary); font-style: normal; font-weight: var(--font-weight-semibold); }
.feature-marquee { overflow: hidden; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px var(--color-primary-soft); font-size: clamp(54px, 8vw, 108px); font-weight: var(--font-weight-semibold); }
.feature-marquee b { margin: 0 42px; color: var(--color-green); -webkit-text-stroke: 0; }
.split-panel, .green-panel { overflow: hidden; border-radius: 28px; }
.yellow-panel { display: grid; grid-template-columns: .86fr 1fr; gap: 28px; padding: 28px; background: #fff9dd; box-shadow: 0 22px 70px rgba(75,20,104,.08); }
.panel-image { min-height: 440px; border-radius: 24px; background: radial-gradient(circle at 35% 40%, rgba(255,210,26,.28), transparent 34%), linear-gradient(135deg, #e9f8fc, #ffffff); position: relative; }
.panel-image::before { content: ""; position: absolute; inset: 42px; border-radius: 30px; background: url('../images/product-pack.svg') center / contain no-repeat; filter: drop-shadow(0 24px 32px rgba(75,20,104,.16)); }
.panel-copy { display: flex; flex-direction: column; justify-content: center; padding: 48px; border-radius: 24px; background: var(--color-accent); }
.panel-copy h2 { margin: 14px 0 22px; font-size: clamp(30px, 3vw, 46px); line-height: 1.12; }
.panel-copy p { max-width: 760px; font-size: 16px; }
.mini-grid, .benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mini-grid span, .benefit-grid article, .content-card, .metric-card, .statement-card, .catalog-card, .legal-card, .contact-details article, .contact-form, .login-card { border-radius: var(--radius-md); background: rgba(255,255,255,.72); box-shadow: var(--shadow-soft); }
.mini-grid span { padding: 10px 18px; font-weight: var(--font-weight-semibold); }
.opportunity-section { position: relative; overflow: hidden; padding-top: clamp(54px, 5vw, 76px); background: radial-gradient(circle at 16% 14%, rgba(255,255,255,.88), transparent 32%), radial-gradient(circle at 82% 16%, rgba(255,210,26,.14), transparent 26%), linear-gradient(180deg, rgba(255,255,255,.2), rgba(251,244,255,.7)); }
.opportunity-section::before { content: ""; position: absolute; inset: 22px auto auto -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(169,138,189,.1); pointer-events: none; }
.opportunity-section::after { content: ""; position: absolute; right: 8%; bottom: 24px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(169,138,189,.26) 0 3px, transparent 4px); background-size: 18px 18px; opacity: .44; pointer-events: none; }
.opportunity-card { position: relative; display: grid; grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr); gap: clamp(38px, 4.5vw, 76px); align-items: center; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--color-text); box-shadow: none; overflow: visible; isolation: isolate; }
.opportunity-card::before { display: none; }
.opportunity-card > div:first-child { position: relative; z-index: 2; opacity: 0; transform: translateY(16px); animation: familyReveal .72s var(--ease-premium) forwards; }
.opportunity-card h2 { margin: 18px 0 20px; color: var(--color-primary); font-size: clamp(34px, 3.1vw, 52px); line-height: 1.12; }
.opportunity-card p { max-width: 500px; color: var(--color-muted); font-size: var(--font-size-body); }
.opportunity-card .pill { color: var(--color-primary); }
.opportunity-card .button-yellow { min-height: 58px; margin-top: 18px; padding-inline: 30px; border: 0; background: var(--color-primary); color: #fff; box-shadow: 0 16px 34px rgba(75,20,104,.22); }
.opportunity-card .button-yellow:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 22px 42px rgba(75,20,104,.26); }
.opportunity-card .button-yellow span { display: inline-block; color: inherit; transition: transform var(--duration-fast) var(--ease-standard); }
.opportunity-card .button-yellow:hover span { transform: translate(3px, -1px); }
.journey-steps { position: relative; z-index: 1; min-height: 390px; isolation: isolate; }
.journey-path { position: absolute; inset: 12px 0 auto 0; z-index: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.journey-path path { fill: none; stroke-linecap: round; stroke-width: 4; stroke-dasharray: 8 13; }
.journey-path-base { stroke: rgba(169,138,189,.92); animation: pathReveal 1.1s var(--ease-premium) .15s both; }
.journey-path-accent { stroke: rgba(255,190,0,.95); animation: pathReveal .9s var(--ease-premium) .55s both; }
.journey-step { position: absolute; z-index: 1; width: min(210px, 30%); color: var(--color-text); opacity: 0; transform: translateY(16px); animation: familyReveal .62s var(--ease-premium) forwards; }
.journey-step:nth-of-type(2) { animation-delay: .16s; }
.journey-step:nth-of-type(3) { animation-delay: .28s; }
.journey-step:nth-of-type(4) { animation-delay: .4s; }
.journey-step:nth-of-type(5) { animation-delay: .52s; }
.step-join { left: 2%; top: 58%; }
.step-learn { left: 31%; top: 38%; }
.step-share { left: 58%; top: 23%; }
.step-grow { right: -70px; top: 9%; }
.journey-node { display: grid; place-items: center; width: 78px; height: 78px; margin-bottom: 12px; border: 1px solid rgba(169,138,189,.34); border-radius: 50%; background: rgba(255,255,255,.76); color: var(--color-primary); box-shadow: 0 16px 34px rgba(75,20,104,.1); transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard); }
.journey-node svg { width: 36px; height: 36px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.journey-step:hover .journey-node { transform: translateY(-3px); box-shadow: 0 22px 40px rgba(75,20,104,.14); }
.journey-step b { display: block; color: rgba(75,20,104,.88); font-size: clamp(30px, 3vw, 46px); line-height: 1; }
.journey-step strong { display: block; margin: 8px 0 8px; color: var(--color-primary); font-size: clamp(22px, 1.8vw, 30px); line-height: 1.1; }
.journey-step span:last-child { display: block; color: var(--color-muted); font-size: var(--font-size-body-sm); line-height: 1.5; }
.step-grow .journey-node { border-color: rgba(255,210,26,.46); background: rgba(255,248,216,.9); color: #c99600; }
.step-grow b { color: #e6a900; }
@keyframes pathReveal { from { stroke-dashoffset: 180; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }
.green-panel { display: grid; grid-template-columns: 1fr .8fr 1fr; gap: 36px; align-items: center; padding: 70px; background: var(--color-green); color: var(--color-accent); }
.green-panel h2 { color: var(--color-accent); }
.green-panel p { color: #ffe978; }
.green-panel img { max-height: 360px; margin: auto; }
.stats-list article { display: grid; grid-template-columns: 90px 1fr; gap: 0 28px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.stats-list strong { grid-row: span 2; display: grid; place-items: center; width: 86px; height: 86px; border-radius: 50%; background: var(--color-accent); color: var(--color-primary); font-size: 24px; }
.stats-list h3 { margin: 0; color: var(--color-accent); }
.safety-section { position: relative; padding-top: 72px; padding-bottom: 68px; }
.safety-panel { position: relative; display: grid; gap: clamp(40px, 3.2vw, 56px); padding: clamp(38px, 4.4vw, 60px); border: 1px solid rgba(75,20,104,.075); border-radius: var(--radius-xl); background: radial-gradient(circle at 50% 58%, rgba(223,243,251,.66) 0 15%, rgba(223,243,251,0) 34%), radial-gradient(circle at 88% 79%, rgba(255,210,26,.12) 0 13%, rgba(255,210,26,0) 28%), radial-gradient(circle at 10% 42%, rgba(169,138,189,.13) 0 18%, rgba(169,138,189,0) 34%), linear-gradient(135deg, rgba(255,255,255,.98), rgba(251,244,255,.9) 48%, rgba(255,255,255,.98)); box-shadow: 0 24px 72px rgba(75,20,104,.085); overflow: hidden; isolation: isolate; }
.safety-panel::before { content: ""; position: absolute; inset: 26px; z-index: -2; border: 1px solid rgba(255,255,255,.72); border-radius: 30px; pointer-events: none; }
.safety-panel::after { content: ""; position: absolute; right: 8%; bottom: 8%; z-index: -2; width: 160px; height: 160px; opacity: .2; background: radial-gradient(circle, rgba(75,20,104,.2) 2px, transparent 3px); background-size: 22px 22px; transform: rotate(-12deg); pointer-events: none; }
.safety-copy { position: relative; z-index: 3; max-width: 720px; padding: 0; border-radius: 0; background: transparent; animation: familyReveal .72s var(--ease-premium) both; }
.safety-copy .pill { margin-bottom: 16px; }
.safety-copy h2 { max-width: 600px; margin: 0 0 16px; color: var(--color-primary); font-size: clamp(34px, 2.85vw, 46px); line-height: 1.12; }
.safety-copy p { max-width: 650px; margin: 0; color: var(--color-text); font-size: 16px; line-height: 1.68; }
.safety-composition { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(270px, .86fr) minmax(380px, 1.12fr) minmax(270px, .86fr); gap: clamp(18px, 2.1vw, 30px); align-items: center; }
.safety-stage { position: relative; z-index: 4; display: grid; place-items: center; width: min(510px, 100%); aspect-ratio: 1.05 / 1; justify-self: center; padding: 18px; border-radius: 32% 68% 38% 62% / 54% 42% 58% 46%; background: radial-gradient(circle at 52% 42%, rgba(255,255,255,.98) 0 22%, rgba(255,255,255,0) 24%), linear-gradient(145deg, rgba(223,243,251,.82), rgba(251,244,255,.78) 56%, rgba(255,248,216,.58)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.82), 0 28px 64px rgba(75,20,104,.13); overflow: hidden; animation: safetyStageReveal .82s var(--ease-premium) both; }
.safety-stage::before { content: ""; position: absolute; inset: 18px; border-radius: 30% 70% 38% 62% / 56% 40% 60% 44%; border: 1px solid rgba(75,20,104,.06); background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(251,244,255,.14)); pointer-events: none; }
.safety-stage::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: 7%; height: 18px; border-radius: var(--radius-pill); background: rgba(75,20,104,.13); filter: blur(6px); }
.safety-stage img { position: relative; z-index: 2; width: 100%; height: 100%; border-radius: 28% 72% 38% 62% / 56% 40% 60% 44%; object-fit: contain; object-position: center; filter: saturate(1.02) drop-shadow(0 18px 24px rgba(75,20,104,.16)); transition: transform var(--duration-standard) var(--ease-premium), filter var(--duration-standard) var(--ease-premium); }
.safety-panel:hover .safety-stage img { transform: translateY(-6px) rotate(-1deg); filter: drop-shadow(0 34px 38px rgba(75,20,104,.24)); }
.safety-stage-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.safety-stage-orbit-one { width: 72%; height: 72%; border: 1px solid rgba(169,138,189,.26); transform: rotate(-18deg); }
.safety-stage-orbit-two { right: 6%; top: 12%; width: 86px; height: 86px; background: rgba(255,210,26,.2); filter: blur(.4px); }
.safety-connectors { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.connector { fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 7 10; opacity: .34; animation: pathReveal 1s var(--ease-premium) both .18s; }
.connector-purple { stroke: rgba(75,20,104,.5); }
.connector-blue { stroke: rgba(78,152,188,.56); }
.connector-deep-blue { stroke: rgba(48,112,150,.52); }
.connector-yellow { stroke: rgba(245,184,0,.72); }
.safety-points { position: relative; z-index: 5; display: grid; gap: 16px; pointer-events: auto; }
.safety-point { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 0 16px; align-items: center; width: 100%; min-height: 142px; padding: 20px 22px; border: 1px solid rgba(75,20,104,.07); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 14px 38px rgba(75,20,104,.065); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); animation: familyReveal .72s var(--ease-premium) both; transition: transform var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), border-color var(--duration-standard) var(--ease-premium); }
.safety-point:hover { transform: translateY(-4px); border-color: rgba(75,20,104,.13); box-shadow: 0 20px 48px rgba(75,20,104,.1); }
.point-odour { animation-delay: .08s; }
.point-absorption { animation-delay: .16s; }
.point-absorbency { animation-delay: .24s; background: radial-gradient(circle at 88% 18%, rgba(255,210,26,.22), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,216,.88)); }
.safety-icon { grid-column: 1; grid-row: 1 / span 3; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; color: var(--color-primary); background: rgba(75,20,104,.075); transition: transform var(--duration-standard) var(--ease-premium); }
.safety-point:hover .safety-icon { transform: translateY(-3px) rotate(-2deg); }
.safety-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.point-odour .safety-icon { color: #2f7b98; background: rgba(223,243,251,.9); }
.point-absorption .safety-icon { color: #276d93; background: rgba(223,243,251,.72); }
.point-absorbency .safety-icon { color: var(--color-primary); background: var(--color-accent); box-shadow: 0 14px 28px rgba(255,210,26,.22); }
.safety-point strong { display: block; margin: 0; color: var(--color-primary); font-size: clamp(27px, 2.35vw, 36px); line-height: 1; }
.safety-point h3 { margin: 5px 0 4px; color: var(--color-text); font-size: 17px; line-height: 1.2; }
.safety-point p { grid-column: 2; margin: 0; color: var(--color-muted); font-size: 13px; line-height: 1.5; }
.point-absorbency strong { color: #7a5200; }
.point-absorbency h3 { color: var(--color-primary); }
@keyframes safetyStageReveal {
    from { opacity: 0; transform: translateY(14px) scale(.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes safetyFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -8px; }
}
.testimonials { position: relative; overflow: hidden; padding-top: clamp(46px, 4vw, 70px); background: radial-gradient(circle at 50% 0, rgba(255,255,255,.72), transparent 30%), linear-gradient(180deg, rgba(251,244,255,.34), rgba(251,244,255,.78)); }
.testimonial-shell { position: relative; }
.testimonial-band { position: relative; display: grid; grid-template-columns: minmax(260px, .72fr) minmax(420px, 1fr) minmax(330px, .82fr); gap: clamp(26px, 3vw, 44px); align-items: center; padding: clamp(46px, 4.5vw, 68px); border-radius: 34px; background: radial-gradient(circle at 80% 18%, rgba(255,210,26,.12), transparent 22%), radial-gradient(circle at 18% 84%, rgba(223,243,251,.6), transparent 26%), linear-gradient(135deg, rgba(255,255,255,.97), rgba(251,244,255,.93) 52%, rgba(255,248,220,.56)); box-shadow: 0 22px 60px rgba(75,20,104,.1); overflow: hidden; isolation: isolate; }
.testimonial-band::before { content: ""; position: absolute; right: -120px; bottom: -92px; width: 360px; height: 220px; border-radius: 52% 48% 0 0; background: rgba(75,20,104,.04); transform: rotate(-9deg); pointer-events: none; z-index: -1; }
.testimonial-band::after { content: ""; position: absolute; left: 64%; top: 48%; width: 190px; height: 64px; border-top: 2px dashed rgba(169,138,189,.3); border-radius: 50%; transform: rotate(-7deg); pointer-events: none; z-index: -1; }
.testimonial-heading { align-self: start; min-width: 0; padding-top: 18px; animation: testimonialReveal .72s var(--ease-premium) both; }
.testimonial-heading h2 { max-width: 380px; margin: 18px 0 14px; color: var(--color-primary); font-size: clamp(34px, 3vw, 46px); line-height: 1.1; }
.testimonial-heading p { max-width: 360px; margin: 0; color: var(--color-muted); font-size: 16px; line-height: 1.68; }
.testimonial-heading::after { content: ""; display: block; width: 92px; height: 3px; margin-top: 30px; border-radius: 999px; background: linear-gradient(90deg, var(--color-accent), rgba(169,138,189,.38)); }
.testimonial-featured { position: relative; min-width: 0; padding: clamp(30px, 3vw, 42px); border-radius: 30px; background: linear-gradient(145deg, #5a1977 0%, var(--color-primary) 52%, #2a073d 100%); color: #fff; box-shadow: 0 28px 64px rgba(75,20,104,.2); overflow: hidden; animation: testimonialReveal .78s var(--ease-premium) .08s both; transition: transform var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard); }
.testimonial-featured::after { content: ""; position: absolute; right: -48px; bottom: -46px; width: 150px; height: 150px; border-radius: 45% 55% 50% 50%; background: radial-gradient(circle, rgba(255,210,26,.18), transparent 72%); pointer-events: none; }
.testimonial-featured:hover { transform: translateY(-4px); box-shadow: 0 34px 78px rgba(75,20,104,.24); }
.testimonial-kicker { position: relative; display: block; margin-bottom: 18px; color: var(--color-accent); font-size: 12px; font-weight: var(--font-weight-bold); text-transform: uppercase; }
.testimonial-quote-motif { position: absolute; right: 24px; top: -10px; color: rgba(255,255,255,.11); font-size: 126px; font-weight: var(--font-weight-bold); line-height: 1; pointer-events: none; transition: transform var(--duration-standard) var(--ease-standard); }
.testimonial-featured:hover .testimonial-quote-motif { transform: translateY(-3px); }
.testimonial-featured blockquote, .testimonial-support-card blockquote { margin: 0; }
.testimonial-featured blockquote p { position: relative; max-width: 560px; margin: 0 0 28px; color: #fff; font-size: clamp(21px, 1.6vw, 24px); line-height: 1.52; font-weight: var(--font-weight-medium); }
.testimonial-identity { position: relative; display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.testimonial-identity cite { color: inherit; font-size: 16px; font-style: normal; font-weight: var(--font-weight-semibold); }
.testimonial-initial { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(169,138,189,.18); color: var(--color-primary); font-weight: var(--font-weight-bold); transition: transform var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard); }
.testimonial-initial-featured { width: 54px; height: 54px; background: var(--color-accent); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.testimonial-featured:hover .testimonial-initial, .testimonial-support-card:hover .testimonial-initial { transform: scale(1.04); }
.testimonial-supporting { display: grid; gap: 18px; min-width: 0; }
.testimonial-support-card { position: relative; min-width: 0; padding: 24px 24px 22px; border: 1px solid rgba(75,20,104,.11); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: 0 16px 42px rgba(75,20,104,.07); overflow: hidden; animation: testimonialReveal .72s var(--ease-premium) .16s both; transition: transform var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard), border-color var(--duration-standard) var(--ease-standard); }
.testimonial-support-card:nth-child(2) { animation-delay: .24s; }
.testimonial-support-card::before { content: ""; position: absolute; left: 0; top: 24px; width: 4px; height: 58px; border-radius: 999px; background: var(--color-accent); pointer-events: none; }
.testimonial-support-card:hover { transform: translateY(-3px); border-color: rgba(75,20,104,.16); box-shadow: 0 22px 54px rgba(75,20,104,.1); }
.testimonial-support-card blockquote p { position: relative; margin: 0 0 20px; padding-left: 8px; color: var(--color-text); font-size: 16px; line-height: 1.62; font-weight: var(--font-weight-medium); }
.testimonial-identity-support { gap: 12px; padding-top: 0; border-top: 0; }
.testimonial-identity-support cite { color: var(--color-primary); font-size: 15px; }
@keyframes testimonialReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.site-footer { position: relative; overflow: hidden; margin: 50px auto 0; padding: var(--space-11) 0 var(--space-5); background: var(--gradient-footer); color: var(--color-text-inverse); isolation: isolate; }
.site-footer::before { content: ""; position: absolute; inset: -1px 0 auto; z-index: 0; height: 92px; background: var(--color-background); clip-path: ellipse(58% 74% at 50% 0%); pointer-events: none; }
.site-footer::after { content: ""; position: absolute; right: -18%; bottom: -36%; z-index: 0; width: 44%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,202,25,.22), rgba(255,202,25,0) 64%); pointer-events: none; }
.footer-inner { position: relative; z-index: 1; }
.footer-soft-line { position: absolute; left: 8%; right: 8%; top: 86px; z-index: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); pointer-events: none; }
.footer-orb { position: absolute; z-index: 0; border-radius: 999px; pointer-events: none; }
.footer-orb-one { left: -56px; bottom: -68px; width: 170px; height: 170px; background: rgba(232,248,252,.12); }
.footer-orb-two { right: 7%; top: 168px; width: 106px; height: 106px; background: rgba(255,255,255,.06); }
.footer-cta { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; margin-bottom: 52px; padding: 24px 28px; border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.05)); box-shadow: 0 24px 70px rgba(12,0,22,.24); backdrop-filter: blur(16px); }
.footer-cta > * { min-width: 0; }
.footer-cta::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.05)); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; -webkit-mask-composite: xor; padding: 1px; pointer-events: none; }
.footer-cta-label { display: inline-flex; align-items: center; width: max-content; margin-bottom: 8px; padding: 5px 16px; border-radius: var(--radius-pill); background: rgba(255,202,25,.18); color: #ffe684; font-size: 11px; font-weight: var(--font-weight-bold); line-height: 1; text-transform: uppercase; letter-spacing: .02em; }
.footer-cta h2 { max-width: 760px; margin: 0; color: var(--color-text-inverse); font-size: clamp(30px, 3vw, 44px); line-height: 1.08; font-weight: var(--font-weight-semibold); letter-spacing: 0; }
.footer-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.footer-action { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: var(--radius-pill); color: var(--color-text-inverse); font-size: 13px; font-weight: var(--font-weight-bold); line-height: 1; text-decoration: none; white-space: nowrap; transition: color var(--duration-standard) var(--ease-premium), background var(--duration-standard) var(--ease-premium), border-color var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.footer-action span { display: inline-block; transition: transform var(--duration-standard) var(--ease-premium); }
.footer-action-primary { background: var(--color-accent); color: var(--color-primary); box-shadow: 0 16px 34px rgba(255,202,25,.22); }
.footer-action-secondary { background: rgba(255,255,255,.08); color: var(--color-text-inverse); box-shadow: inset 0 0 0 1px rgba(255,255,255,.32); }
.footer-action:hover { transform: translateY(-2px); }
.footer-action:hover span { transform: translate(2px, -2px); }
.footer-action-primary:hover { color: var(--color-primary); box-shadow: 0 20px 38px rgba(255,202,25,.28); }
.footer-action-secondary:hover { background: rgba(255,255,255,.13); color: var(--color-accent); box-shadow: inset 0 0 0 1px rgba(255,255,255,.46); }
.footer-action:focus-visible, .footer-links a:focus-visible, .footer-contact a:focus-visible, .footer-logo-link:focus-visible, .footer-social-button:focus-visible { outline: 3px solid rgba(255,202,25,.9); outline-offset: 4px; border-radius: 12px; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, 1.1fr) minmax(150px, .78fr) minmax(170px, .84fr) minmax(260px, 1fr); gap: clamp(34px, 5vw, 78px); align-items: start; }
.footer-grid::before { content: ""; position: absolute; left: -8%; top: 22%; z-index: -1; width: 240px; height: 92px; border-radius: 999px; background: rgba(255,255,255,.07); transform: rotate(-12deg); pointer-events: none; }
.footer-logo-link { display: inline-flex; align-items: center; width: max-content; max-width: 100%; }
.footer-brand img { display: block; width: 194px; height: auto; margin-bottom: 24px; transition: transform var(--duration-standard) var(--ease-premium); }
.footer-logo-link:hover img { transform: translateY(-2px); }
.footer-brand p { max-width: 315px; margin: 0; color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.75; }
.footer-socials { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.footer-social-button { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(255,255,255,.08); color: var(--color-text-inverse); text-decoration: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); transition: color var(--duration-standard) var(--ease-premium), background var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.footer-social-button:hover { background: var(--color-accent); color: var(--color-primary); box-shadow: 0 16px 30px rgba(255,202,25,.2); transform: translateY(-2px); }
.footer-social-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-button:first-child svg { fill: currentColor; stroke: none; }
.footer-promise { display: none; }
.footer-promise h2 { color: var(--color-primary); font-size: 28px; }
.footer-links h3, .footer-contact h3 { margin: 0 0 18px; color: var(--color-text-inverse); font-size: 18px; line-height: 1.2; font-weight: var(--font-weight-semibold); }
.footer-links a { position: relative; display: block; width: max-content; max-width: 100%; margin: 0 0 13px; color: rgba(255,255,255,.84); font-size: 15px; line-height: 1.45; text-decoration: none; transition: color var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.footer-links a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px; border-radius: 999px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform var(--duration-standard) var(--ease-premium); }
.footer-links a:hover { color: var(--color-text-inverse); transform: translateX(3px); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-contact-row { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; align-items: start; margin: 0 0 18px; transition: transform var(--duration-standard) var(--ease-premium); }
.footer-contact-row:hover { transform: translateY(-2px); }
.footer-contact-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 14px; background: rgba(255,202,25,.16); color: var(--color-accent); transition: background var(--duration-standard) var(--ease-premium), transform var(--duration-standard) var(--ease-premium); }
.footer-contact-row:hover .footer-contact-icon { background: rgba(255,202,25,.24); transform: translateY(-1px); }
.footer-contact-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact p { min-width: 0; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.45; }
.footer-contact p span { display: block; margin-bottom: 3px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: var(--font-weight-bold); line-height: 1.2; text-transform: uppercase; }
.footer-contact a { display: inline; margin: 0; color: var(--color-text-inverse); font-size: 15px; font-weight: var(--font-weight-semibold); overflow-wrap: anywhere; text-decoration: none; transition: color var(--duration-standard) var(--ease-premium); }
.footer-contact a:hover { color: var(--color-accent); }
.footer-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-start; gap: 18px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.4; }
.footer-policy-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; margin-left: auto; }
.footer-policy-links a { color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.35; text-decoration: none; transition: color var(--duration-standard) var(--ease-premium); }
.footer-policy-links a:hover { color: var(--color-accent); }
.footer-bg-marks { position: absolute; inset: 0; z-index: 0; color: #9cca3b; font-size: 36px; letter-spacing: 110px; opacity: .16; pointer-events: none; }
.page-banner {
    position: relative;
    overflow: hidden;
    margin: 0 0 28px;
    padding: var(--page-banner-top) 0 var(--page-banner-bottom);
    background:
        linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
        url('../images/page-banner-safease.png') center / cover no-repeat;
}
.page-banner::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,210,26,.32);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
    max-width: 860px;
    margin: 18px 0 18px;
    color: var(--color-primary);
    font-size: clamp(36px, 3.6vw, 52px);
    line-height: 1.12;
}
.page-banner p {
    max-width: 680px;
    color: var(--color-text);
    font-size: 18px;
}

.policy-page {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--page-banner-top) - 28px);
    background:
        radial-gradient(circle at 12% 18%, rgba(169,138,189,.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255,202,25,.14), transparent 22%);
}
.policy-page__shell {
    display: grid;
    grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: start;
}
.policy-page__header {
    position: sticky;
    top: 132px;
    min-width: 0;
}
.policy-page__header .pill {
    margin-bottom: 18px;
}
.policy-page__header h1 {
    margin: 0 0 14px;
    color: var(--color-primary);
    font-size: clamp(38px, 3.6vw, 54px);
    line-height: 1.08;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
}
.policy-page__header p {
    max-width: 420px;
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-body);
    line-height: 1.65;
}
.policy-page__content {
    min-width: 0;
    padding: clamp(28px, 3vw, 44px);
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 24px 70px rgba(75,20,104,.09);
}
.policy-page__content p,
.policy-page__content li {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.78;
}
.policy-page__content p {
    margin: 0 0 18px;
}
.policy-page__content h2 {
    margin: 28px 0 10px;
    color: var(--color-primary);
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.18;
    font-weight: var(--font-weight-semibold);
}
.policy-page__content h2:first-child {
    margin-top: 0;
}
.policy-page__content ul {
    margin: 0 0 18px;
    padding-left: 20px;
}
.policy-page__content a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    overflow-wrap: anywhere;
}
.policy-content-section {
    padding-top: 18px;
}
.policy-content {
    max-width: 980px;
    padding: clamp(28px, 3vw, 44px);
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 24px 70px rgba(75,20,104,.08);
}
.policy-content p,
.policy-content li {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.78;
}
.policy-content p {
    margin: 0 0 18px;
}
.policy-content h2 {
    margin: 30px 0 10px;
    color: var(--color-primary);
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.18;
    font-weight: var(--font-weight-semibold);
}
.policy-content h2:first-child {
    margin-top: 0;
}
.policy-content ul {
    margin: 0 0 18px;
    padding-left: 20px;
}
.policy-content a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    overflow-wrap: anywhere;
}

.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--page-banner-top) - 38px) 0 34px;
    background:
        radial-gradient(circle at 10% 28%, rgba(169,138,189,.16), transparent 22%),
        radial-gradient(circle at 87% 12%, rgba(255,210,26,.16), transparent 18%),
        linear-gradient(180deg, rgba(251,244,255,.72), rgba(251,244,255,.18));
    isolation: isolate;
}
.about-page-hero::before {
    content: "";
    position: absolute;
    left: -86px;
    top: 118px;
    width: 260px;
    height: 260px;
    border-radius: var(--radius-circle);
    background: rgba(169,138,189,.12);
    pointer-events: none;
    z-index: -1;
}
.about-page-hero__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    gap: clamp(42px, 4.5vw, 64px);
    align-items: center;
}
.about-page-hero__shell::before {
    content: "";
    position: absolute;
    right: 38%;
    bottom: 24px;
    width: 144px;
    height: 64px;
    background: radial-gradient(circle, rgba(75,20,104,.18) 0 2px, transparent 3px);
    background-size: 18px 18px;
    opacity: .28;
    pointer-events: none;
}
.about-page-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    animation: aboutHeroReveal .72s var(--ease-premium) both;
}
.about-page-hero__content .pill {
    margin-bottom: 22px;
}
.about-page-hero__content h1 {
    max-width: 690px;
    margin: 0 0 18px;
    color: var(--color-primary);
    font-size: clamp(42px, 3.75vw, 56px);
    font-weight: var(--font-weight-bold);
    line-height: 1.08;
    letter-spacing: 0;
}
.about-page-hero__content p {
    max-width: 560px;
    margin: 0;
    color: var(--color-text);
    font-size: var(--font-size-body-lg);
    line-height: 1.75;
}
.about-page-hero__line {
    display: block;
    width: 132px;
    height: 4px;
    margin-top: 30px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--color-accent), rgba(169,138,189,.55), transparent);
    transform-origin: left;
    animation: aboutHeroLine .8s var(--ease-premium) .12s both;
}
.about-page-hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 430px;
    margin: 0;
    animation: aboutHeroImage .82s var(--ease-premium) .08s both;
}
.about-page-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center 34%;
    border-radius: 34% 66% 30% 70% / 58% 36% 64% 42%;
    box-shadow: 0 30px 76px rgba(75,20,104,.18);
    transition: transform var(--duration-slow) var(--ease-premium), box-shadow var(--duration-slow) var(--ease-premium);
}
.about-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: 16px 8px -10px 28px;
    border-radius: 34% 66% 30% 70% / 58% 36% 64% 42%;
    background: linear-gradient(135deg, rgba(223,243,251,.92), rgba(251,244,255,.48));
    pointer-events: none;
}
.about-page-hero__visual:hover img {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 34px 86px rgba(75,20,104,.2);
}
.about-page-hero__accent {
    position: absolute;
    right: -24px;
    top: 28px;
    width: 128px;
    height: 128px;
    border-radius: var(--radius-circle);
    background: rgba(255,202,25,.35);
    pointer-events: none;
}
.about-page-hero__transition {
    display: block;
    width: min(var(--container-max), calc(100% - var(--gutter-desktop)));
    height: 42px;
    margin: 0 auto;
    border-radius: 0 0 42px 42px;
    border-top: 1px solid rgba(75,20,104,.07);
    background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(251,244,255,0));
}
@keyframes aboutHeroReveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutHeroImage {
    from { opacity: 0; transform: translateY(20px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aboutHeroLine {
    from { opacity: 0; transform: scaleX(.25); }
    to { opacity: 1; transform: scaleX(1); }
}
@media (max-width: 1180px) {
    .about-page-hero__shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-page-hero__content h1 {
        max-width: 760px;
    }
    .about-page-hero__visual {
        width: min(820px, 100%);
        min-height: 390px;
        justify-self: center;
    }
    .about-page-hero__visual img {
        height: 390px;
        object-position: center 34%;
    }
}
@media (max-width: 720px) {
    .about-page-hero {
        padding: 118px 0 28px;
        background:
            radial-gradient(circle at 8% 24%, rgba(169,138,189,.13), transparent 30%),
            linear-gradient(180deg, rgba(251,244,255,.76), rgba(251,244,255,.2));
    }
    .about-page-hero::before {
        left: -94px;
        top: 118px;
        width: 180px;
        height: 180px;
    }
    .about-page-hero__shell {
        width: min(100% - 36px, var(--container-max));
        padding: 28px 0 0;
        border-radius: 30px;
        gap: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
        box-shadow: 0 22px 60px rgba(75,20,104,.11);
    }
    .about-page-hero__shell::before {
        right: 20px;
        bottom: 28px;
        width: 86px;
        height: 54px;
        opacity: .2;
    }
    .about-page-hero__content {
        padding: 0 18px 24px;
    }
    .about-page-hero__content .pill {
        margin-bottom: 18px;
    }
    .about-page-hero__content h1 {
        max-width: min(330px, 100%);
        margin-bottom: 16px;
        font-size: clamp(27px, 7.8vw, 32px);
        line-height: 1.16;
        overflow-wrap: anywhere;
    }
    .about-page-hero__content p {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.68;
    }
    .about-page-hero__line {
        width: 94px;
        margin-top: 22px;
    }
    .about-page-hero__visual {
        width: 100%;
        min-height: auto;
        padding: 0 12px 16px;
        overflow: hidden;
    }
    .about-page-hero__visual::before {
        inset: 12px 14px 4px;
        border-radius: 32px;
    }
    .about-page-hero__visual img {
        height: 276px;
        border-radius: 32px;
        object-position: 76% 30%;
        box-shadow: 0 20px 50px rgba(75,20,104,.13);
    }
    .about-page-hero__visual:hover img {
        transform: none;
    }
    .about-page-hero__accent {
        right: 14px;
        top: -12px;
        width: 74px;
        height: 74px;
        background: rgba(255,202,25,.24);
    }.about-page-hero__transition {
        width: min(100% - 36px, var(--container-max));
        height: 30px;
    }
}
@media (max-width: 390px) {
    .about-page-hero__visual img {
        object-position: 76% 30%;
    }
}
@media (max-width: 360px) {
    .about-page-hero {
        padding-top: 112px;
    }
    .about-page-hero__shell {
        width: min(100% - 32px, var(--container-max));
    }
    .about-page-hero__content {
        padding-inline: 16px;
    }
    .about-page-hero__content h1 {
        max-width: 100%;
        font-size: clamp(24px, 7.6vw, 28px);
    }
    .about-page-hero__content p {
        max-width: 288px;
    }
    .about-page-hero__visual {
        padding-inline: 10px;
    }
    .about-page-hero__visual img {
        height: 260px;
        object-position: 77% 30%;
    }.about-page-hero__transition {
        width: min(100% - 32px, var(--container-max));
    }
}
@media (max-width: 330px) {
    .about-page-hero__content h1 {
        max-width: 100%;
        font-size: 23px;
    }
    .about-page-hero__visual img {
        height: 244px;
        object-position: 78% 30%;
    }}
.two-column, .vision-grid, .contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; }
.content-card, .metric-card, .statement-card, .legal-card, .contact-details article, .contact-form, .login-card { padding: 42px; }
.about-story { display: grid; grid-template-columns: .42fr 1fr; gap: 30px; align-items: stretch; }
.about-metric { display: flex; flex-direction: column; justify-content: center; min-height: 360px; padding: 42px; border-radius: 30px; background: var(--color-primary); color: #fff; box-shadow: 0 22px 70px rgba(75,20,104,.16); }
.about-metric strong { color: var(--color-accent); font-size: clamp(58px, 6vw, 96px); line-height: .95; }
.about-metric span { margin: 18px 0 8px; font-size: 18px; font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.about-metric p { margin: 0; color: rgba(255,255,255,.78); }
.about-copy-card { padding: 46px; border-radius: 30px; background: #fff; box-shadow: 0 18px 54px rgba(75,20,104,.08); }
.about-copy-card h2 { margin: 18px 0 24px; color: var(--color-primary); font-size: clamp(28px, 2.8vw, 42px); }
.about-photo-break { padding: 18px 0 64px; }
.photo-break-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.photo-break-copy h2 { margin: 18px 0 16px; color: var(--color-primary); font-size: clamp(28px, 2.8vw, 42px); }
.photo-break-copy p { max-width: 560px; color: var(--color-muted); font-size: 18px; }
.photo-stack { position: relative; min-height: 430px; }
.photo-stack figure { margin: 0; background-size: cover; background-position: center; box-shadow: 0 24px 70px rgba(75,20,104,.14); }
.photo-main { position: absolute; inset: 0 96px 54px 0; border-radius: 34px; background-image: linear-gradient(rgba(75,20,104,.04), rgba(75,20,104,.04)), url('../images/about-lifestyle-main.png'); background-position: center 18%; background-size: cover; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 42%; height: 230px; border: 10px solid #fff; border-radius: 28px; background-image: url('../images/about-lifestyle-small.png'); background-position: center 28%; background-size: cover; }
.about-feature-section { padding-top: 24px; }
.about-tech-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.about-tech-image { position: relative; min-height: 520px; border-radius: 34px; background: linear-gradient(rgba(255,255,255,.04), rgba(75,20,104,.06)), url('../images/about-tech-product-bg.png') center / cover no-repeat; overflow: hidden; }
.about-tech-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(75,20,104,.08)); }
.about-tech-image span { position: absolute; z-index: 2; left: 28px; bottom: 28px; padding: 10px 16px; border-radius: var(--radius-pill); background: rgba(255,210,26,.92); color: var(--color-text); font-weight: var(--font-weight-semibold); }
.about-tech-copy h2 { margin: 18px 0 16px; color: var(--color-primary); font-size: clamp(28px, 2.9vw, 44px); }
.about-tech-copy > p { max-width: 720px; color: var(--color-muted); font-size: 18px; }
.about-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.about-benefits article { padding: 28px; border-radius: 24px; background: #fff8d8; }
.about-benefits h3 { margin-bottom: 10px; color: var(--color-primary); font-size: 24px; }
.about-capabilities { padding-top: 0; }
.capability-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding: 28px; border-radius: 28px; background: #fff; box-shadow: 0 18px 54px rgba(75,20,104,.07); }
.capability-strip span { display: inline-flex; align-items: center; min-height: 52px; padding: 0 22px; border: 1px solid rgba(75,20,104,.12); border-radius: var(--radius-pill); background: #fff; color: var(--color-primary); font-size: 17px; font-weight: var(--font-weight-semibold); text-align: center; }
.capability-strip span::before { content: ""; width: 9px; height: 9px; margin-right: 10px; border-radius: 50%; background: var(--color-accent); }
.metric-card { display: grid; place-items: center; text-align: center; background: var(--color-accent); color: var(--color-primary); }
.metric-card strong { font-size: 72px; line-height: 1; }
.metric-card span { font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.benefit-grid, .product-catalog { display: grid; grid-template-columns: repeat(2, 1fr); gap: 46px 34px; }
.product-feature-section { padding-bottom: 28px; }
.product-feature-panel { display: grid; grid-template-columns: 1.1fr .65fr; gap: 34px; align-items: center; padding: 46px; border-radius: 34px; background: linear-gradient(135deg, var(--color-primary), #783094); color: #fff; overflow: hidden; }
.product-feature-panel h2 { margin: 18px 0 16px; color: #fff; font-size: clamp(30px, 3vw, 46px); }
.product-feature-panel p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; }
.product-feature-panel .pill { border-color: rgba(255,255,255,.5); color: #fff; }
.product-feature-panel img { width: min(360px, 100%); justify-self: center; padding: 10px; border-radius: 30px; background: rgba(255,255,255,.9); filter: drop-shadow(0 26px 34px rgba(0,0,0,.18)); }
.benefit-grid article { padding: 34px; }
.statement-card span { color: var(--color-primary); font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.values-section { padding-top: 24px; padding-bottom: 72px; }
.vision-mission-story { overflow: hidden; }
.vision-mission-story .container { position: relative; }
.vision-mission-story .container::before,
.vision-mission-story .container::after {
    content: "";
    display: block;
    width: min(1120px, 100%);
    height: 52px;
    margin: 0 auto 34px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, rgba(255,248,216,.54), rgba(251,244,255,.86), rgba(223,243,251,.58));
    opacity: .72;
}
.vision-mission-story .container::after {
    height: 62px;
    margin: 52px auto 0;
    opacity: .5;
}
.vision-mission-story__surface {
    position: relative;
    padding: clamp(38px, 5vw, 64px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,210,26,.12), transparent 24%),
        radial-gradient(circle at 78% 74%, rgba(223,243,251,.66), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.78) 55%, rgba(255,248,216,.42));
    box-shadow: var(--shadow-panel);
    overflow: hidden;
}
.vision-mission-story__surface::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255,255,255,.84);
    border-radius: var(--radius-xl);
    pointer-events: none;
}
.vision-mission-story__direction {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(220px, .38fr);
    gap: var(--space-8);
    align-items: end;
    padding-bottom: var(--space-8);
}
.vision-mission-story__direction::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(75,20,104,.18), rgba(255,210,26,.42), transparent);
}
.vision-mission-story__direction h2 {
    max-width: 790px;
    margin: 18px 0 0;
    color: var(--color-primary);
    font-size: clamp(34px, 3.35vw, 48px);
    line-height: 1.12;
    font-weight: var(--font-weight-bold);
}
.vision-mission-story__orbit {
    position: relative;
    display: block;
    min-height: 150px;
    pointer-events: none;
}
.vision-mission-story__orbit::before,
.vision-mission-story__orbit::after {
    content: "";
    position: absolute;
    border-radius: var(--radius-circle);
}
.vision-mission-story__orbit::before {
    right: 28px;
    bottom: 0;
    width: 142px;
    height: 142px;
    background: radial-gradient(circle, rgba(255,210,26,.94) 0 30%, rgba(255,248,216,.72) 31% 100%);
    box-shadow: 0 22px 52px rgba(255,210,26,.2);
}
.vision-mission-story__orbit::after {
    top: 6px;
    right: 0;
    width: 78px;
    height: 78px;
    background: rgba(223,243,251,.84);
}
.vision-mission-story__panels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    padding: 44px 0 34px;
}
.vision-mission-story__connector {
    position: relative;
    align-self: center;
    height: 220px;
    pointer-events: none;
}
.vision-mission-story__connector::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(var(--color-accent), rgba(75,20,104,.26), var(--color-surface-blue));
}
.vision-mission-story__connector span {
    position: absolute;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 4px solid var(--color-accent);
    border-radius: var(--radius-circle);
    background: var(--color-surface);
    box-shadow: 0 0 0 10px rgba(255,210,26,.12);
    transform: translateX(-50%);
}
.vision-mission-story__connector span:first-child { top: 22px; }
.vision-mission-story__connector span:last-child { bottom: 22px; border-color: var(--color-primary); box-shadow: 0 0 0 10px rgba(75,20,104,.09); }
.vision-mission-story__panel {
    position: relative;
    min-width: 0;
    padding: 34px 34px 32px;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 48px rgba(75,20,104,.08);
    overflow: hidden;
    transition: transform var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium);
}
.vision-mission-story__panel:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(75,20,104,.1); }
.vision-mission-story__panel::before {
    content: "";
    position: absolute;
    right: -88px;
    bottom: -92px;
    width: 190px;
    height: 190px;
    border-radius: var(--radius-circle);
    background: rgba(255,248,216,.9);
    pointer-events: none;
}
.vision-mission-story__panel--mission::before { background: rgba(223,243,251,.8); }
.vision-mission-story__panel::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(75,20,104,.16);
    border-radius: var(--radius-circle);
    background:
        linear-gradient(90deg, transparent 46%, rgba(75,20,104,.34) 47% 53%, transparent 54%),
        linear-gradient(0deg, transparent 46%, rgba(75,20,104,.34) 47% 53%, transparent 54%);
    opacity: .42;
    pointer-events: none;
}
.vision-mission-story__panel > span,
.vision-mission-story__panel h3,
.vision-mission-story__panel p {
    position: relative;
    z-index: 1;
}
.vision-mission-story__panel > span {
    display: block;
    color: var(--color-primary);
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}
.vision-mission-story__panel h3 {
    max-width: 430px;
    margin: 15px 0 18px;
    color: var(--color-text);
    font-size: clamp(26px, 2.35vw, 36px);
    line-height: 1.16;
    font-weight: var(--font-weight-bold);
}
.vision-mission-story__panel p {
    max-width: 430px;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.66;
}
.vision-mission-story__principles {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 0 0 1px rgba(75,20,104,.1);
    list-style: none;
}
.vision-mission-story__principles li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 18px 20px;
    border-right: 1px solid rgba(75,20,104,.1);
    color: var(--color-primary-dark);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
}
.vision-mission-story__principles li:last-child { border-right: 0; }
.vision-mission-story__principles li::before {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    background: var(--color-accent);
    box-shadow: 0 0 0 7px rgba(255,210,26,.14);
}
.catalog-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 0; border: 0; background: transparent; box-shadow: none; overflow: visible; }
.catalog-card::before { display: none; }
.catalog-card img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover; border-radius: 28px; background: linear-gradient(135deg, #dff3fb, #fff8d8); padding: 0; box-shadow: 0 18px 48px rgba(75,20,104,.08); }
.catalog-card > div { display: flex; flex-direction: column; flex: 1; padding: 22px 4px 0; }
.catalog-card h2 { margin: 8px 0 10px; color: var(--color-text); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.12; }
.catalog-card p { margin-bottom: 0; color: var(--color-muted); }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: var(--space-4); }
.price del { color: var(--color-muted); font-size: 15px; }
.price strong { color: var(--color-primary); font-size: 20px; line-height: 1; }
.legal-stack { display: grid; gap: 24px; }
.legal-intro { max-width: 860px; }
.legal-intro h2 { margin: 18px 0 12px; color: var(--color-primary); font-size: clamp(30px, 3vw, 44px); }
.legal-doc-section { padding-top: 72px; padding-bottom: 72px; }
.legal-doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.legal-doc-card { display: flex; flex-direction: column; min-height: 100%; padding: 16px; border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 18px 50px rgba(75,20,104,.06); transition: transform var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard), border-color var(--duration-standard) var(--ease-standard); }
.legal-doc-card:hover { transform: translateY(-5px); border-color: rgba(75,20,104,.18); box-shadow: 0 26px 70px rgba(75,20,104,.1); }
.legal-preview { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; padding: 0; border: 0; border-radius: 18px; background: linear-gradient(135deg, #f7fbff, #fff6cf); cursor: pointer; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(75,20,104,.06); }
.legal-preview span, .legal-preview strong, .legal-preview em { display: none; }
.legal-preview img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 18px; }
.legal-doc-copy { display: flex; flex-direction: column; flex: 1; padding: 18px 4px 2px; }
.verified { display: inline-flex; align-items: center; min-height: 30px; padding: 0 14px; border-radius: var(--radius-pill); background: rgba(67,143,118,.12); color: var(--color-green-dark); font-size: var(--font-size-eyebrow); font-weight: var(--font-weight-semibold); text-transform: uppercase; }
.legal-doc-copy h2 { margin: 0 0 8px; color: var(--color-primary); font-size: 22px; line-height: 1.2; }
.legal-doc-copy p { margin: 0 0 20px; color: var(--color-muted); font-size: 15px; line-height: 1.55; }
.preview-button { align-self: flex-start; margin-top: auto; min-height: 38px; padding: 0 0 2px; border: 0; border-radius: 0; background: transparent; color: var(--color-primary); font-weight: var(--font-weight-semibold); cursor: pointer; box-shadow: inset 0 -2px 0 var(--color-accent); }
.doc-lightbox { position: fixed; inset: 0; z-index: var(--z-modal); display: none; place-items: center; padding: 36px; background: rgba(22, 14, 28, .78); }
.doc-lightbox.open { display: grid; }
.doc-lightbox figure { width: min(820px, 88vw); max-height: 88vh; margin: 0; text-align: center; }
.doc-lightbox img { max-width: 100%; max-height: 78vh; border-radius: var(--radius-sm); background: #fff; box-shadow: var(--shadow-modal); }
.doc-lightbox figcaption { margin-top: 16px; color: #fff; font-weight: var(--font-weight-semibold); }
.doc-lightbox-close, .doc-lightbox-nav { position: absolute; display: grid; place-items: center; border: 0; border-radius: 50%; background: #fff; color: var(--color-primary); cursor: pointer; }
.doc-lightbox-close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 28px; }
.doc-lightbox-nav { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); font-size: 34px; }
.doc-lightbox-nav.previous { left: 28px; }
.doc-lightbox-nav.next { right: 28px; }
.legal-note-section { padding-top: 12px; }
.legal-note { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 28px; border-radius: 24px; background: var(--color-primary); color: #fff; }
.legal-note strong { color: var(--color-accent); }
.legal-note p { margin: 0; color: rgba(255,255,255,.78); }
.contact-premium { display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; align-items: start; }
.contact-lead { position: sticky; top: 140px; padding-top: 12px; }
.contact-lead h2 { margin-top: 18px; max-width: 470px; color: var(--color-text); font-size: clamp(30px, 2.35vw, 42px); font-weight: var(--font-weight-semibold); line-height: 1.18; }
.contact-list { display: grid; gap: 0; border-top: 1px solid rgba(75,20,104,.14); }
.contact-list article { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; padding: 30px 0; border-bottom: 1px solid rgba(75,20,104,.14); }
.contact-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: rgba(255,202,19,.88); color: var(--color-primary); box-shadow: 0 12px 26px rgba(255,202,19,.18); }
.contact-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-list span:not(.contact-icon) { color: var(--color-muted); font-size: 12px; font-weight: var(--font-weight-semibold); letter-spacing: .03em; text-transform: uppercase; }
.contact-list h2 { margin: 7px 0 10px; color: var(--color-text); font-size: clamp(21px, 1.45vw, 27px); font-weight: var(--font-weight-semibold); line-height: 1.2; }
.contact-list p { max-width: 640px; margin: 0; color: var(--color-muted); font-size: 15px; line-height: 1.7; }
.contact-form label, .login-card label { display: grid; gap: 8px; margin: 18px 0; color: var(--color-primary); font-weight: var(--font-weight-semibold); }
input, textarea { width: 100%; min-height: 48px; border: 1px solid rgba(31,38,47,.16); border-radius: var(--radius-xs); padding: 11px 15px; background: #fff; color: var(--color-text); font: inherit; outline: none; transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard); }
select { width: 100%; min-height: 48px; border: 1px solid rgba(31,38,47,.16); border-radius: var(--radius-xs); padding: 11px 15px; background: #fff; color: var(--color-text); font: inherit; outline: none; transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard); }
input:focus, textarea:focus, select:focus { border-color: rgba(75,20,104,.42); box-shadow: var(--focus-ring); }
.grievance-section { padding-top: 76px; }
.grievance-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 54px; align-items: start; }
.grievance-info { position: sticky; top: 140px; padding-top: 8px; color: var(--color-text); }
.grievance-info h2 { margin: 18px 0 34px; max-width: 520px; color: var(--color-text); font-size: clamp(30px, 2.7vw, 46px); font-weight: var(--font-weight-semibold); line-height: 1.15; }
.grievance-contact { display: grid; gap: 16px; }
.grievance-contact article { padding: 20px 0; border-top: 1px solid rgba(75,20,104,.16); }
.grievance-contact span { display: block; margin-bottom: 6px; color: var(--color-muted); font-size: 12px; font-weight: var(--font-weight-semibold); letter-spacing: .03em; text-transform: uppercase; }
.grievance-contact a { color: var(--color-text); font-size: 19px; font-weight: var(--font-weight-semibold); }
.grievance-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 24px; padding: 0 0 0 38px; border-left: 1px solid rgba(31,38,47,.12); background: transparent; box-shadow: none; }
.form-row { display: grid; gap: 7px; }
.form-row.full, .grievance-form .button, .form-alert { grid-column: 1 / -1; }
.form-row label { color: var(--color-text); font-size: 14px; font-weight: var(--font-weight-semibold); }
.form-row label span { color: #c4235a; }
.form-row small { color: #c4235a; font-size: 12px; font-weight: var(--font-weight-semibold); }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 13px; border: 1px solid rgba(31,38,47,.12); border-radius: var(--radius-pill); background: #fff; color: var(--color-text); font-size: 13px; font-weight: var(--font-weight-medium); }
.radio-group input { width: auto; min-height: auto; }
.grievance-form .button { justify-self: start; min-width: 230px; margin-top: 2px; }
.grievance-section .pill { font-weight: var(--font-weight-semibold); }
.grievance-form .button { font-weight: var(--font-weight-bold); letter-spacing: .01em; }
.form-alert { padding: 16px 18px; border-radius: var(--radius-sm); font-weight: var(--font-weight-semibold); }
.form-alert-success { background: rgba(67,143,118,.12); color: var(--color-green-dark); }
.form-alert-error { background: rgba(196,35,90,.1); color: #9d174d; }
.login-section { display: grid; place-items: center; min-height: 680px; padding: 110px 24px; }
.login-card { width: min(520px, 100%); max-width: 100%; min-width: 0; }
.muted-link { display: inline-block; margin-top: 20px; color: var(--color-primary-soft); }
button:focus-visible,
a:focus-visible,
.legal-preview:focus-visible,
.preview-button:focus-visible,
.slider-control:focus-visible,
.doc-lightbox-close:focus-visible,
.doc-lightbox-nav:focus-visible,
.menu-toggle:focus-visible {
    outline: 0;
    box-shadow: var(--focus-ring);
}
@media (max-width: 1180px) {
    .testimonial-band { grid-template-columns: 1fr; align-items: stretch; }
    .testimonial-band::after,
    .testimonial-heading::after { display: none; }
    .testimonial-heading { padding-top: 0; }
    .testimonial-heading h2 { max-width: 640px; }
    .testimonial-heading p { max-width: 620px; }
    .testimonial-supporting { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .testimonials { padding-top: 44px; }
    .testimonial-shell { width: calc(100% - 36px); }
    .testimonial-band { gap: 16px; width: 100%; padding: 22px 20px; border-radius: 26px; }
    .testimonial-band::before { right: -160px; bottom: -130px; opacity: .55; }
    .testimonial-heading .pill { min-height: 27px; padding-inline: 20px; font-size: 11px; }
    .testimonial-heading h2 { max-width: 300px; margin: 16px 0 12px; font-size: 28px; line-height: 1.14; }
    .testimonial-heading p { max-width: 290px; font-size: 14px; line-height: 1.62; }
    .testimonial-featured { width: 100%; padding: 24px 22px; border-radius: 23px; }
    .testimonial-quote-motif { right: 18px; top: -4px; font-size: 80px; }
    .testimonial-featured::after { right: -70px; bottom: -70px; opacity: .7; }
    .testimonial-kicker { margin-bottom: 14px; }
    .testimonial-featured blockquote p { max-width: 100%; margin-bottom: 20px; font-size: 18px; line-height: 1.58; overflow-wrap: break-word; }
    .testimonial-identity { padding-top: 18px; }
    .testimonial-initial-featured { width: 48px; height: 48px; }
    .testimonial-identity cite { min-width: 0; font-size: 15px; overflow-wrap: break-word; }
    .testimonial-supporting { grid-template-columns: 1fr; gap: 15px; }
    .testimonial-support-card { width: 100%; padding: 20px 18px 18px; border-radius: 20px; }
    .testimonial-support-card::before { top: 20px; height: 46px; }
    .testimonial-support-card blockquote p { max-width: 100%; margin-bottom: 18px; font-size: 15px; line-height: 1.58; overflow-wrap: break-word; }
    .testimonial-identity-support .testimonial-initial { width: 42px; height: 42px; }
    .testimonial-identity-support cite { font-size: 14px; }
    }
@media (max-width: 1100px) {
    .site-header { padding-inline: 14px; }
    .header-shell { gap: var(--space-4); }
    .menu-toggle { display: block; margin-left: auto; flex: 0 0 auto; }
    .main-nav { position: absolute; top: calc(100% + 12px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 8px; max-height: calc(100vh - 128px); overflow-y: auto; padding: 18px; border-radius: var(--radius-md); background: rgba(255,255,255,.96); box-shadow: var(--shadow-panel); backdrop-filter: blur(18px) saturate(1.18); -webkit-backdrop-filter: blur(18px) saturate(1.18); }
    .main-nav.open { display: flex; }
    .main-nav a { min-height: 46px; padding: 0 16px; border-radius: var(--radius-sm); }
    .main-nav a::before { left: 16px; right: auto; bottom: 9px; width: 28px; transform-origin: left; }
    .main-nav a:hover,
    .main-nav a.active,
    .main-nav a[aria-current="page"] { background: rgba(75,20,104,.05); }
    .main-nav .login-link { justify-content: center; margin-top: 6px; min-height: 48px; }
    .trust-strip, .trust-band, .trust-metrics, .product-showcase, .home-product-grid, .product-feature-panel, .yellow-panel, .green-panel, .safety-grid, .two-column, .about-story, .photo-break-grid, .about-tech-panel, .vision-grid, .legal-doc-grid, .legal-note, .contact-grid, .contact-premium, .grievance-layout, .footer-grid { grid-template-columns: 1fr; }
    .vision-mission-story__direction,
    .vision-mission-story__panels {
        grid-template-columns: minmax(0, 1fr);
    }
    .vision-mission-story__orbit,
    .vision-mission-story__connector {
        display: none;
    }
    .vision-mission-story__panels {
        gap: 18px;
    }
    .vision-mission-story__principles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .vision-mission-story__principles li {
        border-bottom: 1px solid rgba(75,20,104,.1);
    }
    .vision-mission-story__principles li:nth-child(3n),
    .vision-mission-story__principles li:last-child {
        border-right: 0;
    }
    .vision-mission-story__principles li:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
    .trust-dashboard { margin-top: -24px; }
    .trust-band { gap: 24px; }
    .trust-copy { max-width: 680px; }
    .trust-product { width: min(360px, 100%); min-height: 0; }
    .trust-metrics { grid-template-columns: repeat(3, 1fr); }
    .trust-metrics article { grid-template-columns: 1fr; min-height: 148px; align-content: start; }
    .trust-metrics span,
    .trust-metrics strong,
    .trust-metrics p { grid-column: 1; }
    .trust-metrics strong { grid-row: auto; }
    .home-product-families { grid-template-columns: 1fr; }
    .home-product-family { padding: 28px; }
    .family-product-stage { min-height: 0; }
    .family-option-row { grid-template-columns: 70px minmax(100px, .46fr) 1fr 34px; }
    .safety-panel { display: grid; gap: 30px; min-height: auto; padding: 40px; }
    .safety-copy { width: min(760px, 100%); }
    .safety-composition { grid-template-columns: 1fr; gap: 22px; }
    .safety-stage { order: 1; position: relative; left: auto; top: auto; justify-self: center; width: min(390px, 78vw); transform: none; animation: familyReveal .72s var(--ease-premium) both; }
    .safety-connectors { display: none; }
    .safety-points { position: relative; inset: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .safety-points-left { order: 2; }
    .safety-points-right { order: 3; }
    .safety-point { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: 100%; min-height: 152px; }
    .legal-doc-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-lead, .grievance-info { position: static; }
    .green-panel { padding: 42px; }
    .footer-grid { grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr); gap: 34px 52px; }
    .footer-contact { grid-column: 2; grid-row: 1 / span 2; }
    .footer-bottom { flex-wrap: wrap; }
    .footer-policy-links { flex: 1 1 100%; justify-content: flex-start; margin-left: 0; }
}
@media (max-width: 720px) {
    .container { width: min(100% - var(--gutter-mobile), var(--container-max)); }
    .site-header { padding: 10px 10px 0; }
    .site-header.is-scrolled { padding-top: 8px; }
    .header-shell { padding: 12px 14px; border-radius: 22px; }
    .brand img { width: clamp(128px, 38vw, 146px); }
    .main-nav { left: 6px; right: 6px; max-height: calc(100vh - 106px); }
    .home-slider { width: 100%; }
    .slider-frame { min-height: 560px; }
    .slide { padding: 118px 26px 86px; }
    .slide::before { background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.8) 58%, rgba(255,255,255,.18) 100%); }
    .slide-image { object-position: 58% top; }
    .slide-copy { width: min(100%, 520px); }
    .slide-copy p { font-size: 15px; line-height: 1.6; }
    .slide-copy .button { min-height: 48px; width: auto; max-width: 100%; }
    .slider-control { top: auto; bottom: 28px; width: 44px; height: 44px; opacity: 1; pointer-events: auto; }
    .slider-control.previous { left: 18px; }
    .slider-control.next { right: 18px; }
    .slider-dots { bottom: 32px; }
    h1 { font-size: 44px; }
    .trust-strip { gap: 16px; padding: 24px; }
    .trust-dashboard { margin-top: 0; padding-bottom: var(--section-space-mobile); }
    .trust-band { padding: 24px; border-radius: 28px; }
    .trust-copy h2 { font-size: clamp(26px, 9vw, 36px); }
    .trust-product { width: min(280px, 100%); min-height: 0; border-radius: 26px; }
    .trust-product img { width: 100%; height: 100%; }
    .trust-metrics { grid-template-columns: 1fr; }
    .trust-metrics article { min-height: auto; padding: 18px 20px; border-radius: 22px; }
    .round-badge { width: 88px; height: 88px; }
    .section { padding: var(--section-space-mobile) 0; }
    .split-heading { align-items: start; flex-direction: column; }
    .products-preview { padding-top: 58px; }
    .products-preview::before { width: 42px; height: 42px; top: 82px; opacity: .34; }
    .products-preview::after { width: 54px; height: 54px; top: 28px; opacity: .3; }
    .products-preview .section-heading { align-items: center; text-align: center; gap: 18px; margin-bottom: 30px; }
    .products-preview .section-heading h2 { font-size: clamp(38px, 12vw, 48px); }
    .products-preview .section-heading p { max-width: 320px; margin-inline: auto; font-size: 15px; }
    .product-preview-cta { align-self: center; width: max-content; max-width: 100%; min-height: 50px; padding-inline: 28px; }
    .home-product-families { gap: 30px; }
    .home-product-family { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
    .home-product-family::before,
    .home-product-family::after,
    .home-product-family h3::before,
    .home-product-family h3::after { display: none; }
    .home-product-family h3 { margin-bottom: 16px; font-size: clamp(30px, 9vw, 38px); }
    .family-product-stage { min-height: 0; margin-bottom: 0; border-radius: 30px; }
    .family-product-stage img { width: 100%; height: 100%; max-height: none; }
    .family-options { gap: 10px; margin-top: -14px; }
    .family-option-row { grid-template-columns: 52px 1fr 34px; gap: 12px; min-height: 78px; padding: 14px; border-radius: 17px; }
    .family-option-row strong,
    .family-option-row em { grid-column: 2; }
    .family-option-row strong { font-size: 18px; }
    .family-option-row em { font-size: 14px; }
    .family-option-row i { grid-column: 3; grid-row: 1 / span 2; }
    .option-count { grid-column: 1; grid-row: 1 / span 2; min-width: 42px; min-height: 42px; padding: 0; font-size: 0; border-radius: 14px; }
    .option-count::after { content: ""; width: 22px; height: 22px; border: 2px solid currentColor; border-radius: 6px; box-shadow: 5px -5px 0 -2px currentColor; opacity: .9; }
    .opportunity-section { padding-top: 54px; }
    .opportunity-card h2 { font-size: clamp(32px, 9.8vw, 42px); }
    .opportunity-card p { font-size: 16px; }
    .opportunity-card .button-yellow { width: max-content; max-width: 100%; min-height: 52px; padding-inline: 28px; }
    .safety-section { padding-top: 54px; padding-bottom: 58px; }
    .safety-panel { gap: 22px; padding: 24px; border-radius: 28px; }
    .safety-panel::before { inset: 12px; border-radius: 22px; }
    .safety-copy { text-align: left; }
    .safety-copy .pill { margin-bottom: 14px; }
    .safety-copy h2 { max-width: 340px; margin-bottom: 14px; font-size: clamp(31px, 9.6vw, 40px); line-height: 1.08; }
    .safety-copy p { max-width: none; font-size: 15px; line-height: 1.65; }
    .safety-composition { display: grid; grid-template-columns: 1fr; gap: 12px; }
    .safety-stage { order: 1; width: min(300px, 82vw); border-radius: 30px; }
    .safety-stage img { width: min(218px, 70%); }
    .safety-stage-orbit-one { width: 78%; height: 78%; }
    .safety-stage-orbit-two { width: 72px; height: 72px; }
    .safety-points { display: contents; }
    .point-dioxin { order: 2; }
    .point-odour { order: 3; }
    .point-absorption { order: 4; }
    .point-absorbency { order: 5; }
    .safety-point { grid-template-columns: 52px minmax(74px, auto) 1fr; gap: 0 14px; min-height: 116px; padding: 16px; border-radius: 20px; }
    .safety-icon { grid-column: 1; grid-row: 1 / span 2; width: 48px; height: 48px; border-radius: 16px; }
    .safety-icon svg { width: 28px; height: 28px; }
    .safety-point strong { grid-column: 2; grid-row: 1 / span 2; align-self: center; min-width: 70px; font-size: 27px; }
    .safety-point h3 { grid-column: 3; margin: 0 0 4px; font-size: 17px; }
    .safety-point p { grid-column: 3; font-size: 13px; line-height: 1.48; }
    .product-photo, .product-photo img { min-height: 300px; }
    .mini-grid, .benefit-grid, .product-catalog, .about-benefits, .testimonial-band, .safety-points, .legal-doc-grid { grid-template-columns: 1fr; }
    .values-section { padding-top: 18px; padding-bottom: 54px; }
    .vision-mission-story .container { width: calc(100% - 34px); }
    .vision-mission-story .container::before {
        width: 100%;
        height: 32px;
        margin-bottom: 18px;
    }
    .vision-mission-story .container::after {
        width: 100%;
        height: 52px;
        margin-top: 38px;
    }
    .vision-mission-story__surface {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
    .vision-mission-story__surface::before {
        inset: 12px;
        border-radius: var(--radius-md);
    }
    .vision-mission-story__direction {
        display: block;
        padding-bottom: 28px;
    }
    .vision-mission-story__direction h2 {
        max-width: 100%;
        margin-top: 16px;
        font-size: clamp(28px, 7.7vw, 32px);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }
    .vision-mission-story__panels {
        padding: 28px 0 24px;
        gap: 16px;
    }
    .vision-mission-story__panel {
        padding: 24px 20px 26px;
        border-radius: var(--radius-md);
    }
    .vision-mission-story__panel::after {
        top: 22px;
        right: 18px;
        width: 34px;
        height: 34px;
    }
    .vision-mission-story__panel h3 {
        max-width: 100%;
        margin: 13px 0 14px;
        font-size: clamp(24px, 6.4vw, 27px);
        line-height: 1.18;
        overflow-wrap: anywhere;
    }
    .vision-mission-story__panel p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.62;
    }
    .vision-mission-story__principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 22px;
    }
    .vision-mission-story__principles li {
        min-height: 62px;
        padding: 15px 14px;
        gap: 10px;
        border-right: 1px solid rgba(75,20,104,.1);
        border-bottom: 1px solid rgba(75,20,104,.1);
        font-size: 13px;
    }
    .vision-mission-story__principles li:nth-child(2n) {
        border-right: 0;
    }
    .vision-mission-story__principles li:nth-child(3) {
        border-right: 1px solid rgba(75,20,104,.1);
    }
    .vision-mission-story__principles li:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(75,20,104,.1);
    }
    .vision-mission-story__principles li:last-child {
        grid-column: 1 / -1;
        justify-content: center;
        border-right: 0;
        border-bottom: 0;
    }
    .contact-list article { grid-template-columns: 52px 1fr; gap: 16px; padding: 24px 0; }
    .contact-icon { width: 48px; height: 48px; border-radius: 15px; }
    .grievance-form { grid-template-columns: 1fr; padding: 0; border-left: 0; }
    .grievance-form .button { justify-self: stretch; }

    .site-footer { margin-top: 38px; padding: 58px 0 22px; }
    .site-footer::before { height: 58px; clip-path: ellipse(82% 70% at 50% 0%); }
    .site-footer::after, .footer-orb-two { display: none; }
    .footer-soft-line { top: 60px; }
    .footer-inner { width: min(100% - var(--gutter-mobile), var(--container-max)); }
    .footer-cta { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; padding: 18px; border-radius: 24px; }
    .footer-cta-label { margin-bottom: 8px; padding: 5px 15px; }
    .footer-cta h2 { max-width: 290px; font-size: 23px; line-height: 1.18; }
    .footer-actions { justify-content: flex-start; gap: 10px; }
    .footer-action { min-height: 44px; padding: 0 16px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 23px; }
    .footer-grid::before { left: -20%; top: 28%; width: 220px; height: 82px; }
    .footer-contact { grid-column: auto; grid-row: auto; }
    .footer-brand img { width: 174px; margin-bottom: 16px; }
    .footer-brand p { max-width: 340px; font-size: 14px; line-height: 1.65; }
    .footer-links h3, .footer-contact h3 { margin-bottom: 12px; font-size: 17px; }
    .footer-links a { margin-bottom: 10px; font-size: 14px; }
    .footer-contact-row { grid-template-columns: 38px minmax(0, 1fr); gap: 10px; margin-bottom: 14px; }
    .footer-contact-icon { width: 38px; height: 38px; border-radius: 13px; }
    .footer-contact p span { font-size: 11px; }
    .footer-contact a { font-size: 14px; }
    .footer-bottom { margin-top: 20px; padding-top: 16px; font-size: 12px; }
    .footer-policy-links { gap: 10px 14px; }
    .footer-policy-links a { font-size: 12px; }
    .site-header .header-shell { width: 100%; max-width: 100%; min-width: 0; }
    .site-header .menu-toggle { display: block; margin-left: auto; flex: 0 0 auto; }
    .site-header .main-nav { display: none; }
    .site-header .main-nav.open { display: flex; }
    .page-banner { padding: 132px 0 54px; }
    .page-banner h1 { font-size: 34px; }
    .about-metric,
    .about-copy-card,
    .about-tech-panel {
        min-width: 0;
        overflow-wrap: anywhere;
    }
    .about-metric {
        padding: 30px 24px;
        min-height: 280px;
    }
    .about-metric strong {
        font-size: clamp(42px, 15vw, 62px);
    }
    .about-copy-card {
        padding: 30px 24px;
    }
    .about-copy-card h2,
    .photo-break-copy h2,
    .about-tech-copy h2 {
        font-size: clamp(24px, 7.4vw, 32px);
        line-height: 1.16;
        overflow-wrap: anywhere;
    }
    .photo-stack { min-height: 340px; }
    .photo-main { inset: 0 42px 58px 0; }
    .photo-small { width: 56%; height: 170px; }
}

/* Normalization layer */
:where(p, li, a, label, input, textarea, select, dd) { font-weight: var(--font-weight-regular); }
:where(.main-nav a, .pill, .button, .login-link, .form-row label, .contact-list span:not(.contact-icon), .grievance-contact span, .product-list span, .catalog-card span, .home-product-card span, .statement-card span, .metric-card span, .preview-button, .verified) { font-weight: var(--font-weight-semibold); }
:where(h1, h1 strong, .trust-metrics strong, .round-badge, .journey-steps strong, .stats-list strong, .safety-points strong, .price strong, .metric-card strong) { font-weight: var(--font-weight-bold); }
:where(h2, h3, .page-banner h1, .trust-copy h2, .testimonial-heading h2, .about-copy-card h2, .photo-break-copy h2, .about-tech-copy h2, .product-feature-panel h2) { font-weight: var(--font-weight-semibold); }
:where(p, li, label, input, textarea, select) { color: var(--color-text); }
:where(.section p, .content-card p, .catalog-card p, .home-product-card p, .legal-doc-copy p, .contact-list p, .grievance-contact span) { color: var(--color-muted); }
:where(.content-card h2, .about-copy-card h2, .photo-break-copy h2, .about-tech-copy h2, .about-benefits h3, .safety-copy h2, .testimonial-heading h2, .statement-card h2, .catalog-card h2, .legal-doc-copy h2, .contact-lead h2, .contact-list h2, .grievance-info h2, .preview-button) { color: var(--color-text); }
:where(.trust-metrics span, .home-product-card span, .product-list span, .catalog-card span, .about-metric span, .metric-card span, .statement-card span, .contact-list span:not(.contact-icon), .muted-link) { color: var(--color-muted); }
:where(.main-nav a.active, .pill, .login-link, .button-yellow, h1, .page-banner h1, .slide-copy h1, .slider-control, .contact-icon, .product-list i) { color: var(--color-primary); }

html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Contact page premium implementation */
.contact-page {
    position: relative;
    overflow: hidden;
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    background:
        radial-gradient(circle at 10% 18%, rgba(169,138,189,.18), transparent 30%),
        radial-gradient(circle at 86% 42%, rgba(255,202,25,.12), transparent 28%),
        linear-gradient(180deg, #fbf4ff 0%, rgba(255,255,255,.78) 48%, #fbf4ff 100%);
}
.contact-page-hero {
    position: relative;
    isolation: isolate;
    padding: calc(var(--page-banner-top) - 34px) 0 clamp(44px, 5vw, 72px);
}
.contact-page-hero::before {
    content: "";
    position: absolute;
    right: -12vw;
    top: 16%;
    z-index: -1;
    width: min(32vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,202,25,.13);
    filter: blur(2px);
}
.contact-page-hero__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(42px, 5vw, 82px);
    align-items: center;
    min-width: 0;
}
.contact-page-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}
.contact-page-hero__content .pill {
    margin-bottom: 20px;
}
.contact-page-hero__content h1 {
    max-width: 680px;
    margin: 0 0 18px;
    color: var(--color-primary);
    font-size: clamp(44px, 4.5vw, 68px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.04;
    letter-spacing: 0;
}
.contact-page-hero__content p {
    max-width: 560px;
    margin: 0;
    color: var(--color-text);
    font-size: clamp(16px, 1.15vw, 19px);
    line-height: 1.72;
}
.contact-page-hero__line {
    display: block;
    width: 126px;
    height: 4px;
    margin-top: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-accent), rgba(169,138,189,.55));
}
.contact-page-hero__visual {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: clamp(14px, 2vw, 24px);
    border-radius: clamp(28px, 3vw, 42px);
    background:
        radial-gradient(circle at 78% 18%, rgba(255,202,25,.18), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(224,246,252,.7) 58%, rgba(255,248,222,.68));
    box-shadow: 0 26px 80px rgba(75,20,104,.12);
}
.contact-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: 34px -12px -14px 44px;
    z-index: 0;
    border-radius: 42px;
    background: rgba(169,138,189,.11);
    transform: rotate(-2deg);
}
.contact-page-hero__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: clamp(360px, 33vw, 490px);
    border-radius: clamp(24px, 2.5vw, 34px);
    object-fit: cover;
    object-position: 62% 42%;
    box-shadow: 0 24px 62px rgba(75,20,104,.16);
    transition: transform var(--duration-slow) var(--ease-premium), box-shadow var(--duration-slow) var(--ease-premium);
}
.contact-page-hero__visual:hover img {
    transform: translateY(-3px) scale(1.008);
    box-shadow: 0 32px 78px rgba(75,20,104,.19);
}
.contact-page-hero__motif {
    position: absolute;
    left: clamp(18px, 3vw, 44px);
    bottom: clamp(16px, 2vw, 34px);
    z-index: 2;
    width: min(190px, 34%);
    height: 52px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 24px 50%, var(--color-accent) 0 10px, transparent 11px),
        linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.58));
    box-shadow: 0 18px 44px rgba(75,20,104,.12);
    opacity: .94;
}
.contact-page-hero__motif::after {
    content: "";
    position: absolute;
    left: 54px;
    right: 28px;
    top: 25px;
    height: 3px;
    border-radius: 999px;
    background: rgba(169,138,189,.42);
}
.contact-page-details {
    position: relative;
    padding: clamp(42px, 5vw, 72px) 0 clamp(68px, 7vw, 104px);
}
.contact-page-details::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(var(--container-max), calc(100% - var(--gutter-desktop)));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(75,20,104,.2), transparent);
    transform: translateX(-50%);
}
.contact-page-details__shell {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
    min-width: 0;
}
.contact-page-details__intro {
    position: sticky;
    top: 140px;
    min-width: 0;
    padding-top: 10px;
}
.contact-page-details__intro h2 {
    max-width: 500px;
    margin: 18px 0 0;
    color: var(--color-text);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.14;
    letter-spacing: 0;
}
.contact-page-list {
    position: relative;
    display: grid;
    min-width: 0;
}
.contact-page-list::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 38px;
    bottom: 38px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(75,20,104,.18), transparent);
}
.contact-page-row {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    min-width: 0;
    padding: 28px 0;
    border-bottom: 1px solid rgba(75,20,104,.14);
}
.contact-page-row:first-child {
    padding-top: 0;
}
.contact-page-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.contact-page-row__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 18px 40px rgba(255,202,25,.22);
    transition: transform var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium);
}
.contact-page-row:hover .contact-page-row__icon {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(255,202,25,.28);
}
.contact-page-row__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-page-row__copy {
    min-width: 0;
}
.contact-page-row__copy span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.contact-page-row__copy h2 {
    max-width: 100%;
    margin: 7px 0 9px;
    color: var(--color-text);
    font-size: clamp(22px, 1.65vw, 30px);
    font-weight: var(--font-weight-semibold);
    line-height: 1.18;
    overflow-wrap: break-word;
}
.contact-page-row__copy p {
    max-width: 680px;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}
body:has(.contact-page) .site-footer {
    margin-top: 0;
}
body:has(.contact-page) main {
    font-size: 0;
    line-height: 0;
}
@media (max-width: 1100px) {
    .contact-page-hero__shell,
    .contact-page-details__shell {
        grid-template-columns: minmax(0, 1fr);
    }
    .contact-page-hero__content h1 {
        max-width: 760px;
    }
    .contact-page-hero__visual {
        width: min(820px, 100%);
        justify-self: center;
    }
    .contact-page-hero__visual img {
        height: clamp(340px, 46vw, 430px);
        object-position: 66% 38%;
    }
    .contact-page-details__intro {
        position: static;
    }
}
@media (max-width: 720px) {
    .contact-page-hero {
        padding: 116px 0 34px;
    }
    .contact-page-hero__shell {
        width: min(100% - 36px, var(--container-max));
        gap: 24px;
    }
    .contact-page-hero__content .pill {
        margin-bottom: 16px;
    }
    .contact-page-hero__content h1 {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: clamp(34px, 9vw, 42px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }
    .contact-page-hero__content p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.66;
    }
    .contact-page-hero__line {
        width: 96px;
        margin-top: 22px;
    }
    .contact-page-hero__visual {
        padding: 10px;
        border-radius: 30px;
    }
    .contact-page-hero__visual::before {
        inset: 18px 6px -4px 24px;
        border-radius: 28px;
    }
    .contact-page-hero__visual img {
        height: clamp(250px, 70vw, 310px);
        border-radius: 24px;
        object-position: 72% 34%;
    }
    .contact-page-hero__motif {
        left: 22px;
        bottom: 22px;
        width: 132px;
        height: 42px;
        opacity: .88;
    }
    .contact-page-hero__motif::after {
        left: 44px;
        right: 18px;
        top: 20px;
    }
    .contact-page-details {
        padding: 32px 0 64px;
    }
    .contact-page-details::before {
        width: min(100% - 36px, var(--container-max));
    }
    .contact-page-details__shell {
        width: min(100% - 36px, var(--container-max));
        gap: 28px;
    }
    .contact-page-details__intro h2 {
        max-width: 100%;
        font-size: clamp(29px, 8.4vw, 34px);
        line-height: 1.14;
    }
    .contact-page-list::before {
        left: 24px;
        top: 28px;
        bottom: 28px;
    }
    .contact-page-row {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 0;
    }
    .contact-page-row__icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }
    .contact-page-row__icon svg {
        width: 22px;
        height: 22px;
    }
    .contact-page-row__copy h2 {
        font-size: clamp(21px, 6vw, 24px);
    }
    .contact-page-row__copy p {
        font-size: 15px;
        line-height: 1.62;
    }
}
@media (max-width: 430px) {
    .contact-page-hero__visual img {
        object-position: 73% 34%;
    }
}
@media (max-width: 390px) {
    .contact-page-hero__shell,
    .contact-page-details__shell {
        width: min(100% - 34px, var(--container-max));
    }
    .contact-page-hero__visual img {
        height: 270px;
        object-position: 74% 34%;
    }
}
@media (max-width: 360px) {
    .contact-page-hero {
        padding-top: 110px;
    }
    .contact-page-hero__shell,
    .contact-page-details__shell {
        width: min(100% - 32px, var(--container-max));
    }
    .contact-page-hero__content h1 {
        font-size: clamp(30px, 8.8vw, 34px);
    }
    .contact-page-hero__visual img {
        height: 254px;
        object-position: 75% 34%;
    }
    .contact-page-row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }
    .contact-page-row__icon {
        width: 44px;
        height: 44px;
    }
    .contact-page-row__copy h2 {
        font-size: 20px;
    }
}
@media (max-width: 330px) {
    .contact-page-hero__shell,
    .contact-page-details__shell {
        width: min(100% - 30px, var(--container-max));
    }
    .contact-page-hero__content h1 {
        font-size: 28px;
    }
    .contact-page-hero__visual img {
        height: 238px;
        object-position: 76% 34%;
    }
    .contact-page-row__copy h2 {
        font-size: 18px;
    }
}
@media (max-width: 340px) {
    .login-section {
        padding-inline: 16px;
    }
    .login-card {
        width: 100%;
        padding: 28px 22px;
    }
    .vision-mission-story .container { width: calc(100% - 28px); }
    .vision-mission-story__surface { padding: 24px 16px; }
    .vision-mission-story__direction h2 { font-size: 27px; }
    .vision-mission-story__panel { padding: 22px 18px 24px; }
    .vision-mission-story__principles { grid-template-columns: minmax(0, 1fr); }
    .vision-mission-story__principles li,
    .vision-mission-story__principles li:nth-child(2n),
    .vision-mission-story__principles li:nth-child(3),
    .vision-mission-story__principles li:last-child {
        grid-column: auto;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid rgba(75,20,104,.1);
    }
    .vision-mission-story__principles li:last-child { border-bottom: 0; }
}


@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    [data-aos],
    [data-aos].aos-animate {
        opacity: 1 !important;
        transform: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}




















/* Business Opportunity responsive authority - 05B1R */
.business-opportunity-section .business-opportunity-section__layout,
.business-opportunity-section .business-opportunity-section__intro,
.business-opportunity-section .business-opportunity-section__journey,
.business-opportunity-section .business-opportunity-section__stage {
    min-width: 0;
}

@media (max-width: 1099px) {
    .business-opportunity-section {
        overflow: visible;
    }

    .business-opportunity-section .business-opportunity-section__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: min(var(--container-max), calc(100% - 36px));
        min-width: 0;
        max-width: 100%;
        gap: 32px;
    }

    .business-opportunity-section .business-opportunity-section__intro,
    .business-opportunity-section .business-opportunity-section__journey {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .business-opportunity-section .business-opportunity-section__desktop-path {
        display: none;
        visibility: hidden;
    }

    .business-opportunity-section .business-opportunity-section__journey {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        min-height: 0;
        padding-left: 44px;
        overflow: visible;
        isolation: isolate;
    }

    .business-opportunity-section .business-opportunity-section__journey::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 28px;
        bottom: 28px;
        width: 2px;
        border-left: 3px dashed rgba(169,138,189,.54);
        pointer-events: none;
    }

    .business-opportunity-section .business-opportunity-section__stage,
    .business-opportunity-section .step-join,
    .business-opportunity-section .step-learn,
    .business-opportunity-section .step-share,
    .business-opportunity-section .step-grow {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
    }

    .business-opportunity-section .business-opportunity-section__stage {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 5px 16px;
        align-items: center;
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255,255,255,.84);
        box-shadow: 0 16px 34px rgba(75,20,104,.07);
        opacity: 1;
        animation: none;
    }

    .business-opportunity-section .business-opportunity-section__stage::before {
        content: "";
        position: absolute;
        left: -34px;
        top: 50%;
        width: 20px;
        height: 20px;
        border: 6px solid rgba(251,244,255,.94);
        border-radius: 50%;
        background: var(--color-primary);
        box-shadow: 0 0 0 1px rgba(169,138,189,.42);
        transform: translateY(-50%);
    }

    .business-opportunity-section .step-grow::before {
        background: var(--color-accent);
    }

    .business-opportunity-section .journey-node {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .business-opportunity-section .journey-node svg {
        width: 28px;
        height: 28px;
    }

    .business-opportunity-section .business-opportunity-section__stage b,
    .business-opportunity-section .business-opportunity-section__stage strong,
    .business-opportunity-section .business-opportunity-section__stage span:last-child {
        grid-column: 2;
        min-width: 0;
        margin: 0;
    }

    .business-opportunity-section .business-opportunity-section__stage b {
        grid-row: auto;
        color: rgba(75,20,104,.86);
        font-size: 26px;
        line-height: 1;
    }

    .business-opportunity-section .business-opportunity-section__stage strong {
        font-size: 22px;
        line-height: 1.14;
    }

    .business-opportunity-section .business-opportunity-section__stage span:last-child {
        color: var(--color-muted);
        font-size: 14px;
        line-height: 1.45;
    }
}

@media (min-width: 1100px) {
    .business-opportunity-section .business-opportunity-section__desktop-path {
        display: block;
        visibility: visible;
    }
}

/* Products page */
.products-page {
    position: relative;
    overflow: hidden;
}

.products-page-hero {
    position: relative;
    padding: calc(var(--page-banner-top) - 58px) 0 var(--space-10);
    overflow: hidden;
}

.products-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 28%, rgba(255,210,26,.2), transparent 28%),
        radial-gradient(circle at 16% 80%, rgba(223,243,251,.58), transparent 30%),
        linear-gradient(180deg, rgba(251,244,255,.58), rgba(255,255,255,.22));
    pointer-events: none;
}

.products-page-hero__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(44px, 4vw, 62px);
    align-items: center;
    min-width: 0;
}

.products-page-hero__content h1 {
    max-width: 620px;
    margin: 14px 0 14px;
    color: var(--color-primary);
    font-size: clamp(46px, 4.7vw, 68px);
    line-height: 1.04;
    font-weight: var(--font-weight-bold);
}

.products-page-hero__content p {
    max-width: 530px;
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-body-lg);
}

.products-page-hero__visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(18px, 2.2vw, 28px);
    align-items: end;
    min-height: clamp(340px, 34vw, 470px);
    padding: clamp(42px, 4vw, 58px) clamp(20px, 3vw, 34px) clamp(20px, 2.4vw, 30px);
}

.products-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: clamp(42px, 4vw, 58px) 0 0;
    border-radius: clamp(28px, 3vw, 42px);
    background:
        radial-gradient(circle at 18% 12%, rgba(223,243,251,.66), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(255,210,26,.24), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,248,216,.46));
    box-shadow: var(--shadow-panel);
}

.products-page-hero__pack {
    position: relative;
    z-index: 1;
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 18px 46px rgba(75,20,104,.09);
    animation: productsImageReveal .7s var(--ease-premium) both;
}

.products-page-hero__pack--large {
    transform: translateY(-34px);
    animation-delay: .08s;
}

.products-page-hero__pack img,
.products-family__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products-catalogue {
    position: relative;
    padding-top: var(--space-7);
}

.products-catalogue__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-6);
    align-items: end;
    margin-bottom: var(--space-8);
}

.products-catalogue__intro h2,
.products-page-cta h2 {
    max-width: 920px;
    margin: 12px 0 8px;
    color: var(--color-text);
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.12;
    font-weight: var(--font-weight-bold);
}

.products-catalogue__intro p,
.products-page-cta p {
    max-width: 640px;
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-body);
}

.products-order-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    min-height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: var(--font-size-button);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(75,20,104,.16);
    transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.products-order-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(75,20,104,.2);
}

.products-order-link span {
    transition: transform var(--duration-fast) var(--ease-standard);
}

.products-order-link:hover span {
    transform: translate(2px, -2px);
}

.products-family-list {
    display: grid;
    gap: clamp(30px, 3vw, 42px);
}

.products-family {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1fr);
    gap: clamp(26px, 3vw, 38px);
    align-items: stretch;
    min-width: 0;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.74));
    box-shadow: var(--shadow-panel);
    overflow: hidden;
    animation: productsPanelReveal .72s var(--ease-premium) both;
}

.products-family:nth-child(2) {
    animation-delay: .1s;
}

.products-family::before {
    content: "";
    position: absolute;
    right: -76px;
    top: -82px;
    width: 240px;
    height: 240px;
    border-radius: var(--radius-circle);
    background: rgba(255,210,26,.18);
    pointer-events: none;
}

.products-family--regular {
    background:
        radial-gradient(circle at 12% 10%, rgba(223,243,251,.72), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.74));
}

.products-family--large {
    background:
        radial-gradient(circle at 14% 16%, rgba(255,248,216,.82), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
}

.products-family__media {
    position: relative;
    z-index: 1;
    margin: 0;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 52px rgba(75,20,104,.11);
    transition: transform var(--duration-standard) var(--ease-premium), box-shadow var(--duration-standard) var(--ease-premium);
}

.products-family:hover .products-family__media {
    transform: translateY(-3px);
    box-shadow: 0 24px 62px rgba(75,20,104,.14);
}

.products-family__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.products-family__header {
    margin-bottom: var(--space-5);
}

.products-family__header h2 {
    margin: 10px 0 7px;
    color: var(--color-primary);
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: 1.08;
    font-weight: var(--font-weight-bold);
}

.products-family__header p {
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-body);
}

.products-family__options {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-pack-option {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: var(--space-4);
    align-items: center;
    min-width: 0;
    min-height: 104px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 30px rgba(75,20,104,.055);
    transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.product-pack-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(75,20,104,.08);
}

.product-pack-option__tag {
    color: var(--color-primary);
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.product-pack-option__tag::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: var(--radius-circle);
    background: var(--color-accent);
}

.product-pack-option__copy {
    min-width: 0;
}

.product-pack-option__copy strong {
    display: block;
    color: var(--color-text);
    font-size: clamp(21px, 1.8vw, 28px);
    line-height: 1.14;
    font-weight: var(--font-weight-bold);
}

.product-pack-option__copy span {
    display: block;
    margin-top: 5px;
    color: var(--color-muted);
    font-size: var(--font-size-body-sm);
    line-height: 1.45;
}

.product-pack-option__price {
    display: block;
    text-align: right;
    white-space: nowrap;
}

.product-pack-option__price span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.2;
}

.product-pack-option__price strong {
    display: block;
    margin-top: 3px;
    color: var(--color-primary);
    font-size: 24px;
    line-height: 1.1;
    font-weight: var(--font-weight-bold);
}

.products-page-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-6);
    align-items: center;
    margin-top: var(--space-8);
    padding: clamp(28px, 3vw, 36px);
    border-radius: var(--radius-xl);
    background: var(--gradient-purple-soft);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-panel);
    overflow: hidden;
}

.products-page-cta::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -98px;
    width: 230px;
    height: 230px;
    border-radius: var(--radius-circle);
    background: rgba(255,210,26,.16);
    pointer-events: none;
}

.products-page-cta .pill {
    color: var(--color-primary);
}

.products-page-cta h2,
.products-page-cta p {
    position: relative;
    z-index: 1;
    color: var(--color-text-inverse);
}

.products-page-cta p {
    color: rgba(255,255,255,.78);
}

.products-order-link--yellow {
    position: relative;
    z-index: 1;
    background: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 16px 36px rgba(255,210,26,.22);
}

@keyframes productsImageReveal {
    from { opacity: 0; transform: translateY(14px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes productsPanelReveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
    .products-page-hero {
        padding-top: calc(var(--page-banner-top) - 72px);
    }

    .products-page-hero__shell,
    .products-catalogue__intro,
    .products-family,
    .products-page-cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .products-page-hero__visual {
        min-height: auto;
    }

    .products-family__media {
        max-width: 560px;
    }

    .products-order-link {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .products-page-hero {
        padding: 120px 0 32px;
    }

    .products-page-hero__shell {
        gap: var(--space-5);
    }

    .products-page-hero__content h1 {
        margin-top: 10px;
        font-size: clamp(38px, 10vw, 42px);
    }

    .products-page-hero__content p {
        font-size: var(--font-size-body-sm);
    }

    .products-page-hero__visual {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: var(--space-6) var(--space-4) var(--space-5);
    }

    .products-page-hero__visual::before {
        inset: 40px 0 0;
        border-radius: 28px;
    }

    .products-page-hero__pack {
        width: min(100%, 268px);
        margin-inline: auto;
        border-radius: 24px;
    }

    .products-page-hero__pack--large {
        width: min(78%, 218px);
        margin-top: -58px;
        margin-left: auto;
        transform: none;
    }

    .products-catalogue {
        padding-top: var(--space-6);
    }

    .products-catalogue__intro {
        gap: var(--space-4);
        margin-bottom: var(--space-5);
    }

    .products-catalogue__intro h2,
    .products-page-cta h2 {
        font-size: clamp(28px, 8vw, 32px);
        line-height: 1.12;
    }

    .products-catalogue__intro p,
    .products-page-cta p {
        font-size: 14px;
    }

    .products-order-link {
        min-height: 46px;
        padding: 0 22px;
        font-size: 13px;
    }

    .products-family-list {
        gap: var(--space-5);
    }

    .products-family {
        gap: var(--space-4);
        padding: 18px;
        border-radius: 28px;
    }

    .products-family::before {
        right: -92px;
        top: -84px;
        width: 212px;
        height: 212px;
    }

    .products-family__media {
        max-width: none;
        border-radius: 24px;
    }

    .products-family__header {
        margin-bottom: var(--space-4);
    }

    .products-family__header h2 {
        font-size: clamp(28px, 8.6vw, 34px);
    }

    .products-family__header p {
        font-size: 14px;
    }

    .products-family__options {
        gap: var(--space-2);
    }

    .product-pack-option {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        min-height: 0;
        padding: 18px;
        border-radius: 18px;
    }

    .product-pack-option__tag {
        font-size: 12px;
    }

    .product-pack-option__copy strong {
        font-size: 20px;
    }

    .product-pack-option__copy span {
        font-size: 14px;
    }

    .product-pack-option__price {
        text-align: left;
        white-space: normal;
    }

    .product-pack-option__price span {
        font-size: 12px;
    }

    .product-pack-option__price strong {
        font-size: 22px;
    }

    .products-page-cta {
        gap: var(--space-4);
        margin-top: var(--space-7);
        padding: 24px 20px;
        border-radius: 26px;
    }

    .products-page-cta .products-order-link {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .products-family,
    .product-pack-option,
    .products-page-cta {
        padding-inline: 16px;
    }

    .products-page-hero__pack {
        width: min(100%, 248px);
    }

    .products-page-hero__pack--large {
        width: min(76%, 204px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-page-hero__pack,
    .products-family {
        animation: none;
    }

    .products-order-link,
    .products-order-link span,
    .products-family__media,
    .product-pack-option {
        transition: none;
    }
}

/* Legal page */
.legal-page {
    position: relative;
    overflow: hidden;
}

.legal-page-hero {
    position: relative;
    padding: calc(var(--page-banner-top) - 70px) 0 var(--space-8);
    overflow: hidden;
}

.legal-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 72%, rgba(223,243,251,.62), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(255,210,26,.18), transparent 26%),
        linear-gradient(180deg, rgba(251,244,255,.76), rgba(255,255,255,.2));
    pointer-events: none;
}

.legal-page-hero__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(40px, 4vw, 62px);
    align-items: center;
    min-width: 0;
}

.legal-page-hero__content h1 {
    max-width: 650px;
    margin: 14px 0;
    color: var(--color-primary);
    font-size: clamp(46px, 4.4vw, 64px);
    line-height: 1.05;
    font-weight: var(--font-weight-bold);
}

.legal-page-hero__content p {
    max-width: 560px;
    margin: 0;
    color: var(--color-muted);
    font-size: var(--font-size-body-lg);
}

.legal-page-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(315px, 30vw, 410px);
}

.legal-page-hero__visual::before {
    content: "";
    position: absolute;
    inset: 28px 10px 0;
    border-radius: 42px;
    background:
        radial-gradient(circle at 74% 20%, rgba(255,210,26,.14), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.56) 52%, rgba(255,248,216,.52));
    box-shadow: var(--shadow-panel);
}

.legal-page-doc-stack {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    min-height: 300px;
}

.legal-page-doc-sheet {
    position: absolute;
    display: grid;
    align-content: start;
    width: 255px;
    min-height: 306px;
    padding: 28px 26px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-soft);
    animation: legalDocReveal .72s var(--ease-premium) both;
}

.legal-page-doc-sheet:first-child {
    left: 18px;
    top: 38px;
    transform: rotate(-5deg);
}

.legal-page-doc-sheet:nth-child(2) {
    right: 22px;
    top: 0;
    background: linear-gradient(145deg, #ffffff, #fff8d8);
    transform: rotate(4deg);
    animation-delay: .08s;
}

.legal-page-doc-sheet:nth-child(3) {
    left: 155px;
    bottom: -10px;
    background: linear-gradient(145deg, #ffffff, #eef9fc);
    transform: rotate(.5deg);
    animation-delay: .16s;
}

.legal-page-doc-sheet small {
    color: var(--color-primary);
    font-size: var(--font-size-eyebrow);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.legal-page-doc-sheet strong {
    margin-top: var(--space-2);
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.24;
    font-weight: var(--font-weight-bold);
}

.legal-page-doc-sheet i {
    display: block;
    height: 6px;
    margin-top: 12px;
    border-radius: var(--radius-pill);
    background: rgba(169,138,189,.34);
}

.legal-page-doc-sheet i:first-of-type {
    width: 86%;
    margin-top: 34px;
    background: var(--color-accent);
}

.legal-page-doc-sheet i:nth-of-type(2) { width: 72%; }
.legal-page-doc-sheet i:nth-of-type(3) { width: 94%; }

.legal-page-doc-sheet b {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-circle);
    background: rgba(67,143,118,.94);
}

.legal-page-documents {
    padding-top: clamp(58px, 5.4vw, 86px);
}

.legal-page-doc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-5);
}

.legal-page-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--duration-standard) var(--ease-standard), box-shadow var(--duration-standard) var(--ease-standard);
}

.legal-page-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: .78;
}

.legal-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.legal-page-preview {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 292px;
    padding: 18px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(223,243,251,.62), rgba(255,248,216,.72));
    cursor: pointer;
    overflow: hidden;
}

.legal-page-preview img {
    width: min(190px, 92%);
    max-height: 245px;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(75,20,104,.08));
    transition: transform var(--duration-standard) var(--ease-premium);
}

.legal-page-card:hover .legal-page-preview img,
.legal-page-preview:focus-visible img {
    transform: translateY(-3px);
}

.legal-page-card__copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: var(--space-5) 4px 2px;
}

.legal-page-card__copy h2 {
    margin: 0 0 8px;
    color: var(--color-primary);
    font-size: 22px;
    line-height: 1.2;
    font-weight: var(--font-weight-bold);
}

.legal-page-card__copy p {
    margin: 0 0 var(--space-5);
    color: var(--color-muted);
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
}

.legal-page-card__action {
    min-height: 44px;
    color: var(--color-primary);
}

.legal-page-lightbox {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-modal) + 100);
    width: 100dvw;
    height: 100dvh;
    padding: clamp(16px, 4vw, 36px);
    background: rgba(21, 9, 28, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: auto;
    overscroll-behavior: contain;
}

.legal-page-lightbox.open {
    display: grid;
}

.legal-page-lightbox__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, .38fr) auto minmax(0, .62fr) auto;
    grid-template-areas: "copy previous preview next";
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    width: min(1120px, 94vw);
    max-height: min(760px, calc(100dvh - clamp(32px, 8vw, 72px)));
    padding: clamp(24px, 3vw, 38px);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(75,20,104,.98), rgba(42,7,61,.96));
    box-shadow: var(--shadow-modal);
    overflow: auto;
    animation: legalModalReveal .24s var(--ease-premium) both;
}

.legal-page-lightbox__copy {
    grid-area: copy;
    min-width: 0;
}

.legal-page-lightbox__copy .pill {
    color: var(--color-primary);
}

.legal-page-lightbox__copy h2 {
    margin: 14px 0 10px;
    color: var(--color-text-inverse);
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.14;
    font-weight: var(--font-weight-bold);
}

.legal-page-lightbox__copy p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: var(--font-size-body);
}

.legal-page-lightbox figure {
    grid-area: preview;
    width: 100%;
    max-height: none;
    margin: 0;
    text-align: center;
}

.legal-page-lightbox img {
    width: min(420px, 100%);
    max-height: min(560px, 68vh);
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    box-shadow: 0 24px 66px rgba(0,0,0,.26);
}

.legal-page-lightbox figcaption {
    margin-top: var(--space-3);
    color: var(--color-text-inverse);
    font-weight: var(--font-weight-bold);
}

.legal-page-lightbox .doc-lightbox-close {
    top: 18px;
    right: 18px;
    z-index: 2;
    background: var(--color-accent);
    color: var(--color-primary);
}

.legal-page-lightbox .doc-lightbox-nav {
    position: static;
    transform: none;
    background: var(--color-surface);
    color: var(--color-primary);
}

.legal-page-lightbox .doc-lightbox-nav.previous {
    grid-area: previous;
}

.legal-page-lightbox .doc-lightbox-nav.next {
    grid-area: next;
}

body.lightbox-open {
    overflow: hidden;
}

body.lightbox-open-fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

@keyframes legalDocReveal {
    from { opacity: 0; translate: 0 14px; }
    to { opacity: 1; translate: 0 0; }
}

@keyframes legalModalReveal {
    from { opacity: 0; transform: scale(.98) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 1100px) {
    .legal-page-hero__shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .legal-page-lightbox__panel {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .legal-page-lightbox__panel {
        grid-template-areas:
            "copy copy"
            "preview preview"
            "previous next";
    }

    .legal-page-hero {
        padding-top: calc(var(--page-banner-top) - 78px);
    }

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

    .legal-page-lightbox .doc-lightbox-nav.previous {
        justify-self: start;
    }

    .legal-page-lightbox .doc-lightbox-nav.next {
        justify-self: end;
    }

    .legal-page-lightbox img {
        width: min(420px, 100%);
        max-height: min(430px, 48dvh);
    }
}

@media (max-width: 720px) {
    .legal-page-hero {
        padding: 120px 0 var(--space-6);
    }

    .legal-page-hero__shell {
        gap: var(--space-5);
    }

    .legal-page-hero__content h1 {
        font-size: clamp(38px, 10vw, 42px);
    }

    .legal-page-hero__content p {
        font-size: var(--font-size-body-sm);
    }

    .legal-page-hero__visual {
        min-height: 306px;
    }

    .legal-page-hero__visual::before {
        inset: 24px 0 0;
        border-radius: 28px;
    }

    .legal-page-doc-stack {
        min-height: 270px;
    }

    .legal-page-doc-sheet {
        width: 190px;
        min-height: 238px;
        padding: var(--space-4);
        border-radius: var(--radius-sm);
    }

    .legal-page-doc-sheet:first-child {
        left: 0;
        top: 36px;
    }

    .legal-page-doc-sheet:nth-child(2) {
        right: 0;
        top: 0;
    }

    .legal-page-doc-sheet:nth-child(3) {
        left: 78px;
        bottom: -4px;
    }

    .legal-page-doc-sheet strong {
        font-size: 15px;
    }

    .legal-page-documents {
        padding-top: var(--space-7);
    }

    .legal-page-doc-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--space-4);
    }

    .legal-page-card {
        padding: 14px;
        border-radius: var(--radius-md);
    }

    .legal-page-preview {
        min-height: 226px;
        border-radius: var(--radius-sm);
    }

    .legal-page-card__copy {
        padding: var(--space-4) 2px 0;
    }

    .legal-page-card__copy h2 {
        font-size: 20px;
    }

    .legal-page-card__copy p {
        font-size: 15px;
    }

    .legal-page-lightbox {
        padding: 16px;
    }

    .legal-page-lightbox__panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "copy copy"
            "preview preview"
            "previous next";
        width: 100%;
        max-height: calc(100dvh - 32px);
        gap: var(--space-4);
        padding: 58px 16px 18px;
        border-radius: 26px;
    }

    .legal-page-lightbox__copy h2 {
        font-size: 26px;
    }

    .legal-page-lightbox__copy p {
        font-size: 14px;
    }

    .legal-page-lightbox img {
        max-height: 54vh;
    }

    .legal-page-lightbox .doc-lightbox-nav {
        position: static;
        display: inline-grid;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .legal-page-lightbox .doc-lightbox-nav.previous {
        justify-self: start;
    }

    .legal-page-lightbox .doc-lightbox-nav.next {
        justify-self: end;
    }
}

@media (max-width: 360px) {
    .legal-page-card {
        padding-inline: 12px;
    }

    .legal-page-doc-sheet {
        width: 176px;
    }

    .legal-page-doc-sheet:nth-child(3) {
        left: 62px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-page-doc-sheet,
    .legal-page-lightbox__panel {
        animation: none;
    }

    .legal-page-card,
    .legal-page-preview img {
        transition: none;
    }
}

/* Inner page hero scale alignment: keep Products, Legal, and Contact consistent with About. */
.products-page-hero,
.legal-page-hero,
.contact-page-hero {
    padding: calc(var(--page-banner-top) - 38px) 0 34px;
}

.products-page-hero__shell,
.legal-page-hero__shell,
.contact-page-hero__shell {
    gap: clamp(42px, 4.5vw, 64px);
}

.products-page-hero__content h1,
.legal-page-hero__content h1,
.contact-page-hero__content h1 {
    max-width: 690px;
    margin: 0 0 18px;
    font-size: clamp(42px, 3.75vw, 56px);
    line-height: 1.08;
    font-weight: var(--font-weight-bold);
}

.products-page-hero__content .pill,
.legal-page-hero__content .pill,
.contact-page-hero__content .pill {
    margin-bottom: 22px;
}

.products-page-hero__content p,
.legal-page-hero__content p,
.contact-page-hero__content p {
    max-width: 560px;
    font-size: var(--font-size-body-lg);
    line-height: 1.75;
}

.products-page-hero__visual {
    min-height: 430px;
    padding: clamp(34px, 3.4vw, 48px) clamp(18px, 2.6vw, 30px) clamp(18px, 2vw, 26px);
}

.legal-page-hero__visual {
    min-height: 430px;
}

.contact-page-hero__visual img {
    height: 430px;
}

@media (max-width: 1100px) {
    .products-page-hero,
    .legal-page-hero,
    .contact-page-hero {
        padding-top: calc(var(--page-banner-top) - 38px);
    }
}

@media (max-width: 720px) {
    .products-page-hero,
    .legal-page-hero,
    .contact-page-hero {
        padding: 118px 0 28px;
    }

    .products-page-hero__shell,
    .legal-page-hero__shell,
    .contact-page-hero__shell {
        gap: 24px;
    }

    .products-page-hero__content .pill,
    .legal-page-hero__content .pill,
    .contact-page-hero__content .pill {
        margin-bottom: 18px;
    }

    .products-page-hero__content h1,
    .legal-page-hero__content h1,
    .contact-page-hero__content h1 {
        max-width: min(330px, 100%);
        margin-bottom: 16px;
        font-size: clamp(27px, 7.8vw, 32px);
        line-height: 1.16;
        overflow-wrap: anywhere;
    }

    .products-page-hero__content p,
    .legal-page-hero__content p,
    .contact-page-hero__content p {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.68;
    }

    .policy-page {
        padding-top: 118px;
    }

    .policy-page__shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .policy-page__header {
        position: static;
    }

    .policy-page__header h1 {
        font-size: clamp(30px, 8vw, 34px);
    }

    .policy-page__content {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .policy-page__content p,
    .policy-page__content li {
        font-size: 15px;
        line-height: 1.7;
    }

    .products-page-hero__visual {
        min-height: auto;
        padding: 24px 16px 20px;
    }

    .legal-page-hero__visual {
        min-height: 276px;
    }

    .contact-page-hero__visual img {
        height: 276px;
    }
}

@media (max-width: 360px) {
    .products-page-hero,
    .legal-page-hero,
    .contact-page-hero {
        padding-top: 112px;
    }

    .products-page-hero__content h1,
    .legal-page-hero__content h1,
    .contact-page-hero__content h1 {
        max-width: 100%;
        font-size: clamp(24px, 7.6vw, 28px);
    }

    .products-page-hero__content p,
    .legal-page-hero__content p,
    .contact-page-hero__content p {
        max-width: 288px;
    }

    .policy-page {
        padding-top: 112px;
    }

    .contact-page-hero__visual img {
        height: 260px;
    }
}












