/* NEC Timeless Style - Auto-themed */
/* Unique prefix: nt- (NEC Timeless) */

:root {
    --naln-primary: #260e25;
    --naln-secondary: #33558a;
    --naln-accent: #e370f5;
    --naln-gold: #ed81f5;
    --naln-gold-muted: #bc9f3b;
    --naln-bg: #FAFAFE;
    --naln-bg-alt: #F0F0FA;
    --naln-bg-dark: #16315a;
    --naln-text: #2b1828;
    --naln-text-muted: #df7df5;
    --naln-text-light: #e879ef;
    --naln-border: #c9cdf5;
    --naln-border-dark: #d4cce4;
    --naln-white: #ffffff;
    --naln-success: #0d9961;
    --naln-warning: #d6770a;
    --naln-shadow-sm: 0 1px 3px rgba(28,58,97,0.08);
    --naln-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --naln-shadow-lg: 0 10px 40px rgba(26,62,98,0.15);
    --naln-radius: 5px;
    --naln-radius-lg: 10px;
    --naln-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--naln-text);
    background: var(--naln-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.naln-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.naln-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Header */
.naln-header {
    background: var(--naln-white);
    border-bottom: 1px solid var(--naln-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--naln-transition);
}

.naln-header.scrolled {
    box-shadow: var(--naln-shadow);
}

.naln-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 35px;
}

.naln-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--naln-primary);
}

.naln-logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--naln-primary) 0%, var(--naln-secondary) 100%);
    border-radius: var(--naln-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.naln-logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
}

.naln-logo-mark svg {
    width: 24px;
    height: 24px;
    fill: var(--naln-gold);
}

.naln-logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.naln-logo-text span {
    color: var(--naln-accent);
}

.naln-nav {
    display: flex;
    align-items: center;
    gap: 11px;
}

.naln-nav-link {
    padding: 11px 16px;
    color: var(--naln-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--naln-radius);
    transition: all var(--naln-transition);
    position: relative;
}

.naln-nav-link:hover {
    background: var(--naln-bg-alt);
    color: var(--naln-primary);
}

.naln-nav-link.active {
    background: var(--naln-primary);
    color: var(--naln-white);
}

.naln-header-cta {
    padding: 12px 21px;
    background: linear-gradient(145deg, var(--naln-accent), var(--naln-gold));
    color: var(--naln-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--naln-radius);
    transition: all var(--naln-transition);
    box-shadow: 0 2px 8px rgba(226,114,245,0.3);
}

.naln-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225,124,242,0.4);
}

/* Mobile Menu */
.naln-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.naln-burger-line {
    width: 24px;
    height: 2px;
    background: var(--naln-primary);
    border-radius: 3px;
    transition: all var(--naln-transition);
}

.naln-burger.active .naln-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.naln-burger.active .naln-burger-line:nth-child(2) {
    opacity: 0;
}

.naln-burger.active .naln-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.naln-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--naln-white);
    border-top: 1px solid var(--naln-border);
    box-shadow: var(--naln-shadow-lg);
    padding: 18px 23px;
}

.naln-mobile-nav.active {
    display: block;
}

.naln-mobile-link {
    display: block;
    padding: 17px 0;
    color: var(--naln-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--naln-border);
}

.naln-mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.naln-hero {
    background: linear-gradient(160deg, var(--naln-primary) 0%, var(--naln-secondary) 50%, #436697 100%);
    color: var(--naln-white);
    padding: 78px 0 100px;
    position: relative;
    overflow: hidden;
}

.naln-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.naln-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.naln-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 19px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(7px);
}

.naln-hero-badge-dot {
    width: 10px;
    height: 8px;
    background: var(--naln-gold);
    border-radius: 50%;
    animation: nt-pulse 2s infinite;
}

@keyframes nt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.naln-hero-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 21px;
    letter-spacing: -1px;
}

.naln-hero-title span {
    color: var(--naln-gold);
}

.naln-hero-desc {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 640px;
}

.naln-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.naln-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 17px 29px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--naln-radius);
    transition: all var(--naln-transition);
    border: none;
    cursor: pointer;
}

.naln-btn-primary {
    background: linear-gradient(145deg, var(--naln-accent), var(--naln-gold));
    color: var(--naln-primary);
    box-shadow: 0 4px 16px rgba(237,114,245,0.35);
}

