
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #F4F9FC;
            color: #1A2E35;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        :root {
            --primary-dark: #0F4C5C;
            --primary-mid: #1A6F7F;
            --primary-light: #E1F0F3;
            --accent: #F4A261;
            --accent-dark: #E76F51;
            --soft-gray: #F8F9FA;
            --card-white: #FFFFFF;
            --text-dark: #1E2F36;
            --text-muted: #5D6E75;
            --shadow-sm: 0 8px 20px rgba(0,0,0,0.05);
            --shadow-md: 0 20px 35px -12px rgba(0,0,0,0.1);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navbar with Mega Menu */
        .navbar {
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid #DFE9ED;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.03);
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            background: var(--primary-dark);
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
        }
        .logo-text h1 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-dark);
        }
        .logo-text p {
            font-size: 0.65rem;
            color: var(--accent-dark);
            font-weight: 600;
        }
        /* Desktop Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-dark);
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover, .nav-menu .active-link {
            color: var(--accent);
        }
        .menu-cta {
            background: var(--accent);
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            color: #2C2C2C !important;
            font-weight: 700;
        }
        .menu-cta:hover {
            background: var(--accent-dark);
            color: white !important;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
        }
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                padding: 1rem;
                border-radius: 24px;
                margin-top: 1rem;
                gap: 1rem;
                box-shadow: var(--shadow-md);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }

        /* Buttons */
        .btn-primary {
            background: var(--accent);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            background: var(--accent-dark);
            color: white;
            transform: translateY(-3px);
        }
        .btn-outline-light {
            background: transparent;
            border: 1.5px solid white;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            color: white;
            font-weight: 600;
        }

        /* Hero */
        .parallax-hero {
            background-image: linear-gradient(rgba(15,76,92,0.75), rgba(15,76,92,0.8)), url('https://images.unsplash.com/photo-1584515933487-779824d29309?q=80&w=2070&auto=format');
            background-attachment: fixed;
            background-size: cover;
            padding: 5rem 0;
            color: white;
            text-align: center;
        }

        /* Sections */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 3px;
            background: var(--accent);
        }
        .grid-3, .grid-2 {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }
        .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
        
        /* Basket Page Layout */
        .basket-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem 0;
        }
        .catalog-section { flex: 2.5; }
        .expert-sidebar {
            flex: 1.3;
            background: white;
            border-radius: 32px;
            padding: 1.5rem;
            position: sticky;
            top: 100px;
            height: fit-content;
            box-shadow: var(--shadow-sm);
        }
        .category-card {
            background: white;
            border-radius: 24px;
            margin-bottom: 1.8rem;
            overflow: hidden;
            border: 1px solid #e2edf0;
        }
        .category-header {
            background: var(--primary-dark);
            color: white;
            padding: 1rem 1.5rem;
            font-weight: 700;
        }
        .product-grid-cat {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.6rem;
            padding: 1rem;
        }
        .product-item {
            background: #F8FAFE;
            padding: 0.6rem 0.8rem;
            border-radius: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .add-btn {
            background: var(--primary-light);
            border: none;
            width: 30px;
            border-radius: 30px;
            cursor: pointer;
        }
        footer {
            background: #0A2A2F;
            color: #CDE5EA;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .faq-item {
            background: white;
            margin: 1rem 0;
            padding: 1.2rem;
            border-radius: 20px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            border-radius: 24px;
            border: 1px solid #ddd;
        }

        a.btn-primary {
            text-decoration: none;
            color: #2c2c2c;
            justify-content: center;
        }
        a.btn-primary:hover { color: #fff; }

        .logo-area--link {
            text-decoration: none;
            color: inherit;
        }

        .hero-title {
            font-size: clamp(1.85rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.15;
        }
        .hero-lead {
            font-size: 1.15rem;
            margin: 1rem auto 1.5rem;
            max-width: 640px;
            opacity: 0.95;
            line-height: 1.55;
        }
        .hero-cta { justify-content: center; }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .stat-pill {
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(6px);
            padding: 0.55rem 1.1rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.25);
        }

        .section-block { margin: 3.5rem 0; }
        .section-title--left { display: block; }
        .section-title--left:after { left: 0; }

        .step-badge {
            background: var(--primary-light);
            width: 45px;
            height: 45px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .split-media {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            margin-top: 2rem;
            align-items: center;
        }
        .split-media--reverse { flex-direction: row-reverse; }
        .split-media__img-wrap { flex: 1; min-width: 280px; }
        .split-media__text { flex: 1.4; min-width: 280px; }
        .split-media__img {
            width: 100%;
            border-radius: 28px;
            height: 280px;
            object-fit: cover;
            box-shadow: var(--shadow-md);
        }
        .split-media__text p {
            line-height: 1.65;
            color: var(--text-muted);
        }
        .mt-1 { margin-top: 1rem; }
        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            margin-top: 1.25rem;
            font-weight: 600;
            color: var(--primary-mid);
            text-decoration: none;
        }
        .text-link:hover { color: var(--accent-dark); }

        .contact-teaser {
            background: var(--card-white);
            border-radius: 32px;
            padding: 2rem 2.25rem;
            box-shadow: var(--shadow-sm);
        }
        .contact-teaser__grid p {
            margin: 0.5rem 0;
            color: var(--text-dark);
        }
        .contact-teaser__grid i {
            color: var(--primary-mid);
            width: 1.25rem;
            margin-right: 0.5rem;
        }

        .page-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3540 45%, var(--primary-mid) 100%);
            color: #fff;
            padding: 4rem 0 3.5rem;
            margin-bottom: 0;
        }
        .page-hero--compact { padding: 2.75rem 0 2.25rem; }
        .page-hero__inner { max-width: 720px; }
        .page-hero__eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }
        .page-hero__title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .page-hero__lead {
            font-size: 1.05rem;
            line-height: 1.6;
            opacity: 0.92;
            max-width: 560px;
        }
        .page-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .breadcrumb {
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
            opacity: 0.85;
        }
        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.35);
        }
        .breadcrumb a:hover { border-bottom-color: var(--accent); }
        .breadcrumb span[aria-hidden="true"] { margin: 0 0.5rem; opacity: 0.6; }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 1.15rem;
            border-radius: 999px;
            border: 1.5px solid rgba(255,255,255,0.45);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,0.12);
            border-color: var(--accent);
            color: var(--accent);
        }
        .btn-ghost--on-dark { border-color: rgba(255,255,255,0.5); }

        .btn-ghost-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 1.15rem;
            border-radius: 999px;
            border: 1.5px solid #c5d8de;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .btn-ghost-light:hover {
            border-color: var(--primary-mid);
            background: var(--primary-light);
        }

        .catalog-page-wrap { padding-bottom: 3rem; }
        .catalog-intro {
            margin: 2rem 0 1rem;
            max-width: 720px;
        }
        .catalog-intro__title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
        }
        .catalog-intro__sub {
            margin-top: 0.5rem;
            color: var(--text-muted);
            line-height: 1.55;
        }
        .catalog-hint {
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 0.85rem 1.1rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 0.92rem;
            margin-bottom: 1.25rem;
        }
        .catalog-hint i { margin-right: 0.4rem; opacity: 0.85; }

        .inquiry-panel {
            background: var(--card-white);
            border-radius: 28px;
            padding: 1.75rem 2rem;
            margin: 2.5rem 0 1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e2edf0;
        }
        .inquiry-panel h3 {
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin-bottom: 0.35rem;
        }
        .inquiry-panel__sub {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 1.25rem;
        }
        .inquiry-panel__row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }
        .inquiry-panel__row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border-radius: 999px;
            border: 1px solid #dfe7ea;
            font-family: inherit;
        }

        .expert-form input,
        .expert-form select,
        .expert-form textarea {
            width: 100%;
            padding: 10px 12px;
            margin: 6px 0;
            border-radius: 14px;
            border: 1px solid #dfe7ea;
            font-family: inherit;
        }
        .expert-form textarea { resize: vertical; min-height: 64px; }

        .add-item {
            background: var(--primary-mid);
            color: #fff;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            font-weight: 800;
            font-size: 1.1rem;
            line-height: 1;
            transition: 0.2s;
        }
        .add-item:hover {
            background: var(--accent-dark);
        }

        .footer-links a {
            display: block;
            color: #cde5ea;
            text-decoration: none;
            margin: 0.35rem 0;
            font-size: 0.92rem;
        }
        .footer-links a:hover { color: var(--accent); }
        .footer-newsletter-input {
            width: 100%;
            max-width: 240px;
            padding: 8px 12px;
            border-radius: 30px;
            border: none;
            margin-top: 0.35rem;
        }
        .footer-newsletter-btn {
            margin-top: 8px;
            background: var(--accent);
            border: none;
            padding: 8px 14px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
        }
        .footer-newsletter-btn:hover { background: var(--accent-dark); color: #fff; }
        .footer-copy {
            text-align: center;
            margin-top: 2rem;
            font-size: 0.88rem;
            opacity: 0.85;
        }

        .section-stack > * + * { margin-top: 0; }
        .section-stack { padding-bottom: 3rem; }
        .section-stack > section + section { margin-top: 3.5rem; }

        .pillar-card {
            background: var(--card-white);
            border-radius: 24px;
            padding: 1.75rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8f0f2;
            transition: 0.25s;
        }
        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .pillar-card h3 { color: var(--primary-dark); margin: 0.5rem 0 0.65rem; }
        .pillar-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }
        .pillar-card__icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--primary-light);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
        }

        .metrics-band {
            background: linear-gradient(90deg, var(--primary-dark), #123d48);
            border-radius: 28px;
            padding: 2rem 1.5rem;
            color: #e8f6f9;
        }
        .metrics-band__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }
        .metric__num {
            display: block;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--accent);
        }
        .metric__label { font-size: 0.88rem; opacity: 0.9; }

        .cta-panel {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            background: var(--card-white);
            border-radius: 28px;
            padding: 2rem 2.25rem;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2edf0;
        }
        .cta-panel__title { font-size: 1.35rem; color: var(--primary-dark); margin-bottom: 0.35rem; }
        .cta-panel__text { color: var(--text-muted); max-width: 480px; line-height: 1.55; }
        .cta-panel__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 2.5rem;
            align-items: start;
            padding-bottom: 4rem;
        }
        @media (max-width: 900px) {
            .contact-layout { grid-template-columns: 1fr; }
        }
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .info-card {
            background: var(--card-white);
            border-radius: 20px;
            padding: 1.35rem 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8f0f2;
        }
        .info-card__icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.65rem;
        }
        .info-card h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 0.35rem; }
        .info-card p { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; }
        .info-card a { color: var(--primary-mid); text-decoration: none; font-weight: 600; }
        .info-card a:hover { color: var(--accent-dark); }
        .info-card__muted { font-size: 0.85rem; opacity: 0.85; }

        .contact-form-panel {
            background: var(--card-white);
            border-radius: 28px;
            padding: 2rem 2.25rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8f0f2;
        }
        .contact-form-panel__intro {
            color: var(--text-muted);
            margin: 0.75rem 0 1.5rem;
            line-height: 1.55;
        }
        .contact-form--modern .field-label {
            display: block;
            margin-bottom: 1rem;
        }
        .contact-form--modern .field-label span {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 0.35rem;
        }
        .contact-form--modern input,
        .contact-form--modern select,
        .contact-form--modern textarea {
            width: 100%;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid #dfe7ea;
            font-family: inherit;
            margin: 0;
        }
        .contact-form--modern textarea { resize: vertical; min-height: 120px; }
        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 560px) {
            .form-row-2 { grid-template-columns: 1fr; }
            .inquiry-panel__row input { min-width: 100%; }
        }

        .section-see-all {
            margin: -0.25rem 0 1.25rem;
        }
        .section-see-all .text-link { margin-top: 0; }

        .how-intro {
            max-width: 720px;
            font-size: 1.05rem;
            line-height: 1.65;
            color: var(--text-muted);
            margin: 2rem 0 2.5rem;
        }
        .how-intro a { color: var(--primary-mid); font-weight: 600; }

        .how-timeline {
            list-style: none;
            margin: 0 0 2.5rem;
            padding: 0;
            position: relative;
        }
        .how-timeline::before {
            content: "";
            position: absolute;
            left: 22px;
            top: 12px;
            bottom: 12px;
            width: 3px;
            background: linear-gradient(180deg, var(--primary-light), #c5dde3);
            border-radius: 3px;
        }
        .how-timeline__item {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 1.25rem 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }
        .how-timeline__marker {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: var(--primary-dark);
            color: #fff;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(15, 76, 92, 0.25);
            z-index: 1;
        }
        .how-timeline__body {
            background: var(--card-white);
            border-radius: 22px;
            padding: 1.35rem 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8f0f2;
        }
        .how-timeline__title {
            font-size: 1.15rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .how-timeline__body p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .how-timeline__body a {
            color: var(--primary-mid);
            font-weight: 600;
            text-decoration: none;
        }
        .how-timeline__body a:hover { color: var(--accent-dark); text-decoration: underline; }

        .how-aside {
            background: linear-gradient(135deg, var(--primary-light) 0%, #f0f8fa 100%);
            border: 1px solid #d0e4ea;
            border-radius: 24px;
            padding: 1.5rem 1.75rem;
            margin-bottom: 2.5rem;
        }
        .how-aside__title {
            font-size: 1.05rem;
            color: var(--primary-dark);
            margin-bottom: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .how-aside__list {
            margin: 0;
            padding-left: 1.25rem;
            color: var(--text-dark);
            line-height: 1.65;
        }
        .how-aside__list li { margin: 0.4rem 0; }

        @media (max-width: 560px) {
            .how-timeline::before { left: 19px; }
            .how-timeline__item { grid-template-columns: 40px 1fr; gap: 1rem; }
            .how-timeline__marker { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; }
        }

        .faq-page { padding-bottom: 3rem; max-width: 800px; }
        .faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
        .faq-details {
            background: var(--card-white);
            border-radius: 18px;
            border: 1px solid #e2edf0;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .faq-details summary {
            list-style: none;
            cursor: pointer;
            padding: 1.1rem 1.35rem;
            font-weight: 700;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: 1rem;
        }
        .faq-details summary::-webkit-details-marker { display: none; }
        .faq-details summary::after {
            content: "+";
            font-weight: 800;
            color: var(--accent-dark);
            font-size: 1.25rem;
            line-height: 1;
            flex-shrink: 0;
        }
        .faq-details[open] summary::after { content: "−"; }
        .faq-details summary:hover { background: #fafcfd; }
        .faq-details__body {
            padding: 0 1.35rem 1.15rem;
            border-top: 1px solid #eef4f6;
        }
        .faq-details__body p {
            color: var(--text-muted);
            line-height: 1.65;
            font-size: 0.95rem;
            margin-top: 0.85rem;
        }
        .faq-details__body a {
            color: var(--primary-mid);
            font-weight: 600;
            text-decoration: none;
        }
        .faq-details__body a:hover { color: var(--accent-dark); text-decoration: underline; }

        .faq-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding: 2rem;
            background: var(--card-white);
            border-radius: 24px;
            border: 1px solid #e8f0f2;
            box-shadow: var(--shadow-sm);
        }
        .faq-cta p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        @keyframes fade { from { opacity: 0; } to { opacity: 1; } }

        /* Dropdown navigation */
        .nav-menu { align-items: stretch; }
        .nav-item { position: relative; display: flex; align-items: center; }
        .nav-item > a.nav-link-main,
        .nav-item > button.nav-link-main {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-dark);
            font-size: 0.95rem;
            padding: 0.35rem 0;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }
        .nav-item > a.nav-link-main:hover,
        .nav-item.open > a.nav-link-main,
        .nav-item > button.nav-link-main:hover,
        .nav-item.open > button.nav-link-main { color: var(--accent); }
        .nav-caret { font-size: 0.7rem; opacity: 0.75; }
        .nav-submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: #fff;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2edf0;
            padding: 0.5rem 0;
            z-index: 1200;
        }
        .nav-item.open .nav-submenu { display: block; }
        @media (min-width: 1025px) {
            .nav-item:hover .nav-submenu { display: block; }
        }
        .nav-submenu a {
            display: block;
            padding: 0.55rem 1.1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 500;
        }
        .nav-submenu a:hover { background: var(--primary-light); color: var(--primary-dark); }
        @media (max-width: 1024px) {
            .nav-item { width: 100%; flex-direction: column; align-items: flex-start; }
            .nav-submenu {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                border: none;
                padding-left: 0.5rem;
            }
            .nav-item.open .nav-submenu { display: block; }
        }
