/*
 * alading.mom - CSS Stylesheet
 * Premium Dark Mystic Theme (Aladdin Magic Lamp)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
    --bg-dark: #070314;
    --bg-gradient: linear-gradient(135deg, #070314 0%, #150933 50%, #0d0422 100%);
    --panel-bg: rgba(26, 17, 51, 0.45);
    --panel-border: rgba(255, 184, 52, 0.15);
    --panel-border-hover: rgba(0, 245, 255, 0.3);
    
    --primary-gold: #ffb834;
    --primary-gold-rgb: 255, 184, 52;
    --secondary-cyan: #00f5ff;
    --secondary-cyan-rgb: 0, 245, 255;
    
    --text-main: #f5f0ff;
    --text-muted: #af9ec9;
    --text-dark: #120924;
    
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-shadow-gold: 0 0 20px rgba(255, 184, 52, 0.3);
    --glow-shadow-cyan: 0 0 20px rgba(0, 245, 255, 0.35);
}

/* Base Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Particle Star Effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 40%, rgba(0, 245, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 75%, rgba(255, 184, 52, 0.06) 1.2px, transparent 1.2px),
        radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 400px 400px;
    z-index: 0;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 6rem 0;
}

.text-center { text-align: center; }

/* Sticky Navigation Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 3, 20, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px var(--primary-gold));
    animation: float-slow 4s ease-in-out infinite;
}

.nav-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, rgba(255, 184, 52, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 184, 52, 0.1);
}

.nav-cta-btn:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    box-shadow: var(--glow-shadow-gold);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 10%;
    right: -100px;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #ebd4ff 70%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
    display: block;
    font-size: 4rem;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f39c12 100%);
    color: var(--text-dark);
    font-weight: 700;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    box-shadow: var(--glow-shadow-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.3) 50%, transparent 55%);
    transform: rotate(45deg);
    transition: none;
    animation: shine 4s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 184, 52, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-cyan);
    color: var(--secondary-cyan);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow-cyan);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-lamp-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(147, 51, 234, 0.25);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 184, 52, 0.2);
}

.hero-lamp-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.2) 0%, rgba(147, 51, 234, 0.15) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-cyan) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--panel-border-hover);
    box-shadow: var(--glow-shadow-cyan);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.4));
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Price Lookup Tool Section */
.pricing-section {
    position: relative;
}

.price-lookup-card {
    background: rgba(20, 11, 42, 0.7);
    border: 1px solid rgba(255, 184, 52, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 184, 52, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    backdrop-filter: blur(12px);
}

.lookup-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group select {
    background: rgba(7, 3, 20, 0.8);
    border: 1px solid rgba(255, 184, 52, 0.3);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.form-group select:focus {
    border-color: var(--secondary-cyan);
    box-shadow: var(--glow-shadow-cyan);
}

.btn-lookup {
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, #00bcff 100%);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--glow-shadow-cyan);
}

.btn-lookup:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
}

/* Pricing Card Output Layout */
.pricing-result {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.result-card-inner {
    background: rgba(7, 3, 20, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.result-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-price-wrapper {
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-cyan);
    font-family: var(--font-header);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.plan-features-list li::before {
    content: '✦';
    color: var(--primary-gold);
    font-weight: bold;
}

.comparison-panel {
    background: rgba(255, 184, 52, 0.05);
    border: 1px solid rgba(255, 184, 52, 0.15);
    border-radius: 18px;
    padding: 2rem;
}

.comparison-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

.comparison-table th {
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.comparison-table .td-good {
    color: var(--secondary-cyan);
    font-weight: 600;
}

.comparison-table .td-bad {
    color: #ff6b6b;
    opacity: 0.7;
}

/* Articles Grid Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.article-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--panel-border-hover);
    box-shadow: var(--glow-shadow-cyan);
}

.article-thumb-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #18093d 0%, #2f1773 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-thumb-placeholder::after {
    content: '☁';
    font-size: 4rem;
    color: rgba(255, 184, 52, 0.15);
    filter: blur(1px);
}

.article-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-info h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-readmore {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-cyan);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-card:hover .article-readmore {
    color: var(--primary-gold);
}

/* User Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.review-card {
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-content {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.reviewer-title {
    font-size: 0.78rem;
    color: var(--primary-gold);
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(255, 184, 52, 0.25);
    box-shadow: var(--glow-shadow-gold);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Article Page Specifics */
.article-page-header {
    padding: 8rem 0 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(13, 4, 34, 0.5) 0%, transparent 100%);
    position: relative;
}

.article-title {
    font-size: 3rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.2;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #e2d7f5;
    padding-bottom: 6rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--primary-gold);
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: var(--secondary-cyan);
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    background: rgba(255, 184, 52, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Internal keyword link tags */
.keyword-link {
    color: var(--secondary-cyan);
    border-bottom: 1px dashed var(--secondary-cyan);
    font-weight: 500;
}

.keyword-link:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    text-shadow: var(--glow-shadow-gold);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2rem;
}

.back-to-home:hover {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background-color: #05020c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-desc p {
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links-col h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 0.75rem;
}

.footer-links-col a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content h1 span {
        font-size: 3.5rem;
    }
    .features-grid,
    .articles-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lookup-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .btn-lookup {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links-wrapper {
        display: none; /* Can expand via JS toggler */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(7, 3, 20, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        z-index: 99;
    }
    .nav-links-wrapper.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }
    .hero-lamp-img {
        max-width: 300px;
    }
    
    .features-grid,
    .articles-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-result {
        grid-template-columns: 1fr;
    }
    
    .lookup-form-grid {
        grid-template-columns: 1fr;
    }
    .btn-lookup {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    .article-page-header {
        padding: 6rem 0 2rem 0;
    }
}
