/* Cartier Magnificent Style - Auto-themed */
/* Unique prefix: ndlk- (Cartier) */
/* Fonts: Playfair Display + Lato */
/* Colors: Primary #81101b (Cartier Red), Accent #88cb12 (Regal Gold), BG #FFFDF9 */

:root {
    --ndlk-red: #8e0a2a;
    --ndlk-red-light: #9e2233;
    --ndlk-red-dark: #660d1f;
    --ndlk-gold: #8acb1d;
    --ndlk-gold-light: #9ad53c;
    --ndlk-gold-dark: #70a10f;
    --ndlk-ivory: #FFFDF9;
    --ndlk-pearl: #F8F5EF;
    --ndlk-onyx: #181a13;
    --ndlk-graphite: #514545;
    --ndlk-silver: #85858e;
    --ndlk-divider: #e3f0f5;
    --ndlk-shadow-subtle: rgba(141,14,41,0.06);
    --ndlk-shadow-elevated: rgba(140,10,32,0.12);
    --ndlk-shadow-gold: rgba(212,180,59,0.20);
    --ndlk-success: #236e46;
    --ndlk-warning: #b56519;
    --ndlk-radius-xs: 3px;
    --ndlk-radius-sm: 5px;
    --ndlk-radius-md: 9px;
    --ndlk-radius-lg: 12px;
    --ndlk-radius-pill: 100px;
    --ndlk-ease: 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--ndlk-onyx);
    background: var(--ndlk-ivory);
    min-height: 100vh;
}

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

/* ====== HEADER ====== */
.ndlk-header {
    background: rgba(255, 253, 249, 0.98);
    border-bottom: 1px solid var(--ndlk-divider);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(23px);
    box-shadow: 0 2px 18px var(--ndlk-shadow-subtle);
}

.ndlk-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0;
}

.ndlk-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--ndlk-red);
}

.ndlk-logo-emblem {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--ndlk-gold) 0%, var(--ndlk-gold-dark) 100%);
    border-radius: var(--ndlk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ndlk-red-dark);
    box-shadow: 0 6px 20px var(--ndlk-shadow-gold);
    position: relative;
}

.ndlk-logo-emblem::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 5px;
}

.ndlk-logo-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.ndlk-logo-title span {
    color: var(--ndlk-gold-dark);
}

/* Navigation */
.ndlk-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ndlk-nav-link {
    color: var(--ndlk-graphite);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 18px;
    border-radius: var(--ndlk-radius-xs);
    transition: var(--ndlk-ease);
    letter-spacing: 0.4px;
}

.ndlk-nav-link:hover {
    color: var(--ndlk-red);
    background: rgba(144,15,34,0.05);
}

.ndlk-nav-link.active {
    color: var(--ndlk-red);
    background: rgba(143,10,42,0.08);
}

.ndlk-header-btn {
    background: linear-gradient(145deg, var(--ndlk-red) 0%, var(--ndlk-red-light) 100%);
    color: #fff;
    padding: 14px 25px;
    border-radius: var(--ndlk-radius-pill);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--ndlk-ease);
    box-shadow: 0 4px 16px var(--ndlk-shadow-elevated);
    letter-spacing: 0.5px;
}

.ndlk-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--ndlk-shadow-elevated);
}

/* Burger Menu */
.ndlk-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.ndlk-burger-bar {
    width: 28px;
    height: 2px;
    background: var(--ndlk-red);
    border-radius: 3px;
    transition: var(--ndlk-ease);
}

.ndlk-burger.open .ndlk-burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ndlk-burger.open .ndlk-burger-bar:nth-child(2) {
    opacity: 0;
}

.ndlk-burger.open .ndlk-burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.ndlk-mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ndlk-ivory);
    z-index: 1000;
    padding: 110px 31px 43px;
    flex-direction: column;
    gap: 11px;
}

.ndlk-mobile-nav.open {
    display: flex;
}

.ndlk-mobile-link {
    color: var(--ndlk-onyx);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 21px 0;
    border-bottom: 1px solid var(--ndlk-divider);
    transition: var(--ndlk-ease);
}

.ndlk-mobile-link:hover {
    color: var(--ndlk-red);
    padding-left: 11px;
}

/* ====== HERO SECTION ====== */
.ndlk-hero {
    background: linear-gradient(160deg, var(--ndlk-red-dark) 0%, var(--ndlk-red) 50%, var(--ndlk-red-light) 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.ndlk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(207,180,48,0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.10) 0%, transparent 40%);
    pointer-events: none;
}

