:root {
    --bg-dark: #000000;
    --bg-light: #ffffff;
    --accent-blue: #007bff;
    --accent-soft: #eaf3ff;
    --text-primary: #111111;
    --text-secondary: #555555;
    --gray-light: #f5f5f7;
    --border-color: #e5e5e5;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.16);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: #0a0a0a;
    color: white;
    font-size: 0.82rem;
}

.top-bar-content {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.top-bar a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: auto;
    display: block;
}

.logo-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.logo-symbol {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b0f19, #1677ff);
    color: white;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav ul a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

nav ul a:hover, nav ul a.active {
    color: var(--accent-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-login,
.nav-quote {
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.nav-login {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
}

.nav-quote {
    background: #0b0f19;
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--bg-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    background: #000;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-eyebrow,
.section-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: #d9ecff;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary { background: white; color: black; }
.btn-secondary { background: transparent; border: 1px solid white; color: white; }
.btn-ghost { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35); color: white; }
.btn-dark { background: black; color: white; }
.btn-outline { border: 1px solid black; color: black; }
.btn-white { background: white; color: black; }

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-proof span {
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.85rem;
}

.hero-metrics {
    max-width: 760px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-metrics div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background: rgba(255,255,255,0.11);
    backdrop-filter: blur(14px);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 1.6rem;
    line-height: 1;
}

.hero-metrics span {
    margin-top: 6px;
    color: #d7dce5;
    font-size: 0.82rem;
}

/* Products */
.products { padding: 90px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.section-kicker { color: var(--accent-blue); margin-bottom: 12px; }
.category-title { font-size: 1.5rem; border-bottom: 2px solid #eee; padding-bottom: 10px; margin: 60px 0 30px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    background: white;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-blue);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.product-img { width: 100%; height: 280px; object-fit: contain; background: #fff; padding: 20px; }
.product-info { padding: 20px; }
.product-info h3 a { text-decoration: none; color: black; }
.product-info p { color: #666; font-size: 0.9rem; margin: 10px 0 15px; }

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.product-specs span {
    background: var(--accent-soft);
    color: #0d4c92;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 700;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-actions .btn {
    width: 100%;
    padding: 11px 12px;
    text-align: center;
    font-size: 0.84rem;
}

/* Trust Signals */
.trust-signals { background: #f9f9f9; padding: 60px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust-item { text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: 15px; display: block; }

.buying-guide,
.home-faq {
    padding: 80px 0;
    background: #fff;
}

.buying-guide-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.buying-guide h2,
.why-copy h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    line-height: 1.14;
}

.guide-card,
.faq-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    background: white;
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.guide-card h3,
.faq-card h3 {
    margin-bottom: 10px;
}

.guide-card p,
.faq-card p,
.why-copy p {
    color: var(--text-secondary);
}

.guide-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
}

.why-efficfold {
    padding: 90px 0;
    background: var(--gray-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-copy p {
    margin: 18px 0 26px;
    max-width: 560px;
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-list div {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px;
}

.why-list strong,
.why-list span {
    display: block;
}

.why-list span {
    margin-top: 6px;
    color: var(--text-secondary);
}

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

.showcase-section,
.use-cases,
.comparison-section,
.member-preview {
    padding: 90px 0;
}

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

.showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.showcase-media {
    position: relative;
    min-height: 460px;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 20%, #dbeafe, transparent 36%), #f3f6fa;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.showcase-media img {
    max-width: 88%;
    max-height: 360px;
    object-fit: contain;
}

.floating-spec-card {
    position: absolute;
    right: 26px;
    bottom: 26px;
    width: 230px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow-soft);
}

.floating-spec-card span,
.floating-spec-card strong,
.floating-spec-card p {
    display: block;
}

.floating-spec-card span {
    color: var(--accent-blue);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.floating-spec-card strong {
    margin-top: 6px;
    font-size: 1.15rem;
}

.floating-spec-card p {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.showcase-copy h2,
.member-preview h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    line-height: 1.08;
    margin-bottom: 18px;
}

.showcase-copy > p,
.member-preview p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-stack {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.feature-stack div {
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
}

.feature-stack strong,
.feature-stack span {
    display: block;
}

.feature-stack span {
    margin-top: 5px;
    color: var(--text-secondary);
}

.use-cases {
    background: #0b0f19;
    color: white;
}

.use-cases .section-title {
    color: white;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.use-case-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.use-case-card span {
    display: inline-block;
    color: #8bc5ff;
    font-weight: 900;
    margin-bottom: 44px;
}

.use-case-card h3 {
    margin-bottom: 10px;
}

.use-case-card p {
    color: #cbd5e1;
}

.comparison-section {
    background: white;
}

.comparison-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: #f8fafc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.comparison-table td:first-child {
    font-weight: 800;
}

.comparison-table a {
    color: var(--accent-blue);
    font-weight: 800;
    text-decoration: none;
}

.member-preview {
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.member-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 60px;
    align-items: center;
}

.member-preview .btn {
    margin-top: 24px;
}

.portal-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.portal-header {
    display: flex;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
    background: #f8fafc;
}

.portal-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
}

.portal-body {
    padding: 34px;
}

.portal-avatar {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b0f19, #1677ff);
    color: white;
    font-weight: 900;
    margin-bottom: 18px;
}

.portal-body p {
    color: var(--text-secondary);
    margin: 10px 0 20px;
}

.portal-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.portal-list span {
    padding: 12px;
    border-radius: 8px;
    background: #f5f8fc;
    font-weight: 700;
    font-size: 0.86rem;
}

.member-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.member-modal.active {
    display: flex;
}

.member-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.74);
}

.member-modal-card {
    position: relative;
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow-strong);
}

.member-modal-card h2 {
    margin: 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    line-height: 1.12;
}

.member-modal-card p {
    color: var(--text-secondary);
}

.close-member-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: #f1f5f9;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 1.5rem;
    cursor: pointer;
}

.preview-login-form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.preview-login-form input {
    padding: 13px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.preview-login-note {
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

/* Product Detail Page */
.breadcrumb { padding: 20px 0; font-size: 0.9rem; color: #888; }
.breadcrumb a { text-decoration: none; color: #555; }

.product-main { padding-bottom: 60px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.main-img img { width: 100%; border-radius: 12px; border: 1px solid #eee; }

.product-title { font-size: 2.5rem; margin-bottom: 10px; }
.product-tagline { font-size: 1.2rem; color: #666; margin-bottom: 30px; }

.variant-group { margin-bottom: 25px; }
.variant-group label { display: block; font-weight: 700; margin-bottom: 10px; font-size: 0.9rem; }
.variant-options { display: flex; gap: 10px; }
.variant-option {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.2s;
}
.variant-option.active, .variant-option:hover { border-color: black; background: #f0f0f0; }

.product-tabs { border-top: 1px solid #eee; padding: 60px 0; }
.tabs-header { display: flex; gap: 30px; border-bottom: 1px solid #eee; margin-bottom: 30px; }
.tab-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    position: relative;
}
.tab-btn.active { color: black; }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 12px; border-bottom: 1px solid #eee; font-size: 0.95rem; }
.specs-table td:first-child { font-weight: 700; width: 30%; }

.features-list { padding-left: 20px; }
.features-list li { margin-bottom: 10px; color: #444; }

/* Collections */
.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.collection-item { height: 400px; position: relative; border-radius: 12px; overflow: hidden; }
.collection-img { width: 100%; height: 100%; }
.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}
.collection-overlay h2 { margin-bottom: 10px; }

/* Footer */
footer { background: #000; color: #fff; padding: 80px 0 40px; }
.grid-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 30px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-links h4 { margin-bottom: 20px; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #999; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #333; margin-top: 60px; padding-top: 20px; text-align: center; font-size: 0.8rem; color: #666; }

/* Troubleshooting Section Styles */
.troubleshooting-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: white;
}

.section-subtitle {
    color: #999;
    margin-top: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    margin: 20px auto 0;
}

.ts-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.ts-item {
    border-bottom: 1px solid #333;
    transition: background 0.3s ease;
}

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

.ts-trigger {
    width: 100%;
    padding: 30px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    text-align: left;
}

.ts-title {
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ts-icon {
    color: #666;
    transition: transform 0.4s ease, color 0.4s ease;
}

.ts-trigger:hover .ts-title {
    color: var(--accent-blue);
}

.ts-item.active {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.05) 0%, transparent 100%);
}

.ts-item.active .ts-icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.ts-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.ts-item.active .ts-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.ts-inner {
    padding-bottom: 40px;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.7;
}

.ts-list {
    list-style: none;
    margin-top: 20px;
}

.ts-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid #444;
}

.ts-list li strong {
    display: block;
    color: white;
    margin-bottom: 8px;
}

.ts-list.no-bullet li {
    border-left: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }

/* Mobile */
@media (max-width: 768px) {
    .grid-footer, .grid-2, .grid-3, .collection-grid, .buying-guide-grid, .why-grid, .faq-grid, .showcase-grid, .use-case-grid, .member-grid { grid-template-columns: 1fr; }
    .top-bar-content { flex-direction: column; gap: 4px; padding: 8px 20px; text-align: center; }
    nav { gap: 12px; }
    .logo-name { font-size: 1.05rem; }
    .nav-actions { display: none; }
    .hero { padding: 110px 0; }
    .hero h1 { font-size: 2.45rem; }
    .hero p { font-size: 1rem; }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { text-align: center; }
    .buying-guide h2, .why-copy h2, .showcase-copy h2, .member-preview h2 { font-size: 2rem; }
    .showcase-media { min-height: 320px; }
    .floating-spec-card { position: static; width: auto; margin: -28px 18px 18px; }
    .portal-list { grid-template-columns: 1fr; }
    .product-actions { grid-template-columns: 1fr; }
    nav ul {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    nav ul.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .product-main .grid-2 { gap: 30px; }
}

/* Animations */
.fade-in { animation: fadeIn 0.8s ease-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Us Page */
.about-hero {
    background: linear-gradient(rgba(8,13,24,0.18), rgba(8,13,24,0.10)), url('assets/transparent_imgs/tricreate-pro.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
    min-height: 80vh;
}
.about-container { max-width: 800px; }

/* Support Page */
.page-padding { padding: 80px 0; }
.text-center { text-align: center; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.faq-item { margin-bottom: 30px; }
.faq-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.contact-form-support { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.contact-form-support input, .contact-form-support select, .contact-form-support textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}
.logo-text-footer { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 700; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.logo-text-footer span { font-weight: 300; }

/* Video Modal Styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.8); }
.video-modal-content { position: relative; z-index: 2001; width: 90%; max-width: 1000px; }
.video-modal-content video { width: 100%; border-radius: 8px; }
.close-video-modal { position: absolute; top: -40px; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* Cinematic premium redesign layer */
:root {
    --cinema-bg: #05060a;
    --cinema-bg-2: #090c13;
    --cinema-panel: rgba(255,255,255,0.055);
    --cinema-panel-strong: rgba(255,255,255,0.092);
    --cinema-line: rgba(255,255,255,0.14);
    --cinema-text: #f7f9ff;
    --cinema-muted: #8f9aaa;
    --cinema-blue: #8bc5ff;
    --cinema-silver: #dfe7f3;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 50% -10%, rgba(71, 132, 255, 0.22), transparent 34rem),
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 26rem),
        linear-gradient(180deg, var(--cinema-bg), #03040a 58%, #070910);
    color: var(--cinema-text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

.top-bar {
    background: rgba(255,255,255,0.045);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--cinema-muted);
}

.top-bar a {
    color: var(--cinema-text);
    text-decoration: none;
}

header {
    width: min(1180px, calc(100% - 32px));
    margin: 16px auto 0;
    border: 1px solid var(--cinema-line);
    border-radius: 999px;
    background: rgba(5, 7, 13, 0.58);
    backdrop-filter: blur(26px) saturate(155%);
    box-shadow: 0 24px 80px rgba(0,0,0,0.34);
}

nav {
    height: 66px;
}

.logo-wordmark,
.logo {
    color: var(--cinema-text);
}

.logo-symbol {
    background: linear-gradient(135deg, rgba(255,255,255,0.94), #8bc5ff 48%, #1677ff);
    color: #05060a;
    border-radius: 14px;
}

.logo-name {
    color: var(--cinema-text);
}

.logo img {
    height: 38px;
}

nav ul a {
    color: rgba(247,249,255,0.74);
    letter-spacing: 0.11em;
}

nav ul a:hover,
nav ul a.active {
    color: var(--cinema-text);
}

.nav-login,
.nav-quote {
    border: 1px solid var(--cinema-line);
    color: var(--cinema-text);
    background: rgba(255,255,255,0.05);
}

.nav-quote {
    background: rgba(255,255,255,0.14);
}

.hero {
    min-height: calc(100vh - 118px);
    padding: 12vh 0 11vh;
    display: grid;
    place-items: center;
    background: transparent;
    isolation: isolate;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    width: min(68vw, 880px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    box-shadow:
        inset 0 0 80px rgba(139,197,255,0.08),
        0 0 120px rgba(139,197,255,0.08);
}

.hero::after {
    width: min(78vw, 1100px);
    height: 1px;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.36), transparent);
}

.video-background video {
    opacity: 0.78;
    filter: grayscale(0.08) contrast(1.12) brightness(0.88);
    transform: scale(1.035);
    animation: ambientVideoDrift 18s ease-in-out infinite alternate;
}

.video-background .overlay {
    background:
        radial-gradient(circle at 50% 46%, rgba(8, 12, 22, 0.10), rgba(5, 6, 10, 0.54) 62%, #05060a 100%),
        linear-gradient(180deg, rgba(5,6,10,0.18), rgba(5,6,10,0.46) 55%, #05060a 96%);
}

.video-background::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,0.16) 49%, transparent 56%, transparent 100%),
        radial-gradient(circle at var(--hero-x, 50%) var(--hero-y, 48%), rgba(139,197,255,0.12), transparent 24rem);
    mix-blend-mode: screen;
    opacity: 0.55;
    animation: slowScan 9s cubic-bezier(.4,0,.2,1) infinite;
}

.hero-content {
    max-width: 1120px;
}

.hero-eyebrow,
.section-kicker {
    color: var(--cinema-blue);
    font-weight: 700;
    letter-spacing: 0.24em;
}

.hero h1 {
    max-width: 1080px;
    margin: 0 auto 28px;
    font-size: clamp(4.2rem, 10vw, 9.6rem);
    line-height: 0.86;
    letter-spacing: -0.085em;
    color: var(--cinema-text);
    text-wrap: balance;
}

.hero p {
    max-width: 720px;
    color: rgba(247,249,255,0.68);
    font-size: clamp(1.04rem, 1.6vw, 1.35rem);
    line-height: 1.7;
}

.btn {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid var(--cinema-line);
}

.btn::before,
.nav-login::before,
.nav-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.36), transparent 34%);
    transition: opacity 0.35s ease;
}

.btn:hover::before,
.nav-login:hover::before,
.nav-quote:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--cinema-text);
    color: #05060a;
}

.btn-secondary,
.btn-ghost,
.btn-dark,
.btn-outline {
    background: rgba(255,255,255,0.07);
    color: var(--cinema-text);
    border-color: var(--cinema-line);
}

.hero-proof span,
.hero-metrics div,
.guide-card,
.product-card,
.faq-card,
.why-list div,
.feature-stack div,
.portal-card,
.member-modal-card,
.floating-spec-card {
    border: 1px solid var(--cinema-line);
    background: var(--cinema-panel);
    backdrop-filter: blur(22px) saturate(135%);
    box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.hero-proof span {
    color: rgba(247,249,255,0.82);
}

.hero-metrics div {
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1), background 0.7s ease;
}

.hero-metrics div:hover {
    transform: translateY(-6px);
    background: var(--cinema-panel-strong);
}

.trust-signals,
.buying-guide,
.showcase-section,
.products,
.why-efficfold,
.home-faq,
.comparison-section,
.member-preview {
    background: transparent;
}

.trust-signals {
    padding-top: 40px;
}

.trust-item {
    color: var(--cinema-text);
}

.trust-item p,
.guide-card p,
.product-info p,
.why-copy p,
.why-list span,
.faq-card p,
.showcase-copy > p,
.feature-stack span,
.member-preview p,
.portal-body p {
    color: var(--cinema-muted);
}

.buying-guide-grid,
.showcase-grid,
.why-grid,
.member-grid {
    gap: 34px;
}

.buying-guide h2,
.showcase-copy h2,
.why-copy h2,
.member-preview h2,
.section-title {
    color: var(--cinema-text);
    letter-spacing: -0.055em;
}

.buying-guide h2,
.showcase-copy h2,
.why-copy h2,
.member-preview h2 {
    font-size: clamp(2.6rem, 5vw, 5.8rem);
    line-height: 0.95;
}

.guide-card,
.faq-card,
.feature-stack div,
.why-list div {
    transition: transform 0.65s cubic-bezier(.2,.8,.2,1), border-color 0.5s ease, background 0.5s ease;
}

.guide-card:hover,
.faq-card:hover,
.feature-stack div:hover,
.why-list div:hover,
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139,197,255,0.45);
    background: var(--cinema-panel-strong);
}

.guide-card a,
.comparison-table a {
    color: var(--cinema-blue);
}

.showcase-media {
    background:
        radial-gradient(circle at 50% 38%, rgba(139,197,255,0.20), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border: 1px solid var(--cinema-line);
    box-shadow: var(--shadow-strong);
}

.showcase-media::before {
    content: "";
    position: absolute;
    width: 86%;
    height: 46%;
    border-radius: 999px;
    bottom: 11%;
    background: radial-gradient(ellipse, rgba(139,197,255,0.24), transparent 68%);
    filter: blur(10px);
}

.showcase-media img {
    position: relative;
    z-index: 1;
    transform: translateY(-8px);
}

.use-cases {
    background: transparent;
}

.use-case-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
    transition: transform 0.7s cubic-bezier(.2,.8,.2,1), border-color 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(139,197,255,0.4);
}

.category-title {
    color: var(--cinema-text);
    border-bottom-color: var(--cinema-line);
    letter-spacing: -0.03em;
}

.product-card {
    color: var(--cinema-text);
}

.product-img {
    background: rgba(255,255,255,0.03);
    filter: drop-shadow(0 22px 32px rgba(0,0,0,0.28));
}

.product-info h3 a {
    color: var(--cinema-text);
}

.product-specs span {
    background: rgba(139,197,255,0.12);
    color: #cfe8ff;
    border: 1px solid rgba(139,197,255,0.18);
}

.comparison-table-wrap {
    border-color: var(--cinema-line);
    background: var(--cinema-panel);
}

.comparison-table th {
    background: rgba(255,255,255,0.05);
    color: var(--cinema-muted);
}

.comparison-table th,
.comparison-table td {
    border-bottom-color: var(--cinema-line);
    color: var(--cinema-text);
}

.portal-card,
.member-modal-card,
.floating-spec-card {
    color: var(--cinema-text);
}

.portal-header,
.portal-list span,
.preview-login-form input,
.close-member-modal {
    background: rgba(255,255,255,0.08);
    border-color: var(--cinema-line);
    color: var(--cinema-text);
}

.portal-dot {
    background: rgba(255,255,255,0.28);
}

.member-modal-card {
    background: rgba(8,10,17,0.88);
}

footer {
    background: #03040a;
    border-top: 1px solid var(--cinema-line);
}

.page-padding,
.about-hero,
.product-main,
.product-tabs {
    background: transparent;
    color: var(--cinema-text);
}

.main-img img,
.collection-item,
.contact-form-support input,
.contact-form-support select,
.contact-form-support textarea {
    border-color: var(--cinema-line);
    background: rgba(255,255,255,0.06);
    color: var(--cinema-text);
}

.contact-form-support input::placeholder,
.contact-form-support textarea::placeholder {
    color: rgba(247,249,255,0.42);
}

.fade-in {
    animation: cinematicFade 1.4s cubic-bezier(.2,.8,.2,1);
}

@keyframes cinematicFade {
    from { opacity: 0; transform: translateY(42px) scale(0.985); filter: blur(12px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 768px) {
    header {
        width: calc(100% - 20px);
        border-radius: 24px;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 18vw, 5.4rem);
    }

    nav ul {
        background: rgba(5, 7, 13, 0.96);
        border: 1px solid var(--cinema-line);
        border-radius: 20px;
        top: 76px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Final cinematic motion and spacing refinements */
.hero::before {
    animation: aperturePulse 8s ease-in-out infinite;
}

.hero h1 {
    text-shadow: 0 24px 80px rgba(139,197,255,0.16);
}

.hero p {
    max-width: 560px;
}

.hero-metrics {
    margin-top: 44px;
}

.hero-metrics div {
    animation: floatMetric 7s ease-in-out infinite;
}

.hero-metrics div:nth-child(2) {
    animation-delay: -1.6s;
}

.hero-metrics div:nth-child(3) {
    animation-delay: -3.1s;
}

.showcase-section,
.use-cases,
.comparison-section,
.member-preview,
.buying-guide,
.products,
.why-efficfold,
.home-faq {
    padding-top: 120px;
    padding-bottom: 120px;
}

.showcase-media img {
    animation: productLevitate 6.5s ease-in-out infinite;
}

.use-case-card span {
    margin-bottom: 58px;
}

.buying-guide,
.showcase-section,
.use-cases,
.products,
.why-efficfold,
.comparison-section,
.member-preview,
.home-faq {
    position: relative;
    overflow: hidden;
}

.buying-guide::before,
.showcase-section::before,
.products::before,
.comparison-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(920px, 84vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
    transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1), filter 1s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes ambientVideoDrift {
    from { transform: scale(1.035) translate3d(-0.7%, -0.4%, 0); }
    to { transform: scale(1.075) translate3d(0.8%, 0.5%, 0); }
}

@keyframes slowScan {
    0%, 24% { transform: translateX(-38%); opacity: 0; }
    38% { opacity: 0.58; }
    72%, 100% { transform: translateX(38%); opacity: 0; }
}

@keyframes aperturePulse {
    0%, 100% { transform: translate(-50%, -48%) scale(1); opacity: 0.72; }
    50% { transform: translate(-50%, -48%) scale(1.055); opacity: 0.36; }
}

@keyframes productLevitate {
    0%, 100% { transform: translateY(-8px) rotate(-0.4deg); }
    50% { transform: translateY(-24px) rotate(0.5deg); }
}

@keyframes floatMetric {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Light premium correction: clearer, brighter, smoother */
:root {
    --light-bg: #f6f8fb;
    --light-ink: #080d18;
    --light-muted: #5d6878;
    --light-line: rgba(12, 20, 34, 0.12);
    --light-panel: rgba(255, 255, 255, 0.72);
    --light-blue: #176bff;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 50% -12%, rgba(93, 152, 255, 0.26), transparent 34rem),
        radial-gradient(circle at 88% 18%, rgba(103, 232, 249, 0.14), transparent 30rem),
        linear-gradient(180deg, #f8faff 0%, #ffffff 42%, #f2f5f9 100%);
    color: var(--light-ink);
}

body::before {
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(12, 20, 34, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 20, 34, 0.035) 1px, transparent 1px);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 76%);
}

.top-bar {
    position: relative;
    z-index: 3100;
    background: #edf4ff;
    color: #35445a;
    border-bottom: 1px solid rgba(23, 107, 255, 0.13);
}

.top-bar a {
    color: #0b57d0;
}

header {
    z-index: 3000;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(12, 20, 34, 0.10);
    box-shadow: 0 20px 60px rgba(18, 29, 48, 0.12);
}

nav {
    gap: 22px;
}

nav,
nav a,
nav button,
#navLinks,
.nav-actions {
    pointer-events: auto;
}

#navLinks {
    position: relative;
    z-index: 2;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
}

.logo-name,
nav ul a {
    color: var(--light-ink);
}

.logo-symbol {
    color: #fff;
    background: linear-gradient(135deg, #080d18, #176bff);
    box-shadow: 0 12px 30px rgba(23, 107, 255, 0.20);
}

nav ul a:hover,
nav ul a.active {
    color: var(--light-blue);
}

.nav-login {
    background: rgba(255, 255, 255, 0.74);
    color: var(--light-ink);
    border-color: rgba(12, 20, 34, 0.14);
}

.nav-quote {
    color: #fff;
    background: #080d18;
    box-shadow: 0 14px 38px rgba(8, 13, 24, 0.18);
}

.hero {
    z-index: 1;
    color: var(--light-ink);
    background: #eef3fa;
}

.video-background {
    z-index: 0;
}

.video-background video {
    opacity: 0.82;
    filter: saturate(1.05) contrast(1.02) brightness(1.08);
    animation-duration: 18s;
}

.video-background .overlay {
    background:
        linear-gradient(90deg, rgba(248,250,255,0.94) 0%, rgba(248,250,255,0.76) 38%, rgba(248,250,255,0.24) 72%, rgba(248,250,255,0.58) 100%),
        radial-gradient(circle at var(--hero-x, 50%) var(--hero-y, 44%), rgba(23,107,255,0.11), transparent 28rem);
}

.video-background::after {
    opacity: 0.22;
    mix-blend-mode: normal;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-ink);
}

.hero h1 {
    color: var(--light-ink);
    text-shadow: none;
    letter-spacing: -0.02em;
}

.hero p,
.showcase-copy p,
.section-subtitle,
.buying-guide > .container > p,
.products > .container > p,
.home-faq > .container > p,
.comparison-section > .container > p,
.member-preview > .container > p,
.feature-stack p,
.guide-card p,
.use-case-card p,
.faq-card p {
    color: var(--light-muted);
}

.hero::before {
    border-color: rgba(23, 107, 255, 0.16);
    box-shadow: inset 0 0 86px rgba(23, 107, 255, 0.08), 0 0 120px rgba(23, 107, 255, 0.10);
}

.hero::after {
    background: linear-gradient(90deg, transparent, rgba(23, 107, 255, 0.24), transparent);
}

.hero-proof span,
.hero-metrics div,
.trust-item,
.guide-card,
.product-card,
.faq-card,
.why-list div,
.feature-stack div,
.portal-card,
.member-modal-card,
.floating-spec-card,
.use-case-card,
.comparison-table-wrap {
    background: var(--light-panel);
    border-color: var(--light-line);
    color: var(--light-ink);
    box-shadow: 0 22px 58px rgba(18, 29, 48, 0.10);
    backdrop-filter: blur(18px) saturate(130%);
}

.trust-signals,
.buying-guide,
.showcase-section,
.products,
.why-efficfold,
.home-faq,
.comparison-section,
.member-preview,
.use-cases,
.page-padding,
.about-hero,
.product-main,
.product-tabs {
    background: transparent;
    color: var(--light-ink);
}

.section-title,
.buying-guide h2,
.showcase-copy h2,
.why-copy h2,
.comparison-section h2,
.member-preview h2,
.home-faq h2,
.product-info h3 a,
.guide-card h3,
.feature-stack h3,
.use-case-card h3,
.faq-card h3 {
    color: var(--light-ink);
}

.product-img,
.main-img img,
.showcase-media img,
.collection-item img {
    background: transparent !important;
    mix-blend-mode: normal;
    filter: drop-shadow(0 24px 30px rgba(18, 29, 48, 0.14));
}

.product-specs span,
.tag {
    background: rgba(23, 107, 255, 0.08);
    color: #0f56c7;
    border-color: rgba(23, 107, 255, 0.14);
}

.comparison-table th {
    background: rgba(8, 13, 24, 0.04);
    color: #667085;
}

.comparison-table td {
    color: var(--light-ink);
    border-bottom-color: rgba(12, 20, 34, 0.08);
}

.contact-form-support input,
.contact-form-support select,
.contact-form-support textarea,
.preview-login-form input {
    background: rgba(255,255,255,0.78);
    color: var(--light-ink);
    border-color: rgba(12, 20, 34, 0.13);
}

.close-member-modal,
.portal-header,
.portal-list span {
    background: rgba(255,255,255,0.72);
    color: var(--light-ink);
    border-color: rgba(12, 20, 34, 0.12);
}

.showcase-section,
.use-cases,
.comparison-section,
.member-preview,
.buying-guide,
.products,
.why-efficfold,
.home-faq {
    padding-top: clamp(78px, 8vw, 112px);
    padding-bottom: clamp(78px, 8vw, 112px);
}

.showcase-copy,
.why-copy,
.member-preview > .container > p,
.products > .container > p,
.comparison-section > .container > p {
    max-width: 720px;
}

.showcase-copy p,
.guide-card p,
.use-case-card p,
.faq-card p {
    max-width: 34rem;
}

.reveal-on-scroll {
    transform: translateY(20px);
    filter: blur(3px);
    transition:
        opacity 700ms cubic-bezier(.22,.61,.36,1),
        transform 700ms cubic-bezier(.22,.61,.36,1),
        filter 700ms ease;
    will-change: opacity, transform;
}

.btn,
.nav-login,
.nav-quote,
.product-card,
.guide-card,
.use-case-card,
.portal-card {
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease,
        background 260ms ease;
}

.showcase-media img {
    animation: productLevitateLight 8s ease-in-out infinite;
    will-change: transform;
}

footer {
    background: #080d18;
    color: #fff;
}

@keyframes productLevitateLight {
    0%, 100% { transform: translate3d(0, -4px, 0) rotate(-0.2deg); }
    50% { transform: translate3d(0, -14px, 0) rotate(0.25deg); }
}

@media (max-width: 768px) {
    nav ul {
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(12, 20, 34, 0.12);
        box-shadow: 0 20px 48px rgba(18, 29, 48, 0.12);
        z-index: 3200;
    }

    .hero {
        padding-top: 118px;
    }

    .video-background .overlay {
        background: linear-gradient(180deg, rgba(248,250,255,0.92), rgba(248,250,255,0.72));
    }
}

/* Contrast rescue for the brighter theme */
main,
section,
.page-padding,
.product-main,
.product-tabs,
.collections-grid,
.collection-card,
.product-card,
.guide-card,
.trust-item,
.use-case-card,
.faq-card,
.why-list div,
.comparison-table-wrap,
.member-preview,
.portal-card {
    color: var(--light-ink) !important;
}

.page-title,
.section-title,
.product-title,
.product-info h1,
.product-info h2,
.product-info h3,
.product-info h3 a,
.collection-card h2,
.collection-card h3,
.trust-item h3,
.guide-card h3,
.use-case-card h3,
.faq-card h3,
.why-copy h2,
.showcase-copy h2,
.comparison-section h2,
.member-preview h2 {
    color: var(--light-ink) !important;
}

.product-info p,
.collection-card p,
.trust-item p,
.guide-card p,
.use-case-card p,
.faq-card p,
.why-copy p,
.showcase-copy p,
.product-description,
.tab-content p,
.product-details li,
.member-preview p,
.comparison-section p,
.products p {
    color: #4d596b !important;
}

.hero .btn-secondary,
.btn-secondary {
    color: #0a1324;
    border-color: rgba(10, 19, 36, 0.24);
    background: rgba(255, 255, 255, 0.68);
}

.btn-secondary:hover {
    color: #fff;
    background: #0a1324;
    border-color: #0a1324;
}

.btn-dark,
.nav-quote,
footer,
footer *,
.video-modal,
.video-modal *,
.member-modal .btn-dark {
    color: #fff;
}

.collection-img,
.product-gallery,
.main-img,
.showcase-media,
.product-card a:first-child {
    background: transparent !important;
}

.collection-img {
    background-color: transparent !important;
}

/* Nordic outdoor premium homepage */
body.nordic-home {
    --nordic-ink: #111820;
    --nordic-muted: #65717f;
    --nordic-soft: #f3f5f4;
    --nordic-card: #f7f8f7;
    --nordic-line: rgba(17, 24, 32, 0.12);
    --nordic-green: #3e5747;
    --nordic-stone: #dfe4e2;
    background: #f8f9f7;
    color: var(--nordic-ink);
}

.nordic-home .container {
    max-width: 1360px;
    padding-left: clamp(18px, 3vw, 42px);
    padding-right: clamp(18px, 3vw, 42px);
}

.nordic-header {
    top: 14px;
    width: calc(100% - 28px);
    margin: 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.54);
    background: rgba(255,255,255,0.78);
    box-shadow: 0 18px 50px rgba(17,24,32,0.10);
    backdrop-filter: blur(22px) saturate(150%);
}

.nordic-header nav {
    height: 66px;
}

.nordic-header .logo img {
    width: 126px;
    height: 46px;
    object-fit: contain;
    border-radius: 999px;
    background: #08111d;
    padding: 3px;
}

.nordic-header nav ul {
    gap: 30px;
}

.nordic-header nav ul a {
    position: relative;
    color: var(--nordic-ink);
    letter-spacing: 0.08em;
}

.nordic-header nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: currentColor;
    transition: transform 260ms ease;
}

.nordic-header nav ul a:hover,
.nordic-header nav ul a.active {
    color: var(--nordic-ink);
}

.nordic-header nav ul a:hover::after,
.nordic-header nav ul a.active::after {
    transform: scaleX(1);
}

.nordic-actions {
    gap: 8px;
}

.icon-action {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--nordic-line);
    background: rgba(255,255,255,0.68);
    color: var(--nordic-ink);
    text-decoration: none;
    cursor: pointer;
    transition: transform 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.icon-action svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-action:hover {
    transform: translateY(-2px);
    background: var(--nordic-ink);
    color: #fff;
    border-color: var(--nordic-ink);
}

.icon-action-dark {
    background: var(--nordic-ink);
    color: #fff;
}

.nordic-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    color: var(--nordic-ink);
    background: #e8eceb;
}

.nordic-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nordic-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248,249,247,0.94) 0%, rgba(248,249,247,0.76) 34%, rgba(248,249,247,0.26) 68%, rgba(248,249,247,0.18) 100%),
        linear-gradient(180deg, rgba(248,249,247,0.10), rgba(248,249,247,0.36));
}

.nordic-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    max-width: 1360px;
}

.nordic-kicker {
    color: var(--nordic-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nordic-hero h1 {
    max-width: 760px;
    margin: 18px 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3.8rem, 8.6vw, 8.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: var(--nordic-ink);
}

.nordic-lede {
    max-width: 520px;
    margin: 0 0 42px;
    color: #34404d;
    font-size: clamp(1rem, 1.4vw, 1.28rem);
    line-height: 1.8;
}

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

.nordic-home .btn {
    border-radius: 999px;
    padding: 13px 24px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.88rem;
    transition: transform 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.nordic-home .btn-primary {
    background: var(--nordic-ink);
    color: #fff;
}

.nordic-home .btn-secondary {
    background: rgba(255,255,255,0.72);
    color: var(--nordic-ink);
    border-color: rgba(17,24,32,0.20);
}

.nordic-home .btn-dark {
    background: var(--nordic-ink);
    color: #fff;
}

.nordic-home .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(17,24,32,0.16);
}

.nordic-home .btn-primary:hover,
.nordic-home .btn-dark:hover {
    background: #fff;
    color: var(--nordic-ink);
    border-color: var(--nordic-ink);
}

.nordic-hero-meta {
    position: absolute;
    z-index: 2;
    left: clamp(18px, 3vw, 42px);
    right: clamp(18px, 3vw, 42px);
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(17,24,32,0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nordic-trust {
    padding: 24px 0;
    background: #fff;
    border-bottom: 1px solid var(--nordic-line);
}

.nordic-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--nordic-line);
    border: 1px solid var(--nordic-line);
}

.nordic-trust-grid div {
    background: #fff;
    padding: clamp(20px, 3vw, 34px);
}

.nordic-trust-grid strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 3rem);
    letter-spacing: -0.06em;
}

.nordic-trust-grid span {
    color: var(--nordic-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.nordic-section {
    padding: clamp(78px, 9vw, 136px) 0;
}

.nordic-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(36px, 8vw, 120px);
    align-items: end;
}

.nordic-split h2,
.nordic-section-head h2,
.nordic-story-copy h2,
.nordic-newsletter h2 {
    max-width: 760px;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4.6vw, 4.9rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: var(--nordic-ink);
}

.nordic-split > p,
.nordic-story-copy p,
.nordic-use-grid p,
.nordic-product-info p,
.nordic-category-card p,
.nordic-newsletter p {
    color: var(--nordic-muted);
    line-height: 1.86;
}

.nordic-section-head {
    display: block;
    margin-bottom: 46px;
}

.nordic-section-head h2 {
    max-width: 850px;
}

.nordic-category-grid {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 18px;
}

.nordic-category-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--nordic-card);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.nordic-category-card.large {
    grid-row: span 2;
    min-height: 858px;
}

.nordic-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.22,.61,.36,1);
}

.nordic-category-card:not(.large) img[src*="transparent_imgs"] {
    object-fit: contain;
    padding: 58px;
    background: linear-gradient(135deg, #eef1ef, #ffffff);
}

.nordic-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.58) 100%);
    z-index: 1;
}

.nordic-category-card div {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
}

.nordic-category-card span {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.nordic-category-card h3 {
    max-width: 540px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 3.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.nordic-category-card p {
    max-width: 460px;
    margin-top: 10px;
    color: rgba(255,255,255,0.82);
}

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

.nordic-category-card img[src*="assets/home"] {
    object-fit: cover;
    object-position: center;
}

.nordic-category-card.large img[src*="home-1"] {
    object-position: center center;
}

.nordic-category-card img[src*="home-2"],
.nordic-category-card img[src*="home-3"],
.nordic-category-card img[src*="home-4"] {
    object-position: center center;
}

.collection-img[style*="assets/home"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f5f5f7 !important;
}

.collection-img[style*="assets/home"] .collection-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.66));
}

.collection-photo {
    position: relative;
    overflow: hidden;
    background: #f5f5f7 !important;
}

.collection-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 520ms cubic-bezier(.22,.61,.36,1);
}