.naln-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(236,124,245,0.45);
}

.naln-btn-outline {
    background: transparent;
    color: var(--naln-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.naln-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Companies Section */
.naln-companies {
    padding: 81px 0;
    background: var(--naln-white);
}

.naln-section-header {
    text-align: center;
    margin-bottom: 46px;
}

.naln-section-tag {
    display: inline-block;
    padding: 7px 16px;
    background: var(--naln-bg-alt);
    color: var(--naln-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 100px;
    margin-bottom: 19px;
}

.naln-section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--naln-primary);
    margin-bottom: 10px;
    letter-spacing: -0.6px;
}

.naln-section-desc {
    font-size: 17px;
    color: var(--naln-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.naln-companies-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.naln-company-card {
    display: grid;
    grid-template-columns: auto 120px 1fr auto auto;
    align-items: center;
    gap: 27px;
    padding: 25px 26px;
    background: var(--naln-white);
    border: 1px solid var(--naln-border);
    border-radius: var(--naln-radius-lg);
    transition: all var(--naln-transition);
}

.naln-company-card:hover {
    border-color: var(--naln-border-dark);
    box-shadow: var(--naln-shadow);
}

.naln-company-card.featured {
    background: linear-gradient(145deg, var(--naln-primary) 0%, var(--naln-secondary) 100%);
    border-color: var(--naln-primary);
}

.naln-company-rank {
    width: 40px;
    height: 40px;
    background: var(--naln-bg-alt);
    color: var(--naln-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
}

.naln-company-card.featured .naln-company-rank {
    background: var(--naln-gold);
    color: var(--naln-primary);
}

.naln-company-logo {
    width: 100px;
    height: auto;
    padding: 11px;
    background: var(--naln-white);
    border-radius: var(--naln-radius);
}

.naln-company-info {
    min-width: 0;
}

.naln-company-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--naln-text);
    margin-bottom: 3px;
}

.naln-company-card.featured .naln-company-name {
    color: var(--naln-white);
}

.naln-company-tagline {
    font-size: 14px;
    color: var(--naln-text-muted);
}

.naln-company-card.featured .naln-company-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.naln-company-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
}

.naln-company-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--naln-text-muted);
}

.naln-company-card.featured .naln-company-meta span {
    color: rgba(255, 255, 255, 0.7);
}

.naln-company-rating {
    color: var(--naln-gold) !important;
}

.naln-company-cta {
    padding: 11px 27px;
    background: var(--naln-bg-alt);
    color: var(--naln-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--naln-radius);
    transition: all var(--naln-transition);
    white-space: nowrap;
}

.naln-company-cta:hover {
    background: var(--naln-primary);
    color: var(--naln-white);
}

.naln-company-card.featured .naln-company-cta {
    background: var(--naln-gold);
    color: var(--naln-primary);
}

.naln-company-card.featured .naln-company-cta:hover {
    background: var(--naln-white);
}

/* Content Section */
.naln-content {
    padding: 78px 0;
    background: var(--naln-bg);
}

.naln-article {
    max-width: 780px;
    margin: 0 auto;
}

.naln-article h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--naln-primary);
    margin: 53px 0 26px 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

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

.naln-article h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--naln-text);
    margin: 41px 0 14px 0;
    line-height: 1.4;
}

.naln-article p {
    margin-bottom: 23px;
    color: var(--naln-text);
    line-height: 1.8;
}

.naln-article ul, .naln-article ol {
    margin: 24px 0;
    padding-left: 25px;
}

.naln-article li {
    margin-bottom: 14px;
    color: var(--naln-text);
    line-height: 1.7;
}

.naln-article li strong {
    color: var(--naln-primary);
}

.naln-article-img {
    margin: 39px 0;
    border-radius: var(--naln-radius-lg);
    overflow: hidden;
    box-shadow: var(--naln-shadow-lg);
}

.naln-article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.naln-article-img figcaption {
    padding: 19px 21px;
    background: var(--naln-white);
    font-size: 14px;
    color: var(--naln-text-muted);
    text-align: center;
    border-top: 1px solid var(--naln-border);
}

/* Feature Grid Component */
.naln-features {
    padding: 80px 0;
    background: var(--naln-white);
}

.naln-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 47px;
}

