:root {
    --bg: #f4f6fb;
    --surface: #ffffff;
    --surface-alt: #eef2fb;
    --surface-dark: #0b1022;
    --surface-darker: #050814;
    --text: #182033;
    --muted: #5c667f;
    --line: rgba(20, 32, 62, 0.12);
    --line-strong: rgba(255, 255, 255, 0.14);
    --primary: #1c2661;
    --primary-soft: #2b3a8f;
    --primary-light: #dbe2ff;
    --accent: #9d71ff;
    --accent-soft: rgba(157, 113, 255, 0.18);
    --success: #7fd0b0;
    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 10px 24px rgba(10, 15, 35, 0.08);
    --shadow-md: 0 16px 48px rgba(10, 15, 35, 0.14);
    --shadow-lg: 0 24px 64px rgba(6, 10, 24, 0.22);
    --container: 1220px;
    --container-narrow: 860px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

figure {
    margin: 0;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition), border-color var(--transition), background-color var(--transition);
}

a:hover,
a:focus-visible {
    color: var(--primary-soft);
}

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

p,
ul,
ol {
    margin: 0 0 1rem;
}

ul,
ol {
    padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.1vw, 3.1rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

strong {
    font-weight: 700;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.container-narrow {
    width: min(100% - 2rem, var(--container-narrow));
}

.section {
    padding: clamp(4.5rem, 6vw, 7.5rem) 0;
}

.section-offset {
    padding-top: calc(clamp(4.5rem, 6vw, 7.5rem) + 2rem);
}

.section-dark {
    background: linear-gradient(180deg, #090d1c 0%, #111936 100%);
    color: #f5f7ff;
}

.section-dark .eyebrow,
.section-dark p,
.section-dark .section-heading p,
.section-dark .check-list li,
.section-dark .footer-links a {
    color: rgba(240, 244, 255, 0.84);
}

.section-accent {
    background: radial-gradient(circle at top right, rgba(157, 113, 255, 0.16), transparent 28%), linear-gradient(180deg, #eef2fb 0%, #f8f9fe 100%);
}

.section-gallery {
    background: #fff;
}

.section-heading {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading > p:not(.eyebrow),
.section-heading .section-intro,
.section-heading .hero-lead,
.center-note,
.numbers-note,
.group-count,
.page-hero p,
.section p,
.entry-card-content,
.legal-content p,
.legal-content li {
    color: var(--muted);
}

.center-heading {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-soft);
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 999px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.button-group-vertical {
    flex-direction: column;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: var(--shadow-sm);
}

.button:hover,
.button:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary {
    background: #fff;
    color: var(--primary);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--primary);
    border-color: rgba(28, 38, 97, 0.24);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.info-card,
.metric-card,
.hero-side-card,
.comparison-card,
.step-card,
.stat-card,
.product-card,
.contact-card,
.entry-card,
.catalog-card,
.duel-card,
.mini-card,
.info-card-center {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.glow-card {
    box-shadow: 0 18px 48px rgba(28, 38, 97, 0.12), 0 0 0 1px rgba(157, 113, 255, 0.12) inset;
}

.info-card,
.info-card-center,
.comparison-card,
.product-card,
.contact-card,
.duel-card,
.catalog-card,
.entry-card,
.hero-side-card,
.step-card,
.metric-card,
.mini-card {
    padding: 1.6rem;
}

.info-card h3,
.comparison-card h2,
.step-card h3,
.product-card h3,
.catalog-card h3,
.mini-card h3,
.duel-card .duel-title,
.hero-side-card strong,
.metric-card .metric-value,
.stat-card strong,
.contact-card h2,
.contact-card h3,
.entry-card-title {
    color: var(--surface-dark);
}

.section-dark .info-card,
.section-dark .comparison-card,
.section-dark .mini-card,
.section-dark .stat-card,
.section-dark .product-card,
.section-dark .catalog-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-strong);
    box-shadow: none;
}

.section-dark .info-card h3,
.section-dark .comparison-card h2,
.section-dark .mini-card h3,
.section-dark .stat-card strong,
.section-dark .product-card h3,
.section-dark .catalog-card h3 {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(7, 11, 23, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    color: #fff;
}

.brand:hover,
.brand:focus-visible {
    color: #fff;
}

.brand-mark {
    font-size: clamp(1.8rem, 2.3vw, 2.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.primary-navigation {
    justify-self: center;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.menu a:hover,
.menu a:focus-visible {
    color: #fff;
}

.header-cta {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    padding: clamp(6rem, 9vw, 8.5rem) 0;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(7, 11, 23, 0), var(--bg));
    pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.final-cta-grid,
.split-section,
.intro-strip-grid,
.footer-grid,
.faq-layout,
.duel-grid,
.timeline-grid,
.product-grid,
.catalog-grid,
.stats-grid,
.card-grid,
.gallery-grid,
.intro-strip-grid,
.page-hero-grid {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

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

.hero-lead {
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.84);
}

.hero .eyebrow,
.page-hero-dark .eyebrow,
.final-cta .eyebrow {
    color: rgba(218, 226, 255, 0.94);
}

.hero .eyebrow::before,
.page-hero-dark .eyebrow::before,
.final-cta .eyebrow::before {
    background: linear-gradient(90deg, var(--accent), #fff);
}

.hero-trust-list,
.hero-side-list,
.product-meta,
.contact-list,
.footer-links,
.hero-side-list,
.hero-trust-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.2rem;
    margin-top: 2rem;
}

.hero-trust-list li,
.hero-side-list li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-trust-list li::before,
.hero-side-list li::before,
.footer-links li::before,
.check-list li::before,
.product-meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--success));
    transform: translateY(-50%);
}

.hero-panel {
    display: grid;
    gap: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.metric-card .metric-value {
    display: block;
    margin-bottom: 0.45rem;
    color: #fff;
    font-size: 1.3rem;
}

.metric-card .metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

.intro-strip {
    padding-top: 0;
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: end;
}

.section-intro {
    font-size: 1.08rem;
}

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.comparison-card {
    height: 100%;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.product-meta li,
.footer-links li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.85rem;
}

.positive li::before {
    background: linear-gradient(135deg, var(--success), var(--accent));
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.stat-card {
    padding: 1.5rem;
    text-align: left;
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: clamp(1.4rem, 2.6vw, 2.4rem);
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
}

.stat-card-large strong {
    margin-bottom: 0.6rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-card,
.catalog-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.product-card-top,
.catalog-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.product-code,
.product-badge,
.group-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.product-code {
    background: var(--surface-alt);
    color: var(--primary);
}

.product-badge {
    background: rgba(28, 38, 97, 0.08);
    color: var(--primary-soft);
}

.product-profile {
    font-weight: 700;
    color: var(--primary-soft);
}

.product-meta {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.catalog-group {
    padding-top: 2rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.catalog-ingredients {
    font-size: 0.95rem;
    color: var(--muted);
}

.catalog-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: auto;
}

.catalog-meta-grid div {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--surface-alt);
    border: 1px solid var(--line);
}

.catalog-meta-grid span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
}

.catalog-meta-grid strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    grid-auto-rows: 180px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: scale(1.04);
}

.gallery-item-1,
.gallery-item-5 {
    grid-row: span 2;
}

.gallery-item-3 {
    grid-column: span 2;
}

.faq-layout {
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    padding: 0 1.4rem;
}

.faq-item summary {
    position: relative;
    padding: 1.25rem 2rem 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding-bottom: 1.35rem;
}

.final-cta {
    background: linear-gradient(135deg, #0b1022 0%, #1a2558 100%);
    color: #fff;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(14px);
}

.contact-card h2,
.contact-card h3,
.contact-card p,
.contact-card a,
.final-cta p,
.final-cta h2 {
    color: #fff;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-list span {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.page-hero {
    padding: clamp(6rem, 8vw, 8rem) 0 clamp(3rem, 4vw, 4rem);
}

.page-hero-dark {
    color: #fff;
    background-size: cover;
    background-position: center;
}

.page-hero-light {
    background: linear-gradient(180deg, #f8f9fe 0%, #eef2fb 100%);
}

.simple-page-hero {
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.compact-grid {
    align-items: start;
}

.hero-side-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(14px);
}

.hero-side-card-light {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.hero-side-card-light strong,
.hero-side-card-light a,
.hero-side-card-light li,
.hero-side-card-light p {
    color: var(--text);
}

.hero-side-card-light .hero-side-list li::before {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.stacked-cards {
    display: grid;
    gap: 1rem;
}

.mini-card {
    padding: 1.25rem 1.4rem;
}

.mini-card-outline {
    border-width: 1px;
    background: #fff;
}

.numbers-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 245, 254, 0.98) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

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

.duel-card {
    padding: 2rem;
}

.duel-title {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-soft);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.duel-card strong {
    display: block;
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.center-note,
.numbers-note {
    margin-top: 1.2rem;
}

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

.info-card-center h2 {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editor-content {
    background: #fff;
}

.editor-content h2,
.editor-content h3,
.legal-content h2 {
    margin-top: 2.25rem;
}

.entry-card {
    padding: 2rem;
}

.entry-card-title a {
    color: var(--surface-dark);
}

.pagination-wrap {
    margin-top: 2rem;
}

.site-footer {
    background: #07101f;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr;
    gap: 2rem;
    padding: 4rem 0 3rem;
}

.brand-footer {
    margin-bottom: 1rem;
}

.footer-title {
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    position: relative;
    margin-bottom: 0.8rem;
}

.footer-links li::before {
    background: linear-gradient(135deg, var(--accent), #fff);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
}

.group-count {
    background: var(--surface-alt);
    border: 1px solid var(--line);
    color: var(--primary);
}

.legal-content {
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 1001;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #fff;
    color: var(--surface-dark);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    margin: 0;
    overflow: visible;
}

@media (max-width: 1180px) {
    .card-grid-4,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 992px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: inline-block;
        order: 2;
        justify-self: end;
    }

    .primary-navigation {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(7, 11, 23, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .primary-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .page-hero-grid,
    .final-cta-grid,
    .split-section,
    .intro-strip-grid,
    .duel-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 720px) {
    .section,
    .page-hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-trust-list,
    .card-grid-4,
    .card-grid-3,
    .timeline-grid,
    .stats-grid,
    .product-grid,
    .catalog-grid,
    .catalog-meta-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 240px;
    }

    .gallery-item-3,
    .gallery-item-1,
    .gallery-item-5 {
        grid-column: auto;
        grid-row: auto;
    }

    .split-heading,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-mark {
        letter-spacing: 0.18em;
    }

    .site-header {
        backdrop-filter: blur(12px);
    }

    .info-card,
    .info-card-center,
    .comparison-card,
    .product-card,
    .contact-card,
    .entry-card,
    .catalog-card,
    .duel-card,
    .mini-card,
    .hero-side-card,
    .step-card,
    .metric-card {
        padding: 1.35rem;
    }
}

/* === Visual refresh V2 === */
.hero-grid-visual {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: end;
}

.hero-showcase-panel {
    display: grid;
    gap: 1.25rem;
}

.hero-glass-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 54px rgba(6, 10, 24, 0.24);
}

.hero-panel-label {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.hero-metrics-grid div {
    padding: 0.95rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics-grid strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
}

.hero-metrics-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.45;
}

.hero-trust-list-compact {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 680px;
}

.hero-cocktail-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.cocktail-spotlight {
    padding: 0.9rem 0.8rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 54px rgba(6, 10, 24, 0.2);
    text-align: center;
    backdrop-filter: blur(12px);
}

.cocktail-spotlight-stage {
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 170px;
    padding: 0.5rem;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 70%);
}

.cocktail-spotlight-stage img {
    width: 100%;
    max-width: 135px;
    height: 150px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.cocktail-spotlight span {
    display: block;
    margin-top: 0.7rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.intro-strip-visual {
    padding-top: 3.2rem;
}

.trust-tile-card {
    min-height: 100%;
}

.product-showcase-section {
    background: linear-gradient(180deg, #f9fbff 0%, #eef2fb 100%);
}

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

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

.visual-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(10, 15, 35, 0.1);
    overflow: hidden;
}

.visual-product-card-full {
    height: 100%;
}

.visual-product-media {
    position: relative;
    padding: 1rem 1rem 0;
}

.serve-stage {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f5fd 100%);
    border: 1px solid rgba(18, 27, 56, 0.08);
    min-height: 290px;
}

.serve-stage img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
    object-position: center;
}

.bottle-stage {
    position: absolute;
    right: 1.25rem;
    bottom: -1.5rem;
    width: 112px;
    height: 138px;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(46, 60, 136, 0.44), rgba(6, 10, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 44px rgba(6, 10, 24, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bottle-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(0.92);
}

.visual-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 2.3rem 1.35rem 1.35rem;
}

.product-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--primary-light);
    color: var(--primary);
}

.product-chip-muted {
    background: rgba(28, 38, 97, 0.08);
    color: var(--primary-soft);
}

.compact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-top: 0.1rem;
}

.compact-meta li {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.92rem;
}

.editorial-cocktail-section {
    background: #fff;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
}

.editorial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 1.2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.editorial-image-stage {
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 260px;
    padding: 0.8rem;
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(157, 113, 255, 0.16), rgba(219, 226, 255, 0.18) 48%, rgba(255, 255, 255, 0.92) 100%);
}

.editorial-image-stage img {
    width: 100%;
    max-width: 220px;
    height: 230px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 28px rgba(21, 30, 65, 0.14));
}

.editorial-card-content {
    padding-top: 1rem;
}

.editorial-card-content h3 {
    margin-bottom: 0.6rem;
}

.final-cta-visual {
    background: linear-gradient(120deg, #0a1123 0%, #1c2a67 100%);
}

.page-hero-contact {
    overflow: hidden;
}

.contact-hero-grid {
    align-items: center;
}

.contact-hero-visual-card {
    position: relative;
    min-height: 420px;
}

.contact-hero-image-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 1rem;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(157, 113, 255, 0.18), rgba(255, 255, 255, 0.74) 60%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.contact-hero-image-stage img {
    width: 100%;
    max-width: 260px;
    height: 360px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 18px 30px rgba(21, 30, 65, 0.14));
}

.contact-side-data {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(100%, 320px);
}

.contact-card-light {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.contact-card-light h2,
.contact-card-light p,
.contact-card-light a,
.contact-card-light span {
    color: var(--text);
}

.contact-card-light .button-group {
    margin-top: 1.5rem;
}

.contact-card-light .button {
    box-shadow: none;
}

@media (max-width: 1180px) {
    .hero-cocktail-band,
    .visual-product-grid,
    .visual-product-grid-full,
    .editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-grid-visual,
    .contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-visual-card {
        min-height: 380px;
    }

    .contact-side-data {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .contact-hero-image-stage {
        position: relative;
        min-height: 320px;
    }
}

@media (max-width: 720px) {
    .hero-cocktail-band,
    .visual-product-grid,
    .visual-product-grid-full,
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .serve-stage,
    .serve-stage img {
        min-height: 260px;
        height: 260px;
    }

    .bottle-stage {
        width: 98px;
        height: 124px;
    }

    .visual-product-body {
        padding-top: 2.1rem;
    }

    .contact-hero-image-stage img {
        height: 300px;
    }
}


/* === Visual tuning v3: cocktails completos + botellas 9:16 === */
.hero-cocktail-band {
    gap: 1rem;
}

.cocktail-spotlight {
    padding: 1rem 0.9rem 1.1rem;
}

.cocktail-spotlight-stage {
    min-height: 196px;
    padding: 0.75rem 0.5rem 0.35rem;
}

.cocktail-spotlight-stage img {
    max-width: 154px;
    height: 182px;
    transform: translateY(4px) scale(1.03);
}

.visual-product-card {
    overflow: visible;
}

.visual-product-media {
    position: relative;
    padding: 1rem;
}

.serve-stage {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #fbfcff 0%, #edf2fb 100%);
    border: 1px solid rgba(18, 27, 56, 0.08);
}

.serve-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--serve-photo);
    background-size: cover;
    background-position: center center;
    filter: blur(18px) saturate(1.05);
    transform: scale(1.1);
    opacity: 0.28;
    z-index: 0;
}

.serve-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 36%, rgba(255,255,255,0.16) 100%);
    z-index: 0;
}

.serve-stage img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: scale(0.96);
    filter: drop-shadow(0 14px 24px rgba(18, 27, 56, 0.14));
}

.bottle-stage {
    right: 1rem;
    bottom: 1rem;
    width: 92px;
    height: auto;
    aspect-ratio: 9 / 16;
    padding: 0.45rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(36, 48, 112, 0.34) 0%, rgba(8, 11, 28, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(6, 10, 24, 0.26);
    backdrop-filter: blur(12px);
}

.bottle-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.visual-product-body {
    padding: 1.3rem 1.35rem 1.4rem;
}

.visual-product-card-full,
.visual-product-card {
    height: 100%;
}

.editorial-image-stage,
.contact-hero-image-stage {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.editorial-image-stage::before,
.contact-hero-image-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--cocktail-photo);
    background-size: cover;
    background-position: center center;
    filter: blur(24px) saturate(1.04);
    transform: scale(1.08);
    opacity: 0.18;
    z-index: 0;
}

.editorial-image-stage img,
.contact-hero-image-stage img {
    position: relative;
    z-index: 1;
}

.editorial-image-stage {
    min-height: 290px;
}

.editorial-image-stage img {
    max-width: 230px;
    height: 250px;
}

.contact-hero-image-stage {
    min-height: 360px;
}

.contact-hero-image-stage img {
    max-width: 280px;
    height: 360px;
}

@media (min-width: 768px) {
    .hero-cocktail-band {
        gap: 1.1rem;
    }

    .cocktail-spotlight-stage {
        min-height: 220px;
        padding-top: 0.9rem;
    }

    .cocktail-spotlight-stage img {
        max-width: 168px;
        height: 205px;
    }

    .serve-stage {
        height: 360px;
        min-height: 360px;
    }

    .bottle-stage {
        width: 98px;
    }

    .editorial-image-stage {
        min-height: 320px;
    }

    .editorial-image-stage img {
        max-width: 245px;
        height: 280px;
    }

    .contact-hero-image-stage {
        min-height: 400px;
    }

    .contact-hero-image-stage img {
        height: 390px;
    }
}

@media (min-width: 1100px) {
    .cocktail-spotlight-stage {
        min-height: 236px;
    }

    .cocktail-spotlight-stage img {
        max-width: 176px;
        height: 220px;
    }

    .serve-stage {
        height: 392px;
        min-height: 392px;
    }

    .bottle-stage {
        width: 104px;
    }

    .contact-hero-image-stage {
        min-height: 430px;
    }

    .contact-hero-image-stage img {
        height: 405px;
    }
}

@media (max-width: 720px) {
    .serve-stage {
        height: 320px;
        min-height: 320px;
    }

    .bottle-stage {
        width: 84px;
    }

    .visual-product-body {
        padding-top: 1.2rem;
    }

    .contact-hero-image-stage img {
        height: 320px;
    }
}


/* === Visual tuning v4: cocktails verdaderamente verticales + botella transparente === */
.visual-product-card,
.visual-product-card-full {
    overflow: hidden;
}

.visual-product-media {
    position: relative;
    padding: 1rem 1rem 0.3rem;
}

.serve-stage {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: unset;
    aspect-ratio: 9 / 16;
    padding: 0.4rem;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8f9fd 0%, #eef2f9 100%);
    border: 1px solid rgba(18, 27, 56, 0.08);
}

.serve-stage::before,
.serve-stage::after {
    display: none;
}

.serve-stage img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: drop-shadow(0 16px 30px rgba(18, 27, 56, 0.16));
}

.bottle-stage {
    position: absolute;
    right: 0.35rem;
    bottom: 0.45rem;
    width: 86px;
    height: auto;
    aspect-ratio: 9 / 16;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.bottle-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: drop-shadow(0 16px 26px rgba(4, 8, 20, 0.26));
}

.visual-product-body {
    padding: 1rem 1.35rem 1.4rem;
}

.hero-cocktail-band {
    gap: 1rem;
}

.cocktail-spotlight {
    padding: 1rem 0.9rem 1.1rem;
}

.cocktail-spotlight-stage {
    min-height: 218px;
    padding: 0.95rem 0.55rem 0.3rem;
}

.cocktail-spotlight-stage img {
    max-width: 182px;
    height: 226px;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
}

.editorial-image-stage,
.contact-hero-image-stage {
    overflow: hidden;
}

.editorial-image-stage::before,
.contact-hero-image-stage::before {
    opacity: 0.12;
}

.editorial-image-stage img {
    max-width: 260px;
    height: 300px;
    object-fit: contain;
    object-position: center bottom;
}

.contact-hero-image-stage img {
    max-width: 320px;
    height: 420px;
    object-fit: contain;
    object-position: center bottom;
}

@media (min-width: 768px) {
    .bottle-stage {
        width: 92px;
        right: 0.45rem;
        bottom: 0.55rem;
    }

    .cocktail-spotlight-stage {
        min-height: 232px;
    }

    .cocktail-spotlight-stage img {
        max-width: 190px;
        height: 238px;
    }
}

@media (min-width: 1100px) {
    .bottle-stage {
        width: 98px;
        right: 0.5rem;
        bottom: 0.6rem;
    }

    .cocktail-spotlight-stage {
        min-height: 246px;
    }

    .cocktail-spotlight-stage img {
        max-width: 198px;
        height: 252px;
    }
}

@media (max-width: 720px) {
    .visual-product-card,
    .visual-product-card-full {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .bottle-stage {
        width: 78px;
        right: 0.3rem;
        bottom: 0.35rem;
    }

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

    .cocktail-spotlight-stage {
        min-height: 196px;
    }

    .cocktail-spotlight-stage img {
        max-width: 156px;
        height: 198px;
    }

    .contact-hero-image-stage img {
        height: 340px;
    }
}

/* === Visual tuning v5: foto más natural + botellas mucho más visibles === */
.visual-product-media {
    padding: 0.9rem 0.9rem 0.35rem;
}

.serve-stage {
    padding: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7f8fc 0%, #edf1f8 100%);
}

.serve-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
    filter: drop-shadow(0 18px 34px rgba(18, 27, 56, 0.18));
}

.bottle-stage {
    right: 0.55rem;
    bottom: 0.55rem;
    width: 118px;
    aspect-ratio: 9 / 16;
}

.bottle-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 16px 28px rgba(4, 8, 20, 0.28));
}

.cocktail-spotlight-stage {
    min-height: 228px;
    padding: 0.5rem 0.2rem 0.25rem;
}

.cocktail-spotlight-stage img {
    max-width: 192px;
    height: 220px;
    object-fit: contain;
    object-position: center bottom;
    transform: translateY(4px) scale(1.02);
}

@media (max-width: 1024px) {
    .bottle-stage {
        width: 106px;
        right: 0.45rem;
        bottom: 0.45rem;
    }

    .cocktail-spotlight-stage {
        min-height: 212px;
    }

    .cocktail-spotlight-stage img {
        max-width: 178px;
        height: 204px;
    }
}

@media (max-width: 720px) {
    .visual-product-media {
        padding: 0.8rem 0.8rem 0.3rem;
    }

    .bottle-stage {
        width: 96px;
        right: 0.4rem;
        bottom: 0.4rem;
    }

    .cocktail-spotlight-stage {
        min-height: 200px;
    }

    .cocktail-spotlight-stage img {
        max-width: 166px;
        height: 194px;
    }
}