.collection-item:hover .collection-photo > img {
    transform: scale(1.035);
}

.collection-photo .collection-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.72));
    z-index: 2;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.52), rgba(221,226,223,0.72)),
        repeating-linear-gradient(45deg, rgba(17,24,32,0.055) 0 1px, transparent 1px 18px);
    color: rgba(17,24,32,0.46);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(7rem, 16vw, 16rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    transition: transform 650ms cubic-bezier(.22,.61,.36,1);
}

.nordic-category-card:hover .image-placeholder {
    transform: scale(1.025);
}

.nordic-category-card .image-placeholder + div {
    color: var(--nordic-ink);
}

.nordic-category-card .image-placeholder + div h3 {
    color: var(--nordic-ink);
}

.nordic-category-card .image-placeholder + div p {
    color: #4e5a66;
}

.nordic-category-card .image-placeholder + div span {
    color: var(--nordic-green);
}

.nordic-category-card:has(.image-placeholder)::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.66));
}

.nordic-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
}

.nordic-story-image {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1.24 / 1;
}

.nordic-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nordic-story-image .image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.nordic-detail-list {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.nordic-detail-list span {
    padding: 16px 0;
    border-top: 1px solid var(--nordic-line);
    color: var(--nordic-ink);
    font-weight: 800;
}

.nordic-product-group + .nordic-product-group {
    margin-top: 70px;
}

.nordic-group-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-top: 1px solid var(--nordic-line);
    padding-top: 18px;
}