.naln-feature-card {
    padding: 35px;
    background: var(--naln-bg);
    border-radius: var(--naln-radius-lg);
    transition: all var(--naln-transition);
    border: 1px solid transparent;
}

.naln-feature-card:hover {
    background: var(--naln-white);
    border-color: var(--naln-border);
    box-shadow: var(--naln-shadow);
    transform: translateY(-4px);
}

.naln-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--naln-primary), var(--naln-secondary));
    border-radius: var(--naln-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.naln-feature-icon svg {
    width: 30px;
    height: 28px;
    stroke: var(--naln-gold);
    stroke-width: 2;
    fill: none;
}

.naln-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--naln-primary);
    margin-bottom: 13px;
}

.naln-feature-desc {
    font-size: 13px;
    color: var(--naln-text-muted);
    line-height: 1.65;
}

/* Pros Cons Component */
.naln-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 45px 0;
}

.naln-pros-block, .naln-cons-block {
    padding: 30px;
    border-radius: var(--naln-radius-lg);
}

.naln-pros-block {
    background: linear-gradient(145deg, #ecfdf5, #d6f5e1);
    border: 1px solid #a2f5d1;
}

.naln-cons-block {
    background: linear-gradient(145deg, #f5f3cd, #f5e281);
    border: 1px solid #f5cc48;
}

.naln-pros-title, .naln-cons-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 23px;
}

.naln-pros-title {
    color: #0a6846;
}

.naln-cons-title {
    color: #894313;
}

.naln-pros-list, .naln-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.naln-pros-list li, .naln-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-size: 17px;
    line-height: 1.5;
}

.naln-pros-list li::before {
    content: '+';
    font-weight: 700;
    color: #0a965f;
    font-size: 18px;
    line-height: 1.3;
}

.naln-cons-list li::before {
    content: '-';
    font-weight: 700;
    color: #cf730a;
    font-size: 18px;
    line-height: 1.3;
}

/* FAQ Accordion */
.naln-faq {
    padding: 81px 0;
    background: var(--naln-bg-alt);
}

.naln-faq-list {
    max-width: 780px;
    margin: 51px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.naln-faq-item {
    background: var(--naln-white);
    border: 1px solid var(--naln-border);
    border-radius: var(--naln-radius-lg);
    overflow: hidden;
    transition: all var(--naln-transition);
}

.naln-faq-item:hover {
    border-color: var(--naln-border-dark);
}

.naln-faq-item.active {
    border-color: var(--naln-primary);
    box-shadow: var(--naln-shadow);
}

.naln-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.naln-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--naln-text);
    line-height: 1.4;
}

.naln-faq-icon {
    width: 32px;
    height: 32px;
    background: var(--naln-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--naln-transition);
}

.naln-faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--naln-primary);
    stroke-width: 2;
    fill: none;
    transition: transform var(--naln-transition);
}

.naln-faq-item.active .naln-faq-icon {
    background: var(--naln-primary);
}

.naln-faq-item.active .naln-faq-icon svg {
    stroke: var(--naln-white);
    transform: rotate(180deg);
}

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

.naln-faq-item.active .naln-faq-answer {
    max-height: 500px;
}

.naln-faq-answer-content {
    padding: 0 23px 27px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--naln-text-muted);
}

/* Exit Popup Component */
.naln-exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28,55,89,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 22px;
    backdrop-filter: blur(11px);
}

.naln-exit-popup.active {
    display: flex;
}

.naln-exit-popup-content {
    background: var(--naln-white);
    border-radius: var(--naln-radius-lg);
    max-width: 520px;
    width: 100%;
    padding: 45px;
    text-align: center;
    position: relative;
    animation: nt-popup-in 0.4s ease;
}

@keyframes nt-popup-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.naln-exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--naln-bg-alt);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--naln-transition);
}

.naln-exit-popup-close:hover {
    background: var(--naln-primary);
    color: var(--naln-white);
}

.naln-exit-popup-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, var(--naln-accent), var(--naln-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.naln-exit-popup-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--naln-primary);
}

.naln-exit-popup-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--naln-primary);
    margin-bottom: 13px;
}

.naln-exit-popup-desc {
    font-size: 16px;
    color: var(--naln-text-muted);
    margin-bottom: 31px;
    line-height: 1.6;
}

