/* Cultioo More Info - Clean White Design */

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-soft: #f7f7f7;
    --text: #141414;
    --muted: rgba(20, 20, 20, 0.62);
    --line: rgba(20, 20, 20, 0.1);
    --line-soft: rgba(20, 20, 20, 0.05);
    --shadow: 0 18px 44px rgba(15, 15, 15, 0.06);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-pill: 999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 34px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.05);
    z-index: 1000;
}

.header h1 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0;
}

.header .big {
    color: var(--text);
}

.header .bite {
    color: rgba(20, 20, 20, 0.42);
    font-weight: 400;
}

.nav-buttons {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: var(--radius-pill);
    background: rgba(20, 20, 20, 0.04);
    position: relative;
    --indicator-left: 0px;
    --indicator-width: 0px;
}

.nav-buttons::before {
    content: '';
    position: absolute;
    top: 4px;
    left: var(--indicator-left, 0px);
    width: var(--indicator-width, 0px);
    height: calc(100% - 8px);
    border-radius: var(--radius-pill);
    background: #131313;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.28s ease;
}

.nav-btn,
.sub-nav-btn {
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.nav-btn {
    position: relative;
    z-index: 1;
    padding: 11px 18px;
    border-radius: var(--radius-pill);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.nav-btn.active {
    color: #ffffff;
}

.main-container {
    width: min(1180px, calc(100% - 40px));
    margin: 118px auto 72px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.95fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.page-hero-copy,
.page-hero-panel,
.content-section {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.page-hero-copy {
    padding: 38px 40px;
    border-radius: var(--radius-xl);
}

.page-kicker,
.info-card-label,
.contact-highlight-label,
.hero-stat-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(20, 20, 20, 0.5);
}

.page-hero-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    margin: 18px 0 18px;
    max-width: 11ch;
}

.page-hero-copy p {
    max-width: 62ch;
    font-size: 1.03rem;
    color: var(--muted);
}

.page-hero-panel {
    border-radius: var(--radius-xl);
    padding: 20px;
    display: grid;
    gap: 16px;
}

.hero-stat {
    background: var(--surface-strong);
    border-radius: calc(var(--radius-xl) - 8px);
    padding: 22px;
    box-shadow: inset 0 0 0 1px var(--line-soft);
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 12px 0 10px;
}

.hero-stat p {
    color: var(--muted);
    font-size: 0.95rem;
}

.right-panel {
    width: 100%;
}

#content-container {
    position: relative;
}

.content-section {
    display: none;
    border-radius: 38px;
    padding: 40px;
    margin-bottom: 26px;
    animation: fadeIn 0.45s ease;
}

.content-section.active {
    display: block;
}

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

.content-section h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.content-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 70ch;
    margin-bottom: 28px;
}

.info-grid,
.value-grid,
.contact-info {
    display: grid;
    gap: 18px;
}

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

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

.info-card,
.value-card,
.contact-item,
.contact-highlight,
.sub-content {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px var(--line);
}

.info-card,
.value-card,
.contact-item {
    padding: 24px;
}

.info-card h3,
.contact-highlight h3 {
    margin: 12px 0 10px;
    font-size: 1.4rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.info-card p,
.value-card p,
.contact-item p,
.contact-highlight p {
    color: var(--muted);
    font-size: 1rem;
}

.contact-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: 24px;
    padding: 26px 28px;
    margin-bottom: 22px;
}

.sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.sub-nav-btn {
    padding: 11px 18px;
    border-radius: var(--radius-pill);
    background: rgba(20, 20, 20, 0.045);
    color: rgba(20, 20, 20, 0.68);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.sub-nav-btn:hover {
    background: rgba(20, 20, 20, 0.08);
    color: var(--text);
}

.sub-nav-btn.active {
    background: #131313;
    color: #ffffff;
}

.sub-content {
    display: none;
    padding: 30px;
}

.sub-content.active {
    display: block;
}

.content-section h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin: 32px 0 14px;
}

.content-section h4 {
    font-size: 1.06rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 22px 0 10px;
    color: rgba(20, 20, 20, 0.88);
}

.content-section p,
.content-section li {
    font-size: 1rem;
    color: rgba(20, 20, 20, 0.78);
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin: 18px 0 18px;
    padding-left: 0;
    list-style: none;
}

.content-section li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.content-section ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111111;
    position: absolute;
    left: 0;
    top: 0.72em;
    transform: translateY(-50%);
}

.content-section ol {
    counter-reset: item;
}

.content-section ol li {
    counter-increment: item;
    padding-left: 34px;
}

.content-section ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #131313;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3,
.value-card h4 {
    margin-top: 0;
}

.site-footer {
    margin-top: auto;
    background: #101010;
    color: #ffffff;
    padding: 48px 24px 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

.footer-lang {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.footer-lang #lang-select,
#lang-select {
    min-width: 160px;
    padding: 10px 40px 10px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06) url('data:image/svg+xml;utf8,<svg fill="white" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 14px center/16px 16px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.footer-lang #lang-select option,
#lang-select option {
    background: #101010;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .header {
        padding: 16px 18px;
    }

    .page-hero,
    .contact-highlight,
    .info-grid,
    .contact-info,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .main-container {
        width: min(100% - 24px, 1180px);
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .header h1 {
        text-align: center;
        font-size: 1.6rem;
    }

    .nav-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .nav-btn {
        flex: 1;
        justify-content: center;
        padding: 11px 12px;
        font-size: 0.78rem;
    }

    .main-container {
        margin-top: 176px;
        margin-bottom: 48px;
    }

    .page-hero-copy,
    .page-hero-panel,
    .content-section,
    .sub-content {
        padding: 24px;
    }

    .content-section {
        border-radius: 30px;
    }

    .page-hero-copy h2 {
        max-width: none;
    }
}

@media (max-width: 520px) {
    .main-container {
        width: calc(100% - 16px);
    }

    .header {
        padding: 14px;
    }

    .nav-btn {
        font-size: 0.72rem;
        padding: 10px 8px;
    }

    .page-hero-copy,
    .page-hero-panel,
    .content-section,
    .sub-content,
    .contact-highlight,
    .info-card,
    .value-card,
    .contact-item {
        padding: 20px;
    }

    .content-section h1 {
        font-size: 1.95rem;
    }

    .content-lead,
    .content-section p,
    .content-section li {
        font-size: 0.96rem;
    }

    .footer-links {
        gap: 14px;
        flex-direction: column;
    }
}
