/* Base Reset & Variables */
:root {
    --color-primary: #C5A880; /* Premium sand gold */
    --color-primary-light: #E2D1B9;
    --color-primary-dark: #A48459;
    --color-dark: #0D0C0B; /* Deep dark slate with warm hue */
    --color-text-dark: #1A1816;
    --color-text-light: #E8E5E0;
    --color-bg-light: #F9F8F6; /* Sandy warm white */
    --color-white: #FFFFFF;
    --color-border: #E8E5E0;
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-bg-dark: #0D0C0B;
    --color-card-bg: rgba(255, 255, 255, 0.02);
    --color-glass-bg: rgba(13, 12, 11, 0.7);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --spacing-section: 7rem;
    --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

/* Dimming overlay for mobile menu */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 998;
}
body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

h1 { 
    font-size: clamp(2.4rem, 7vw, 4.5rem); 
    letter-spacing: -0.03em; 
    font-weight: 600;
}
h2 { 
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); 
    margin-bottom: 3rem; 
    text-align: center; 
    font-weight: 600;
    letter-spacing: -0.02em;
}
h3 { 
    font-size: 1.6rem; 
    margin-bottom: 1rem; 
    font-weight: 600; 
}

p { 
    margin-bottom: 1.2rem; 
    max-width: 70ch; 
    color: #4A4744;
}
a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition-base); 
}

/* Utilities */
.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section { padding: var(--spacing-section) 0; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-small { 
    padding: 0.75rem 1.5rem; 
    font-size: 0.85rem; 
    border-radius: 4px;
}

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base);
}

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

.logo-img { 
    height: clamp(40px, 6vw, 64px); 
    width: auto; 
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-links a.btn {
    padding: 0.75rem 1.5rem;
}

.nav-links .btn-primary::after {
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-base);
    transform: translateY(0) rotate(0);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.peldmajas-hero {
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%), url('hero.webp') no-repeat center center/cover;
    min-height: 95vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.peldmajas-hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #cbd5e1;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
}

.hero-icon-mark { 
    margin-bottom: 2rem; 
    color: var(--color-primary); 
}
.hero-icon-mark svg { 
    width: 72px; 
    height: 72px; 
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.3));
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(197, 168, 128, 0.1);
    color: var(--color-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 168, 128, 0.25);
    font-family: var(--font-heading);
}

/* Selling Points */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-dark);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.2);
    box-shadow: var(--shadow-premium);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box h3 { 
    color: #fff; 
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-box p { 
    color: #a1a1aa; 
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Models Tab System */
.model-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-dark);
    color: #a1a1aa;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.tab-btn.active {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.model-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border-dark);
    background: #111;
}

.model-image-wrapper img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-base);
    aspect-ratio: 4/3;
}

.model-image-wrapper:hover img {
    transform: scale(1.03);
}

.model-details h3 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.model-price {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.model-specs {
    list-style: none;
    margin-bottom: 2.5rem;
}

.model-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border-dark);
    color: #cbd5e1;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.model-specs li span:last-child {
    font-weight: 600;
    color: var(--color-white);
}

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

/* Multistep Configurator */
.configurator-wizard {
    max-width: 850px;
    margin: 0 auto;
    background: #131211;
    border-radius: 24px;
    border: 1px solid var(--color-border-dark);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.configurator-steps {
    display: flex;
    background: #0d0c0b;
    border-bottom: 1px solid var(--color-border-dark);
    padding: 1.5rem 3rem;
}

.step-indicator {
    flex: 1;
    text-align: center;
    color: #55524f;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.step-indicator.active {
    color: var(--color-primary);
}

.step-indicator.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

.configurator-content {
    padding: 3.5rem 3rem;
}

.config-step-panel {
    display: none;
}

.config-step-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.config-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.option-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    padding: 1.8rem;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.option-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.option-card.selected {
    border-color: var(--color-primary);
    background: rgba(197, 168, 128, 0.05);
}

.option-card h4 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.option-card p {
    color: #8e8a86;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.option-card .option-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.05rem;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
}

.configurator-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border-dark);
    padding: 2rem 3rem;
    background: #0d0c0b;
}