.naln-exit-popup-cta {
    display: inline-flex;
    padding: 16px 33px;
    background: linear-gradient(145deg, var(--naln-primary), var(--naln-secondary));
    color: var(--naln-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--naln-radius);
    transition: all var(--naln-transition);
}

.naln-exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--naln-shadow-lg);
}

/* Footer */
.naln-footer {
    background: var(--naln-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 67px 0 33px;
    margin-top: auto;
}

.naln-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 46px;
    margin-bottom: 51px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.naln-footer-brand {
    max-width: 280px;
}

.naln-footer-brand .naln-logo {
    color: var(--naln-white);
    margin-bottom: 15px;
}

.naln-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.naln-footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--naln-white);
    margin-bottom: 23px;
}

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

.naln-footer-links li {
    margin-bottom: 12px;
}

.naln-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--naln-transition);
}

.naln-footer-links a:hover {
    color: var(--naln-gold);
}

.naln-footer-disclaimer {
    padding: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--naln-radius);
    margin-bottom: 31px;
}

.naln-footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.naln-footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .naln-company-card {
        grid-template-columns: auto 1fr auto;
        gap: 19px;
    }

    .naln-company-logo {
        display: none;
    }

    .naln-company-meta {
        display: none;
    }
}

@media (max-width: 768px) {
    .naln-nav, .naln-header-cta {
        display: none;
    }

    .naln-burger {
        display: flex;
    }

    .naln-hero {
        padding: 57px 0 82px;
    }

    .naln-hero-title {
        font-size: 32px;
    }

    .naln-hero-desc {
        font-size: 16px;
    }

    .naln-hero-actions {
        flex-direction: column;
    }

    .naln-btn {
        width: 100%;
    }

    .naln-section-title {
        font-size: 28px;
    }

    .naln-company-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
    }

    .naln-company-rank {
        margin: 0 auto;
    }

    .naln-company-cta {
        width: 100%;
    }

    .naln-article h2 {
        font-size: 26px;
    }

    .naln-article h3 {
        font-size: 20px;
    }

    .naln-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 29px;
    }

    .naln-footer-brand {
        grid-column: span 2;
        max-width: none;
    }

    .naln-pros-cons {
        grid-template-columns: 1fr;
    }

    .naln-exit-popup-content {
        padding: 34px 23px;
    }

    .naln-exit-popup-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .naln-footer-grid {
        grid-template-columns: 1fr;
    }

    .naln-footer-brand {
        grid-column: span 1;
    }
}

/* ========================================
   Companies Comparison Table - Timeless Classic Style
   ======================================== */
.naln-comparison-section {
    padding: 85px 0;
    background: var(--naln-cream);
}

.naln-comparison-header {
    text-align: center;
    margin-bottom: 55px;
}

.naln-comparison-label {
    display: inline-block;
    padding: 8px 15px;
    border: 3px solid var(--naln-navy);
    color: var(--naln-navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.naln-comparison-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--naln-navy);
    font-family: var(--naln-font-serif);
    margin-bottom: 17px;
}

.naln-comparison-subtitle {
    font-size: 16px;
    color: var(--naln-gray-600);
    max-width: 640px;
    margin: 0 auto;
}

.naln-comparison-table {
    width: 100%;
    background: var(--naln-white);
    border: 2px solid var(--naln-navy);
}

.naln-comparison-table thead {
    background: var(--naln-navy);
}

.naln-comparison-table th {
    padding: 21px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--naln-cream);
}

.naln-comparison-table td {
    padding: 20px;
    border-bottom: 2px solid var(--naln-gray-200);
    font-size: 14px;
    color: var(--naln-gray-700);
}

.naln-comparison-table tbody tr:hover {
    background: var(--naln-cream-light);
}

.naln-company-cell {
    display: flex;
    align-items: center;
    gap: 13px;
}

.naln-company-frame {
    width: 54px;
    height: 52px;
    background: var(--naln-cream);
    border: 2px solid var(--naln-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.naln-company-frame img {
    max-width: 34px;
    max-height: 34px;
}

.naln-company-data h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--naln-navy);
}

.naln-company-data span {
    font-size: 12px;
    color: var(--naln-gray-500);
}

.naln-rating-classic {
    font-size: 20px;
    font-weight: 700;
    color: var(--naln-gold);
    font-family: var(--naln-font-serif);
}