.ndlk-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--ndlk-ivory), transparent);
}

.ndlk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.ndlk-hero-badge {
    display: inline-block;
    background: rgba(205,167,47,0.22);
    border: 1px solid rgba(204,177,55,0.5);
    color: var(--ndlk-gold-light);
    padding: 15px 28px;
    border-radius: var(--ndlk-radius-pill);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 31px;
}

.ndlk-hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 24px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.ndlk-hero-heading span {
    color: var(--ndlk-gold);
}

.ndlk-hero-text {
    font-size: 19px;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 42px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ndlk-hero-actions {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.ndlk-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 16px 41px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--ndlk-radius-pill);
    transition: var(--ndlk-ease);
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.ndlk-btn-primary {
    background: linear-gradient(145deg, var(--ndlk-gold) 0%, var(--ndlk-gold-dark) 100%);
    color: var(--ndlk-red-dark);
    box-shadow: 0 8px 28px var(--ndlk-shadow-gold);
}

.ndlk-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--ndlk-shadow-gold);
}

.ndlk-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.ndlk-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

/* ====== CRITERIA BOX COMPONENT ====== */
.ndlk-criteria {
    background: #fff;
    border-radius: var(--ndlk-radius-lg);
    padding: 44px;
    margin: 53px 0;
    box-shadow: 0 12px 47px var(--ndlk-shadow-subtle);
    border: 1px solid var(--ndlk-divider);
    position: relative;
}

.ndlk-criteria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 5px;
    background: linear-gradient(90deg, var(--ndlk-red), var(--ndlk-gold), var(--ndlk-red));
    border-radius: 0 0 5px 4px;
}

.ndlk-criteria-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 31px;
}

.ndlk-criteria-icon {
    width: 57px;
    height: 54px;
    background: linear-gradient(145deg, var(--ndlk-gold) 0%, var(--ndlk-gold-dark) 100%);
    border-radius: var(--ndlk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px var(--ndlk-shadow-gold);
}

.ndlk-criteria-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ndlk-red);
}

.ndlk-criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 21px;
}

.ndlk-criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    padding: 21px;
    background: var(--ndlk-pearl);
    border-radius: var(--ndlk-radius-md);
    transition: var(--ndlk-ease);
}

.ndlk-criteria-item:hover {
    background: var(--ndlk-ivory);
    transform: translateX(6px);
    box-shadow: 0 4px 20px var(--ndlk-shadow-subtle);
}

.ndlk-criteria-num {
    width: 38px;
    height: 38px;
    background: var(--ndlk-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.ndlk-criteria-label {
    font-size: 12px;
    color: var(--ndlk-silver);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 3px;
}

.ndlk-criteria-text {
    font-weight: 600;
    color: var(--ndlk-onyx);
    font-size: 15px;
    line-height: 1.5;
}

/* ====== ARTICLE CONTENT ====== */
.ndlk-main {
    padding: 80px 0;
    background: #fff;
}

.ndlk-article {
    max-width: 820px;
    margin: 0 auto;
}

.ndlk-article h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--ndlk-red);
    margin: 55px 0 27px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ndlk-divider);
    position: relative;
}

.ndlk-article h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--ndlk-gold);
}

.ndlk-article h2:first-child {
    margin-top: 0;
}

.ndlk-article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--ndlk-onyx);
    margin: 35px 0 21px;
}

.ndlk-article p {
    font-size: 18px;
    color: var(--ndlk-graphite);
    margin-bottom: 20px;
    line-height: 1.85;
}

.ndlk-article ul, .ndlk-article ol {
    margin: 27px 0 28px 25px;
}

.ndlk-article li {
    font-size: 17px;
    margin-bottom: 13px;
    color: var(--ndlk-graphite);
}

.ndlk-article li strong {
    color: var(--ndlk-red);
}

.ndlk-article-image {
    width: 100%;
    border-radius: var(--ndlk-radius-lg);
    margin: 47px 0;
    box-shadow: 0 13px 38px var(--ndlk-shadow-subtle);
}

/* ====== COMPANIES TABLE ====== */
.ndlk-companies-wrap {
    margin: 59px 0;
    overflow-x: auto;
}

.ndlk-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--ndlk-radius-md);
    overflow: hidden;
    box-shadow: 0 6px 29px var(--ndlk-shadow-subtle);
}