.nordic-group-title h3 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nordic-group-title a {
    color: var(--nordic-ink);
    font-weight: 800;
}

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

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

.nordic-product-card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(17,24,32,0.08);
    background: #fff;
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.nordic-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(17,24,32,0.12);
}

.nordic-product-media {
    min-height: 300px;
    display: grid;
    place-items: center;
    padding: 28px;
    background: linear-gradient(180deg, #f3f5f4, #ffffff);
}

.nordic-product-media img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(17,24,32,0.12));
    transition: transform 450ms cubic-bezier(.22,.61,.36,1);
}

.nordic-product-card:hover .nordic-product-media img {
    transform: scale(1.035);
}

.nordic-product-info {
    padding: 24px;
}

.nordic-product-info h3 a {
    color: var(--nordic-ink);
    text-decoration: none;
}

.nordic-product-info h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
}

.nordic-product-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.nordic-product-card:hover .nordic-product-actions {
    opacity: 1;
    transform: translateY(0);
}

.nordic-product-actions a {
    color: var(--nordic-ink);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nordic-product-card .product-tag {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    border-radius: 999px;
}

.nordic-use {
    background: #eef1ef;
}

.nordic-use-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--nordic-line);
    border: 1px solid var(--nordic-line);
}

.nordic-use-grid article {
    min-height: 320px;
    padding: clamp(26px, 4vw, 48px);
    background: #fff;
}