.naln-feature-classic {
    display: inline-block;
    padding: 9px 13px;
    background: var(--naln-cream);
    border: 1px solid var(--naln-gold);
    color: var(--naln-navy);
    font-size: 12px;
    font-weight: 600;
}

.naln-btn-classic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 17px 26px;
    background: var(--naln-navy);
    color: var(--naln-cream);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.naln-btn-classic:hover {
    background: var(--naln-gold);
    color: var(--naln-navy);
}

.naln-comparison-cards { display: none; }

.naln-company-card {
    background: var(--naln-white);
    border: 2px solid var(--naln-navy);
    padding: 29px;
    margin-bottom: 19px;
}

.naln-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--naln-gray-200);
}

.naln-card-frame {
    width: 64px;
    height: 64px;
    background: var(--naln-cream);
    border: 2px solid var(--naln-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.naln-card-name h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--naln-navy);
}

.naln-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.naln-card-spec {
    padding: 16px;
    background: var(--naln-cream);
}

.naln-card-spec-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--naln-gray-500);
    margin-bottom: 4px;
}

.naln-card-spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--naln-navy);
}

.naln-card-link {
    display: block;
    text-align: center;
    padding: 17px;
    background: var(--naln-navy);
    color: var(--naln-cream);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.naln-card-link:hover {
    background: var(--naln-gold);
    color: var(--naln-navy);
}

@media (max-width: 900px) {
    .naln-comparison-table { display: none; }
    .naln-comparison-cards { display: block; }
    .naln-comparison-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .naln-comparison-section { padding: 57px 0; }
    .naln-card-specs { grid-template-columns: 1fr; }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .naln-companies-section .naln-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .naln-companies-section table.naln-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .naln-companies-section .naln-companies-table thead {
        display: none !important;
    }

    .naln-companies-section .naln-companies-table tbody,
    .naln-companies-section .naln-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .naln-companies-section .naln-companies-table tbody tr.naln-company-row {
        background: #fff !important;
        margin-bottom: 23px !important;
        border-radius: 17px !important;
        box-shadow: 0 3px 27px rgba(98,25,46,0.1) !important;
        padding: 20px !important;
        border: 1px solid rgba(97,32,54,0.08);
    }

    .naln-companies-section .naln-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 14px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .naln-companies-section .naln-companies-table td:last-child {
        border-bottom: none !important;
    }

    .naln-companies-section .naln-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5b2738 !important;
        flex-shrink: 0 !important;
        margin-right: 18px !important;
        font-size: 0.85rem !important;
    }

    .naln-companies-section .naln-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 17px !important;
        border-bottom: 1px solid #f5ebcd !important;
    }

    .naln-companies-section .naln-td-company::before {
        display: none !important;
    }

    .naln-companies-section .naln-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .naln-companies-section .naln-td-rank::before {
        display: none !important;
    }

    .naln-companies-section .naln-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 2px solid #eee7d0 !important;
        border-bottom: none !important;
    }

    .naln-companies-section .naln-td-action::before {
        display: none !important;
    }

    .naln-companies-section .naln-td-action .naln-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 11px 26px !important;
        font-size: 1rem !important;
    }
}

/* Hamburger Menu Styles */
.naln-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
}

.naln-menu-line {
    width: 25px;
    height: 3px;
    background: var(--naln-text, #34334a);
    border-radius: 3px;
    transition: 0.3s;
}

.naln-menu-toggle.active .naln-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.naln-menu-toggle.active .naln-menu-line:nth-child(2) {
    opacity: 0;
}

.naln-menu-toggle.active .naln-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .naln-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.naln-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.naln-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .naln-nav {
        display: none !important;
    }

    .naln-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.naln-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px 27px;
    border-top: 2px solid #eee;
}

.naln-mobile-nav.active {
    display: flex;
}

.naln-mobile-link {
    padding: 10px 0;
    color: var(--naln-text, #292f50);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.naln-mobile-link:last-child {
    border-bottom: none;
}

.naln-mobile-link:hover {
    color: var(--naln-accent, #e60a1c);
}


/* SVG Logo & Mobile Fixes */
.naln-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.naln-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .naln-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .naln-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .naln-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .naln-company-info {
        text-align: center !important;
    }

    .naln-company-name {
        text-align: center !important;
    }

    .naln-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


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

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