.ndlk-companies-table th {
    background: var(--ndlk-red);
    color: #fff;
    font-weight: 600;
    padding: 20px 15px;
    text-align: left;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.ndlk-companies-table td {
    padding: 18px 19px;
    border-bottom: 1px solid var(--ndlk-divider);
    vertical-align: middle;
}

.ndlk-companies-table tr:last-child td {
    border-bottom: none;
}

.ndlk-companies-table tr:hover td {
    background: var(--ndlk-pearl);
}

.ndlk-rank-num {
    width: 36px;
    height: 36px;
    background: var(--ndlk-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ndlk-red-dark);
    font-size: 15px;
}

.ndlk-company-name {
    font-weight: 700;
    color: var(--ndlk-onyx);
    font-size: 16px;
}

.ndlk-company-tagline {
    font-size: 13px;
    color: var(--ndlk-gold-dark);
    font-weight: 600;
    margin-top: 3px;
}

.ndlk-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 4px;
}

.ndlk-star {
    font-size: 13px;
    color: #e6e1e5;
}

.ndlk-star.filled {
    color: var(--ndlk-gold);
}

.ndlk-rating-score {
    font-weight: 700;
    color: var(--ndlk-onyx);
    font-size: 14px;
}

.ndlk-bbb-badge {
    background: var(--ndlk-success);
    color: #fff;
    padding: 3px 15px;
    border-radius: var(--ndlk-radius-xs);
    font-weight: 700;
    font-size: 14px;
}

.ndlk-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    color: var(--ndlk-graphite);
}

.ndlk-features-list li {
    margin-bottom: 5px;
    padding-left: 16px;
    position: relative;
}

.ndlk-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ndlk-gold-dark);
    font-weight: 700;
}

.ndlk-table-btn {
    padding: 7px 22px;
    background: linear-gradient(145deg, var(--ndlk-red) 0%, var(--ndlk-red-light) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: var(--ndlk-radius-xs);
    font-weight: 600;
    font-size: 12px;
    transition: var(--ndlk-ease);
    display: inline-block;
}

.ndlk-table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--ndlk-shadow-elevated);
}

/* ====== FAQ ACCORDION ====== */
.ndlk-faq {
    padding: 90px 0;
    background: var(--ndlk-pearl);
}

.ndlk-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.ndlk-section-label {
    display: inline-block;
    background: rgba(141,10,33,0.08);
    color: var(--ndlk-red);
    padding: 7px 26px;
    border-radius: var(--ndlk-radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 19px;
}

.ndlk-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--ndlk-red);
    margin-bottom: 14px;
}

.ndlk-section-subtitle {
    font-size: 18px;
    color: var(--ndlk-graphite);
    max-width: 640px;
    margin: 0 auto;
}

.ndlk-faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.ndlk-faq-item {
    background: #fff;
    border-radius: var(--ndlk-radius-md);
    margin-bottom: 21px;
    box-shadow: 0 4px 16px var(--ndlk-shadow-subtle);
    border: 1px solid var(--ndlk-divider);
    overflow: hidden;
}

.ndlk-faq-trigger {
    width: 100%;
    padding: 26px 27px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ndlk-onyx);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
    transition: var(--ndlk-ease);
}

.ndlk-faq-trigger:hover {
    background: var(--ndlk-pearl);
}

.ndlk-faq-indicator {
    width: 32px;
    height: 32px;
    background: var(--ndlk-pearl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ndlk-red);
    flex-shrink: 0;
    transition: var(--ndlk-ease);
}

.ndlk-faq-item.expanded .ndlk-faq-indicator {
    background: var(--ndlk-red);
    color: #fff;
    transform: rotate(180deg);
}

.ndlk-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ndlk-faq-item.expanded .ndlk-faq-content {
    max-height: 600px;
}

.ndlk-faq-body {
    padding: 0 30px 25px;
    font-size: 18px;
    color: var(--ndlk-graphite);
    line-height: 1.8;
}

/* ====== FOOTER ====== */
.ndlk-footer {
    background: linear-gradient(165deg, var(--ndlk-red-dark) 0%, var(--ndlk-red) 100%);
    color: #fff;
    padding: 71px 0 39px;
}

.ndlk-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 49px;
    margin-bottom: 50px;
}

.ndlk-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.ndlk-footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 11px;
}