.nordic-use-grid span {
    color: var(--nordic-green);
    font-weight: 900;
}

.nordic-use-grid h3 {
    margin: 76px 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.nordic-newsletter {
    padding: clamp(70px, 8vw, 110px) 0;
    background: #f8f9f7;
}

.nordic-newsletter-box {
    padding: clamp(34px, 6vw, 80px);
    border-radius: 8px;
    background: var(--nordic-ink);
    color: #fff;
}

.nordic-newsletter-box .nordic-kicker,
.nordic-newsletter-box h2,
.nordic-newsletter-box p {
    color: #fff;
}

.nordic-newsletter-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.nordic-newsletter .btn-primary {
    background: #fff;
    color: var(--nordic-ink);
}

.nordic-newsletter .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.nordic-footer {
    background: #fff;
    color: var(--nordic-ink);
    border-top: 1px solid var(--nordic-line);
}

.nordic-footer .footer-logo {
    width: 150px;
    height: 56px;
    object-fit: contain;
    border-radius: 999px;
    background: #08111d;
    padding: 4px;
    filter: none;
}

.search-modal,
.member-modal {
    z-index: 5000;
}

.search-modal {
    position: fixed;
    inset: 0;
    display: none;
}

.search-modal.active {
    display: block;
}

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 24, 0.42);
    backdrop-filter: blur(10px);
}