.configurator-summary {
    text-align: left;
}

.configurator-summary .summary-label {
    color: #8e8a86;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.configurator-summary .summary-price {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.config-form-group {
    margin-bottom: 1.5rem;
}

.config-form-group label {
    display: block;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.config-form-group input, 
.config-form-group select,
.config-form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border-dark);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.config-form-group input:focus, 
.config-form-group select:focus,
.config-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* Legality Section */
.legality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.legality-badge {
    background: rgba(197, 168, 128, 0.1);
    color: var(--color-primary);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.legality-list {
    list-style: none;
    margin-top: 2rem;
}

.legality-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.legality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    padding: 1.8rem 2.2rem;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.2);
}

.faq-item h4 { 
    color: var(--color-white); 
    margin-bottom: 0.75rem; 
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p { 
    color: #94a3b8; 
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item { 
    aspect-ratio: 4/3; 
    overflow: hidden; 
    border-radius: 16px; 
    position: relative; 
    border: 1px solid var(--color-border-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.gallery-item:hover img { 
    transform: scale(1.05); 
}

/* Technical Specs section (Hero content block) */
.technical-excellence {
    background: #050505;
    padding: var(--spacing-section) 0;
    border-top: 1px solid var(--color-border-dark);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f1f1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    font-size: 1.35rem;
    color: var(--color-text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: #615c58;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-more:hover {
    color: var(--color-dark);
}

/* Process Steps */
.approach-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; 
}

.approach-step { 
    text-align: center; 
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--color-border-dark);
    padding: 2.5rem 1.8rem;
    border-radius: 16px;
}

.step-icon {
    width: 54px; 
    height: 54px; 
    background-color: var(--color-primary);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 1.5rem; 
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.approach-step h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.approach-step p {
    color: #8e8a86;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Catalog Block */
.catalog-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--color-border-dark);
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4.5rem;
    position: relative;
    overflow: hidden;
}

.catalog-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-img-wrapper { 
    flex: 1; 
    max-width: 380px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255,255,255,0.05);
}

.catalog-img-wrapper img {
    width: 100%;
    height: auto;
}

.catalog-content { 
    flex: 1.5; 
}

/* Contact Form */
.contact-form { 
    background-color: #131211; 
    padding: 3.5rem; 
    border-radius: 20px; 
    border: 1px solid var(--color-border-dark); 
    box-shadow: var(--shadow-premium);
}

.contact-form .form-group { 
    margin-bottom: 1.8rem; 
}

.contact-form label { 
    display: block; 
    color: #cbd5e1; 
    margin-bottom: 0.6rem; 
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form input, 
.contact-form textarea,
.contact-form select {
    width: 100%; 
    padding: 1.1rem; 
    border: 1px solid var(--color-border-dark); 
    background: rgba(255,255,255,0.02); 
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.contact-form input:focus, 
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.04);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    z-index: 997;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { 
    width: 30px; 
    height: 30px; 
    fill: currentColor; 
}

/* Statement Section */
.statement-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('aerial.webp') center/cover fixed;
    padding: 9rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border-dark);
    border-bottom: 1px solid var(--color-border-dark);
}
.statement-text { 
    color: #fff; 
    font-size: clamp(1.6rem, 3.5vw, 2.6rem); 
    line-height: 1.5;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* SEO Landing Page layouts (Articles) */
.article-header {
    background: linear-gradient(to bottom, #131211 0%, #0d0c0b 100%);
    padding: 7rem 0 4rem;
    color: #fff;
    border-bottom: 1px solid var(--color-border-dark);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.article-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.article-subtitle {
    color: #cbd5e1;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    max-width: 800px;
    line-height: 1.6;
}

.article-content {
    padding: 5rem 0;
    background: #fff;
    color: #2d2a26;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.85rem;
    color: var(--color-dark);
}

.article-body h3 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--color-dark);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d3a36;
    margin-bottom: 1.8rem;
}

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

.article-body li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d3a36;
    margin-bottom: 0.8rem;
}

.article-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #615c58;
}