.ndlk-footer-emblem {
    width: 46px;
    height: 44px;
    background: var(--ndlk-gold);
    border-radius: var(--ndlk-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ndlk-red-dark);
    font-weight: 700;
    font-size: 18px;
}

.ndlk-footer-brand p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.65;
    max-width: 300px;
}

.ndlk-footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ndlk-gold);
    margin-bottom: 19px;
    font-weight: 700;
}

.ndlk-footer-col a {
    display: block;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 13px;
    transition: var(--ndlk-ease);
}

.ndlk-footer-col a:hover {
    color: var(--ndlk-gold);
    padding-left: 11px;
}

.ndlk-footer-disclaimer {
    padding: 27px;
    background: rgba(0,0,0,0.18);
    border-radius: var(--ndlk-radius-md);
    margin-bottom: 34px;
}

.ndlk-footer-disclaimer p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.72;
}

.ndlk-footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
    color: rgba(255,255,255,0.52);
}

/* ====== CONTACT FORM ====== */
.ndlk-contandlk-page {
    padding: 79px 0;
    background: #fff;
}

.ndlk-contandlk-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 67px;
    max-width: 1000px;
    margin: 0 auto;
}

.ndlk-contandlk-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ndlk-contandlk-card {
    display: flex;
    gap: 23px;
    align-items: flex-start;
}

.ndlk-contandlk-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--ndlk-red) 0%, var(--ndlk-red-light) 100%);
    border-radius: var(--ndlk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ndlk-contandlk-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.ndlk-contandlk-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--ndlk-onyx);
    margin-bottom: 7px;
}

.ndlk-contandlk-text {
    font-size: 15px;
    color: var(--ndlk-graphite);
}

.ndlk-form-wrap {
    background: var(--ndlk-pearl);
    padding: 47px;
    border-radius: var(--ndlk-radius-lg);
}

.ndlk-form-row {
    margin-bottom: 26px;
}

.ndlk-form-label {
    display: block;
    font-weight: 600;
    color: var(--ndlk-onyx);
    margin-bottom: 7px;
    font-size: 17px;
}

.ndlk-form-input,
.ndlk-form-select,
.ndlk-form-textarea {
    width: 100%;
    padding: 15px 23px;
    border: 3px solid var(--ndlk-divider);
    border-radius: var(--ndlk-radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: var(--ndlk-ease);
    background: #fff;
}

.ndlk-form-input:focus,
.ndlk-form-select:focus,
.ndlk-form-textarea:focus {
    outline: none;
    border-color: var(--ndlk-red);
}

.ndlk-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.ndlk-form-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(145deg, var(--ndlk-red) 0%, var(--ndlk-red-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--ndlk-radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ndlk-ease);
}

.ndlk-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--ndlk-shadow-elevated);
}

.ndlk-form-success {
    display: none;
    padding: 25px;
    background: rgba(40,106,80,0.1);
    border-radius: var(--ndlk-radius-sm);
    color: var(--ndlk-success);
    text-align: center;
    margin-top: 22px;
}

.ndlk-form-success.visible {
    display: block;
}

/* ====== PAGE HEADER ====== */
.ndlk-page-header {
    background: linear-gradient(160deg, var(--ndlk-red-dark) 0%, var(--ndlk-red) 100%);
    color: #fff;
    padding: 73px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ndlk-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(206,169,47,0.12) 0%, transparent 55%);
    pointer-events: none;
}

.ndlk-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.ndlk-page-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* ====== STATIC PAGES ====== */
.ndlk-static-content {
    padding: 73px 0;
    background: #fff;
}

.ndlk-static-content .ndlk-container {
    max-width: 860px;
}

.ndlk-static-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ndlk-red);
    margin: 44px 0 15px;
}

.ndlk-static-content h2:first-child {
    margin-top: 0;
}

.ndlk-static-content p {
    font-size: 18px;
    color: var(--ndlk-graphite);
    margin-bottom: 17px;
    line-height: 1.82;
}

.ndlk-static-content ul {
    margin: 21px 0 27px 26px;
}

.ndlk-static-content li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--ndlk-graphite);
}

/* ====== BREADCRUMB ====== */
.ndlk-breadcrumb {
    padding: 13px 0;
    font-size: 16px;
    color: var(--ndlk-silver);
}

.ndlk-breadcrumb a {
    color: var(--ndlk-red);
    text-decoration: none;
}

.ndlk-breadcrumb a:hover {
    text-decoration: underline;
}