.search-panel {
    position: relative;
    width: min(760px, calc(100% - 32px));
    margin: 9vh auto 0;
    padding: clamp(26px, 5vw, 48px);
    border-radius: 12px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 34px 90px rgba(17,24,32,0.22);
}

.close-search-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--nordic-line);
    background: #fff;
    color: var(--nordic-ink);
    font-size: 1.35rem;
    cursor: pointer;
}

.search-panel h2 {
    max-width: 560px;
    margin: 12px 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--nordic-ink);
}

.site-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.site-search-form input {
    min-height: 52px;
    border: 1px solid var(--nordic-line);
    border-radius: 999px;
    padding: 0 18px;
    font: inherit;
    color: var(--nordic-ink);
    background: #fff;
}

.search-results {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--nordic-line);
    color: var(--nordic-ink);
    text-decoration: none;
}

.search-result-item strong {
    display: block;
    margin-bottom: 4px;
}

.search-result-item span {
    color: var(--nordic-muted);
    font-size: 0.92rem;
}

.search-empty {
    color: var(--nordic-muted);
    padding-top: 14px;
}

.direct-email-card {
    margin: 18px 0 22px;
    padding: 18px;
    border: 1px solid rgba(17,24,32,0.12);
    border-radius: 8px;
    background: #f7f8f7;
}