.article-body img {
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}

.article-cta {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0 2rem;
    border: 1px solid var(--color-border);
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 1rem;
}

.article-cta p {
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* Footer */
.footer { 
    background: #0d0c0b; 
    padding: 5rem 0 2.5rem; 
    border-top: 1px solid var(--color-border-dark); 
    color: #fff;
}

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 3rem; 
    margin-bottom: 3.5rem; 
}

.footer-top a {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
}

.footer-top a:hover {
    color: var(--color-primary);
}

.footer-bottom { 
    border-top: 1px solid var(--color-border-dark); 
    padding-top: 2.5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: 1.5rem;
}

.footer-bottom p {
    color: #8e8a86;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

.tapa-ar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8e8a86 !important;
}

.tapa-ar img {
    opacity: 0.6;
    transition: var(--transition-base);
}

.tapa-ar:hover img {
    opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }
    .nav-links { 
        display: flex; 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 320px; 
        height: 100vh;
        background: rgba(13, 12, 11, 0.98); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; 
        justify-content: center;
        padding: 3rem; 
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: #fff;
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .mobile-menu-toggle { 
        display: flex; 
    }
    .mobile-menu-toggle span {
        background-color: var(--color-dark);
    }
    /* If the background of the navbar is white, we keep black bars. If dark on mobile menu active: */
    .mobile-menu-toggle.active span {
        background-color: #fff;
    }
    
    .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .approach-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .catalog-card { 
        flex-direction: column; 
        text-align: center; 
        gap: 2.5rem; 
        padding: 3.5rem 2rem; 
    }
    .catalog-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .legality-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 4.5rem;
    }
    .configurator-steps {
        padding: 1rem 1.5rem;
    }
    .step-indicator {
        font-size: 0.75rem;
    }
    .configurator-content {
        padding: 2.5rem 1.5rem;
    }
    .configurator-footer {
        padding: 1.5rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .configurator-summary {
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .approach-grid { 
        grid-template-columns: 1fr; 
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid { 
        grid-template-columns: 1fr; 
    }
    .whatsapp-float { 
        width: 54px; 
        height: 54px; 
        bottom: 20px; 
        right: 20px; 
    }
    .whatsapp-float svg { 
        width: 26px; 
        height: 26px; 
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Language Switcher Dropdown Styling */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0d0c0b;
    border: 1px solid var(--color-border-dark);
    min-width: 90px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -0.6rem;
    left: 0;
    right: 0;
    height: 0.6rem;
    background: transparent;
}

.lang-dropdown a {
    color: #8e8a86 !important;
    padding: 0.7rem 1.2rem !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 0.8rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: var(--transition-base) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.lang-dropdown a::after {
    display: none !important;
}

.lang-dropdown a:first-child {
    border-top-left-radius: 7px !important;
    border-top-right-radius: 7px !important;
}

.lang-dropdown a:last-child {
    border-bottom-left-radius: 7px !important;
    border-bottom-right-radius: 7px !important;
    border-bottom: none !important;
}

.lang-dropdown a:hover {
    background-color: rgba(197, 168, 128, 0.08) !important;
    color: var(--color-primary) !important;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

/* Mobile dropdown adjustment */
@media (max-width: 991px) {
    .lang-dropdown {
        position: static !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        display: flex !important;
        gap: 15px !important;
        margin-top: 10px !important;
        padding-left: 0 !important;
    }
    .lang-dropdown a {
        padding: 5px 0 !important;
        border: none !important;
    }
    .lang-btn {
        display: none !important;
    }
    .lang-switcher:hover .lang-dropdown {
        display: flex !important;
    }
}