.ndlk-breadcrumb span {
    margin: 0 9px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .ndlk-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ndlk-contandlk-grid {
        grid-template-columns: 1fr;
        gap: 49px;
    }
}

@media (max-width: 768px) {
    .ndlk-header { position: relative !important; }
    .ndlk-nav {
        display: none;
    }

    .ndlk-header-btn {
        display: none;
    }

    .ndlk-burger {
        display: flex;
    }

    .ndlk-hero {
        padding: 73px 0 60px;
    }

    .ndlk-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .ndlk-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .ndlk-criteria {
        padding: 34px 23px;
    }

    .ndlk-criteria-list {
        grid-template-columns: 1fr;
    }

    .ndlk-companies-table th,
    .ndlk-companies-table td {
        padding: 17px 11px;
        font-size: 11px;
    }

    .ndlk-faq-trigger {
        padding: 25px 24px;
        font-size: 15px;
    }

    .ndlk-faq-body {
        padding: 0 26px 23px;
    }

    .ndlk-footer-grid {
        grid-template-columns: 1fr;
        gap: 39px;
    }

    .ndlk-form-wrap {
        padding: 33px 22px;
    }
}

@media (max-width: 480px) {
    .ndlk-container {
        padding: 0 20px;
    }

    .ndlk-header-wrap {
        padding: 13px 0;
    }

    .ndlk-logo-title {
        font-size: 20px;
    }

    .ndlk-logo-emblem {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .ndlk-criteria {
        padding: 26px 23px;
    }

    .ndlk-criteria-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes ndlk-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ndlk-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ndlk-hero-content {
    animation: ndlk-fadeInUp 0.8s ease-out;
}

.ndlk-criteria {
    animation: ndlk-fadeInUp 0.6s ease-out 0.2s both;
}

.ndlk-criteria-item {
    animation: ndlk-fadeInUp 0.5s ease-out both;
}

.ndlk-criteria-item:nth-child(1) { animation-delay: 0.1s; }
.ndlk-criteria-item:nth-child(2) { animation-delay: 0.15s; }
.ndlk-criteria-item:nth-child(3) { animation-delay: 0.2s; }
.ndlk-criteria-item:nth-child(4) { animation-delay: 0.25s; }
.ndlk-criteria-item:nth-child(5) { animation-delay: 0.3s; }
.ndlk-criteria-item:nth-child(6) { animation-delay: 0.35s; }

.ndlk-faq-item {
    animation: ndlk-fadeInUp 0.5s ease-out both;
}

.ndlk-faq-item:nth-child(1) { animation-delay: 0.1s; }
.ndlk-faq-item:nth-child(2) { animation-delay: 0.15s; }
.ndlk-faq-item:nth-child(3) { animation-delay: 0.2s; }
.ndlk-faq-item:nth-child(4) { animation-delay: 0.25s; }
.ndlk-faq-item:nth-child(5) { animation-delay: 0.3s; }

/* Table row hover animation */
.ndlk-companies-table tr {
    transition: var(--ndlk-ease);
}

.ndlk-companies-table tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 20px var(--ndlk-shadow-subtle);
}

/* Button press effect */
.ndlk-btn:active {
    transform: scale(0.98);
}

/* Link underline animation */
.ndlk-footer-col a {
    position: relative;
}

.ndlk-footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ndlk-gold);
    transition: width 0.3s ease;
}

.ndlk-footer-col a:hover::after {
    width: 100%;
}

/* Focus states for accessibility */
.ndlk-btn:focus,
.ndlk-nav-link:focus,
.ndlk-form-input:focus,
.ndlk-form-select:focus,
.ndlk-form-textarea:focus,
.ndlk-faq-trigger:focus {
    outline: 1px solid var(--ndlk-gold);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .ndlk-header,
    .ndlk-footer,
    .ndlk-burger,
    .ndlk-mobile-nav,
    #backToTop {
        display: none !important;
    }

    .ndlk-hero {
        background: #fff !important;
        color: #000 !important;
        padding: 20px 0 !important;
    }

    .ndlk-article {
        max-width: 100% !important;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 12px;
        color: #616f6a;
    }
}


/* Max width 1400px for desktop */
.ndlk-wrapper, .ndlk-content, .ndlk-hero-inner, .ndlk-companies-container, 
.ndlk-article, .ndlk-container, .ndlk-footer-inner, .ndlk-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.ndlk-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.ndlk-td-action {
    text-align: center !important;
}
.ndlk-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