.direct-email-card span {
    display: block;
    margin-bottom: 6px;
    color: #3e5747;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.direct-email-card a {
    display: inline-block;
    color: #111820;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    word-break: break-word;
}

.direct-email-card p {
    margin-top: 8px;
    color: #65717f;
    line-height: 1.65;
}

.search-main {
    padding-top: 110px;
    background: #f8f9f7;
    min-height: 70vh;
}

.search-hero {
    padding-top: clamp(60px, 8vw, 112px);
    padding-bottom: 34px;
}

.search-hero h1 {
    max-width: 860px;
    margin: 14px 0 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.6rem, 6vw, 6.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: #111820;
}

.product-search-form {
    display: grid;
    grid-template-columns: minmax(0, 620px) auto;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
}

.product-search-form input {
    min-height: 54px;
    border: 1px solid rgba(17,24,32,0.14);
    border-radius: 999px;
    padding: 0 18px;
    background: #fff;
    color: #111820;
    font: inherit;
}

.product-search-summary {
    margin-top: 18px;
    color: #4e5a66;
    font-weight: 700;
}

.product-search-results {
    display: grid;
    gap: 16px;
    padding-bottom: clamp(70px, 8vw, 118px);
}

.product-search-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    padding: clamp(20px, 4vw, 38px);
    border: 1px solid rgba(17,24,32,0.10);
    background: #fff;
}

.product-search-image {
    display: grid;
    place-items: center;
    min-height: 210px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f3f5f4, #ffffff);
}

.product-search-image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(17,24,32,0.12));
}

.product-search-card h2 {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

.product-search-card h2 a {
    color: #111820;
    text-decoration: none;
}

.product-search-card p {
    max-width: 720px;
    color: #4e5a66;
    line-height: 1.75;
}

.product-search-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.product-search-actions a {
    color: #111820;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Support troubleshooting contrast correction */
.troubleshooting-section {
    background: #f8f9f7;
    color: #111820;
}

.troubleshooting-section .section-title,
.troubleshooting-section .section-subtitle,
.ts-title,
.ts-inner,
.ts-list li,
.ts-list li strong {
    color: #111820 !important;
}

.troubleshooting-section .section-subtitle,
.ts-list li {
    color: #394554 !important;
}

.ts-trigger {
    color: #111820 !important;
    background: #ffffff;
}

.ts-item {
    background: #ffffff;
    border-color: rgba(17,24,32,0.12) !important;
}

.ts-content {
    background: #ffffff;
}

.ts-icon {
    color: #111820 !important;
}

header .logo img {
    width: 180px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: #08111d;
    padding: 3px 8px;
}

.nordic-header .logo img {
    width: 188px;
    height: 50px;
    border-radius: 6px;
    background: #08111d;
    padding: 3px 8px;
}

.nordic-footer .footer-logo,
footer .footer-logo {
    width: 190px;
    height: 54px;
    object-fit: contain;
    border-radius: 6px;
    background: #08111d;
    padding: 4px 8px;
    filter: none !important;
    display: block;
}

footer .logo-text-footer {
    display: inline-block;
    width: auto;
    height: auto;
    margin-bottom: 14px;
    line-height: 0;
}

footer .logo-text-footer .footer-logo {
    margin-bottom: 0;
}

/* Support form readability */
.contact-form-support {
    gap: 18px;
}

.support-field {
    display: grid;
    gap: 8px;
}

.support-field span {
    color: #111820;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-support input,
.contact-form-support select,
.contact-form-support textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17,24,32,0.16) !important;
    border-radius: 8px;
    background: #ffffff !important;
    color: #111820 !important;
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-support textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form-support input::placeholder,
.contact-form-support textarea::placeholder {
    color: #7a8792 !important;
    opacity: 1;
}

.contact-form-support select:invalid {
    color: #7a8792 !important;
}

.contact-form-support input:focus,
.contact-form-support select:focus,
.contact-form-support textarea:focus {
    border-color: var(--nordic-green) !important;
    box-shadow: 0 0 0 4px rgba(47,107,89,0.12);
}

.support-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    border-radius: 999px;
    background: #111820 !important;
    color: #ffffff !important;
    border-color: #111820 !important;
}

.support-submit::before {
    display: none !important;
}

.support-submit:hover {
    transform: translateY(-2px);
    background: #2f6b59 !important;
    color: #ffffff !important;
    border-color: #2f6b59 !important;
    box-shadow: 0 16px 34px rgba(47,107,89,0.24) !important;
}

/* Products catalog page */
.products-page {
    background: #f8f9f7;
    color: var(--nordic-ink);
}

.products-hero {
    padding: 150px 0 86px;
    background:
        radial-gradient(circle at 78% 18%, rgba(47, 107, 89, 0.14), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f8f9f7 100%);
    overflow: hidden;
}

.products-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 70px;
    align-items: center;
}

.products-hero h1 {
    max-width: 720px;
    margin: 14px 0 22px;
    font-size: clamp(2.6rem, 5vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.products-hero p {
    max-width: 630px;
    color: #5d6975;
    font-size: 1.05rem;
    line-height: 1.75;
}

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

.products-hero-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.products-hero-visual::before {
    content: "";
    position: absolute;
    inset: 7% 4% 2%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(227,233,229,0.62));
    box-shadow: 0 34px 90px rgba(28, 45, 58, 0.12);
}

.products-hero-visual img {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    filter: drop-shadow(0 42px 46px rgba(24, 39, 51, 0.18));
    animation: productFloat 6s ease-in-out infinite;
}

.hero-spec-pill {
    position: absolute;
    z-index: 2;
    padding: 11px 16px;
    border: 1px solid rgba(17, 24, 32, 0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 18px 42px rgba(28, 45, 58, 0.12);
    color: #26313d;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.pill-one { left: 3%; top: 22%; }
.pill-two { right: 2%; top: 38%; }
.pill-three { left: 12%; bottom: 15%; }

.product-category-nav {
    position: sticky;
    top: 74px;
    z-index: 15;
    padding: 14px 0;
    background: rgba(248,249,247,0.82);
    border-top: 1px solid rgba(17,24,32,0.06);
    border-bottom: 1px solid rgba(17,24,32,0.08);
    backdrop-filter: blur(18px) saturate(140%);
}

.product-category-nav .container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-category-nav .container::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid rgba(17,24,32,0.10);
    border-radius: 999px;
    color: #34414d;
    background: rgba(255,255,255,0.72);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.category-chip:hover,
.category-chip.active {
    transform: translateY(-2px);
    color: #ffffff;
    background: var(--nordic-green);
    box-shadow: 0 14px 34px rgba(47,107,89,0.22);
}

.product-family {
    scroll-margin-top: 135px;
    padding: 92px 0;
}

.product-family.soft-band {
    background: #eef2ef;
}

.family-heading {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 0.68fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 36px;
}

.family-heading h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3.6vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

.family-heading > p {
    color: #66727d;
    line-height: 1.75;
    font-size: 1rem;
}

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

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

.catalog-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.92fr) minmax(260px, 1.08fr);
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(17,24,32,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.76);
    box-shadow: 0 24px 70px rgba(20, 32, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nordic-green), rgba(47,107,89,0));
    opacity: 0;
    transition: opacity 0.28s ease;
}

.catalog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(47,107,89,0.26);
    box-shadow: 0 34px 88px rgba(20, 32, 42, 0.14);
}

.catalog-card:hover::after {
    opacity: 1;
}

.catalog-card.featured-product {
    grid-column: span 2;
    grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
}

.single-family .catalog-card.featured-product {
    grid-column: span 1;
}

.catalog-media {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 34px;
    background:
        radial-gradient(circle at 50% 52%, rgba(47,107,89,0.10), transparent 54%),
        linear-gradient(180deg, rgba(248,249,247,0.92), rgba(234,239,235,0.68));
}

.catalog-media img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 26px 26px rgba(24, 39, 51, 0.14));
    transition: transform 0.34s ease;
}

.catalog-card:hover .catalog-media img {
    transform: scale(1.045) translateY(-4px);
}

.catalog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.product-line {
    width: max-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(47,107,89,0.10);
    color: var(--nordic-green);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-copy h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.catalog-copy h3 a {
    color: #111820;
    text-decoration: none;
}

.catalog-copy p {
    color: #5f6c77;
    line-height: 1.65;
}

.catalog-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
}

.catalog-specs span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef3ef;
    color: #33414c;
    font-size: 0.78rem;
    font-weight: 800;
}

.catalog-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.catalog-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.catalog-actions a:first-child {
    background: #111820;
    color: #fff;
}

.catalog-actions a:last-child {
    border: 1px solid rgba(17,24,32,0.12);
    color: #111820;
    background: #fff;
}

.catalog-actions a:hover {
    transform: translateY(-2px);
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(-0.4deg); }
    50% { transform: translateY(-12px) rotate(0.4deg); }
}

@media (max-width: 980px) {
    .products-hero-grid,
    .family-heading,
    .catalog-card,
    .catalog-card.featured-product {
        grid-template-columns: 1fr;
    }

    .catalog-card.featured-product {
        grid-column: span 1;
    }

    .products-hero-visual {
        min-height: 360px;
    }

    .product-category-nav {
        top: 64px;
    }
}

@media (max-width: 680px) {
    .products-hero {
        padding: 120px 0 62px;
    }

    .products-hero-actions,
    .catalog-actions {
        flex-direction: column;
    }

    .products-hero-visual {
        min-height: 280px;
    }

    .hero-spec-pill {
        display: none;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-media {
        min-height: 230px;
    }

    .catalog-copy {
        padding: 26px;
    }
}

/* Upgraded product detail pages */
.product-detail-upgraded {
    background: #f8f9f7;
    color: var(--nordic-ink);
}

.product-detail-upgraded .breadcrumb {
    padding-top: 104px;
    background: #ffffff;
}

.product-detail-hero {
    padding: 34px 0 82px;
    background:
        radial-gradient(circle at 76% 14%, rgba(47,107,89,0.12), transparent 33rem),
        linear-gradient(180deg, #ffffff 0%, #f8f9f7 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1.08fr);
    gap: 58px;
    align-items: center;
}

.detail-media-card {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(17,24,32,0.08);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 48%, rgba(47,107,89,0.12), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232,238,234,0.72));
    box-shadow: 0 34px 90px rgba(20,32,42,0.10);
}

.detail-media-card .product-line {
    position: absolute;
    top: 24px;
    left: 24px;
}

.detail-media-card img {
    width: min(82%, 620px);
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 34px 36px rgba(24,39,51,0.16));
    animation: productFloat 6.4s ease-in-out infinite;
}

.detail-summary h1 {
    margin: 12px 0 14px;
    font-size: clamp(2.4rem, 4.6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.detail-summary .product-tagline {
    max-width: 620px;
    margin-bottom: 18px;
    color: #34404c;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.5;
}

.detail-intro {
    max-width: 660px;
    margin-bottom: 30px;
    color: #62707b;
    font-size: 1rem;
    line-height: 1.8;
}

.detail-summary .variant-group {
    margin-bottom: 18px;
}

.detail-summary .variant-group label {
    display: block;
    margin-bottom: 10px;
    color: #111820;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.detail-metrics-section {
    padding: 0 0 74px;
    background: #f8f9f7;
}

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

.detail-metric {
    min-height: 138px;
    padding: 24px;
    border: 1px solid rgba(17,24,32,0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(20,32,42,0.07);
}

.detail-metric span {
    display: block;
    margin-bottom: 12px;
    color: #6a7782;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-metric strong {
    display: block;
    color: #111820;
    font-size: 1.12rem;
    line-height: 1.35;
}

.detail-tabs-section {
    border-top: 1px solid rgba(17,24,32,0.08);
    background: #ffffff;
}

.enhanced-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.enhanced-list li,
.scenario-grid div {
    padding: 18px 20px;
    border: 1px solid rgba(17,24,32,0.08);
    border-radius: 8px;
    background: #f8f9f7;
    color: #3e4b56;
    line-height: 1.6;
}

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

.version-note {
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(47,107,89,0.16);
    border-radius: 8px;
    background: rgba(47,107,89,0.07);
    color: #3f4d58;
    line-height: 1.6;
}

.version-note strong {
    color: #111820;
}

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

.version-row {
    padding: 24px;
    border: 1px solid rgba(17,24,32,0.08);
    border-radius: 8px;
    background: #f8f9f7;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.version-row.active {
    transform: translateY(-4px);
    border-color: rgba(47,107,89,0.38);
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(20,32,42,0.10);
}

.version-row div:first-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.version-row span {
    color: var(--nordic-green);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.version-row strong {
    color: #111820;
    font-size: 1.35rem;
    line-height: 1.25;
}

.version-row p {
    margin-bottom: 16px;
    color: #5f6c77;
    line-height: 1.7;
}

.version-row ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
    color: #34414d;
}

@media (max-width: 980px) {
    .product-detail-grid,
    .detail-metrics-grid,
    .enhanced-list,
    .scenario-grid,
    .version-comparison {
        grid-template-columns: 1fr;
    }

    .detail-media-card {
        min-height: 380px;
    }
}

@media (max-width: 680px) {
    .product-detail-upgraded .breadcrumb {
        padding-top: 90px;
    }

    .product-detail-hero {
        padding-bottom: 56px;
    }

    .product-detail-grid {
        gap: 32px;
    }

    .detail-media-card {
        min-height: 300px;
    }

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

.nordic-footer .footer-links h4,
.nordic-footer .footer-links a,
.nordic-footer .footer-brand p,
.nordic-footer .footer-bottom {
    color: var(--nordic-ink);
}

.nordic-footer .footer-links a:hover {
    color: var(--nordic-green);
}

.nordic-footer .footer-bottom {
    border-top: 1px solid var(--nordic-line);
}

.nordic-home .reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    filter: none;
    transition: opacity 720ms cubic-bezier(.22,.61,.36,1), transform 720ms cubic-bezier(.22,.61,.36,1);
}

.nordic-home .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .nordic-header {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 28px;
    }

    .nordic-split,
    .nordic-story-grid,
    .nordic-category-grid {
        grid-template-columns: 1fr;
    }

    .nordic-category-card.large {
        min-height: 520px;
    }

    .nordic-product-grid,
    .nordic-product-grid.four,
    .nordic-use-grid,
    .nordic-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nordic-header nav {
        height: 62px;
    }

    .nordic-header .logo img {
        width: 112px;
        height: auto;
    }

    .nordic-header nav ul {
        position: fixed;
        top: 78px;
        right: 8px;
        left: auto;
        width: min(340px, calc(100vw - 16px));
        height: auto;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255,255,255,0.97);
        border: 1px solid var(--nordic-line);
        box-shadow: 0 24px 70px rgba(17,24,32,0.18);
    }

    .nordic-header nav ul.active {
        display: flex;
    }

    .nordic-header nav ul li a {
        display: block;
        padding: 15px 8px;
        font-size: 0.86rem;
    }

    .nordic-header nav {
        gap: 8px;
    }

    .nordic-header .mobile-menu-btn {
        order: 4;
        flex: 0 0 auto;
        padding: 8px;
    }

    .nordic-actions {
        display: flex !important;
        order: 3;
        gap: 5px;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nordic-actions .icon-action {
        display: inline-grid !important;
        width: 34px;
        height: 34px;
    }

    .nordic-actions .icon-action svg {
        width: 16px;
        height: 16px;
    }

    .nordic-hero {
        min-height: 92svh;
    }

    .nordic-hero-shade {
        background: linear-gradient(180deg, rgba(248,249,247,0.90), rgba(248,249,247,0.62) 48%, rgba(248,249,247,0.86));
    }

    .nordic-hero h1 {
        font-size: clamp(3.5rem, 16vw, 5.8rem);
    }

    .nordic-hero-meta {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 2;
        flex-direction: column;
        padding: 0 clamp(18px, 3vw, 42px) 28px;
        margin-top: -86px;
    }

    .nordic-category-card,
    .nordic-category-card.large {
        min-height: 420px;
    }

    .nordic-product-grid,
    .nordic-product-grid.four,
    .nordic-use-grid,
    .nordic-trust-grid {
        grid-template-columns: 1fr;
    }

    .nordic-product-actions {
        opacity: 1;
        transform: none;
    }

    .site-search-form {
        grid-template-columns: 1fr;
    }

    .product-search-form,
    .product-search-card {
        grid-template-columns: 1fr;
    }

    .product-search-image {
        min-height: 190px;
    }
}

@media (max-width: 390px) {
    .nordic-header .logo img {
        width: 92px;
    }

    .nordic-actions .icon-action {
        width: 31px;
        height: 31px;
    }

    .nordic-actions {
        gap: 4px;
    }

    .nordic-header .mobile-menu-btn {
        padding: 6px;
    }
}
