/* =====================================================
   Pavaj Permeabil - Main Stylesheet
   cPanel Compatible Version
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #2E4A3B;
    --primary-dark: #1F3329;
    --accent: #D4A373;
    --secondary: #E8E6E1;
    --background: #FAFAF9;
    --foreground: #1C1917;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-300: #D6D3D1;
    --stone-400: #A8A29E;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    --white: #FFFFFF;
    --shadow: 0 4px 20px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px -4px rgba(0,0,0,0.15);
    --radius: 2px;
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 280px; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600;
    border-radius: var(--radius); border: 2px solid transparent;
    transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--accent:hover { background: #c49463; transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--white:hover { background: var(--stone-100); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* Header */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--stone-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .nav { height: 80px; } }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
    width: 40px; height: 40px; background: var(--primary); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.25rem;
}
.logo-image {
    height: 40px; width: auto; display: block; max-width: 180px; object-fit: contain;
}
@media (min-width: 640px) { .logo-image { max-height: 48px; } }
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; font-size: 1.125rem; } }
.logo-pavaj { font-weight: 700; color: var(--stone-900); }
.logo-permeabil { font-weight: 600; color: var(--primary); }

.nav__menu { display: none; }
@media (min-width: 1024px) { .nav__menu { display: block; } }
.nav__list { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
    padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
    color: var(--stone-600); transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--primary); }
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.nav__dropdown-toggle i { font-size: 0.625rem; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle i { transform: rotate(180deg); }
.nav__dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all var(--transition);
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu li a {
    display: block; padding: 0.75rem 1rem; font-size: 0.875rem;
    color: var(--stone-600); transition: all var(--transition);
}
.nav__dropdown-menu li a:hover { background: var(--stone-50); color: var(--primary); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__phone { display: none; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--stone-600); }
.nav__phone:hover { color: var(--primary); }
@media (min-width: 1280px) { .nav__phone { display: flex; } }
.nav__toggle { display: block; padding: 0.5rem; background: none; border: none; color: var(--stone-600); font-size: 1.25rem; }
@media (min-width: 1024px) { .nav__toggle { display: none; } }
.nav__actions .btn { display: none; }
@media (min-width: 768px) { .nav__actions .btn { display: inline-flex; } }

/* Mobile Menu */
.nav__menu.active {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--stone-100);
    padding: 1rem; box-shadow: var(--shadow);
}
.nav__menu.active .nav__list { flex-direction: column; align-items: stretch; }
.nav__menu.active .nav__link { padding: 0.75rem 1rem; border-radius: var(--radius); }
.nav__menu.active .nav__link:hover, .nav__menu.active .nav__link.active { background: rgba(46,74,59,0.1); }
.nav__menu.active .nav__dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; }

/* Hero Section */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 640px; padding: 3rem 0; }
.hero__badge {
    display: inline-block; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
    background: var(--accent); color: var(--white); font-size: 0.875rem; font-weight: 500;
    border-radius: var(--radius);
}
.hero__title { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }
.hero__title span { color: var(--accent); display: block; }
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }
.hero__text { font-size: 1.125rem; color: var(--stone-200); margin-bottom: 2rem; max-width: 540px; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__buttons .btn--outline { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero__buttons .btn--outline:hover { background: var(--white); color: var(--stone-900); }

/* Sections */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section--secondary { background: var(--secondary); }
.section--dark { background: var(--stone-900); color: var(--white); }
.section--accent { background: var(--accent); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
@media (min-width: 768px) { .section__header { margin-bottom: 4rem; } }
.section__title { font-size: 1.875rem; font-weight: 700; color: var(--stone-900); margin-bottom: 1rem; }
@media (min-width: 640px) { .section__title { font-size: 2.25rem; } }
.section--dark .section__title { color: var(--white); }
.section__subtitle { color: var(--stone-600); font-size: 1rem; }
.section--dark .section__subtitle { color: var(--stone-400); }

/* Cards Grid */
.cards-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cards-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Card */
.card {
    background: var(--white); border: 1px solid var(--stone-100); padding: 2rem;
    transition: all var(--transition);
}
.card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card__icon {
    width: 56px; height: 56px; background: rgba(46,74,59,0.1); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    color: var(--primary); font-size: 1.5rem;
}
.card__title { font-size: 1.25rem; font-weight: 600; color: var(--stone-900); margin-bottom: 0.75rem; }
.card__text { color: var(--stone-600); font-size: 0.9375rem; }

/* Application Card */
.app-card {
    display: block; background: var(--white); border: 1px solid var(--stone-200);
    padding: 1.5rem; transition: all var(--transition);
}
.app-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.app-card__icon {
    width: 48px; height: 48px; background: rgba(212,163,115,0.1); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
    color: var(--accent); font-size: 1.25rem; transition: background var(--transition);
}
.app-card:hover .app-card__icon { background: rgba(212,163,115,0.2); }
.app-card__title { font-size: 1.125rem; font-weight: 600; color: var(--stone-900); margin-bottom: 0.5rem; transition: color var(--transition); }
.app-card:hover .app-card__title { color: var(--primary); }
.app-card__text { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 1rem; }
.app-card__link { font-size: 0.875rem; color: var(--primary); font-weight: 500; display: inline-flex; align-items: center; gap: 0.25rem; }
.app-card__link i { transition: transform var(--transition); }
.app-card:hover .app-card__link i { transform: translateX(4px); }

/* Process Steps */
.process-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-step {
    position: relative; border: 1px solid var(--stone-700); padding: 1.5rem;
    transition: border-color var(--transition);
}
.process-step:hover { border-color: var(--accent); }
.process-step__number {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 2.5rem; font-weight: 700; color: rgba(212,163,115,0.3);
    font-family: 'Manrope', sans-serif;
}
.process-step__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; margin-top: 2rem; }
.process-step__text { font-size: 0.875rem; color: var(--stone-400); }

/* Gallery Grid */
.gallery-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Benefits List */
.benefits-list { list-style: none; }
.benefits-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.5rem 0; color: var(--stone-700);
}
.benefits-list li i { color: var(--primary); margin-top: 0.25rem; }

/* Form Styles */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--stone-600); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.75rem 1rem; font-size: 1rem; font-family: inherit;
    border: 1px solid var(--stone-200); border-radius: var(--radius);
    background: var(--white); color: var(--foreground);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,74,59,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { color: #dc2626; font-size: 0.875rem; margin-top: 0.25rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-checkbox input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--primary); }
.form-checkbox label { font-size: 0.875rem; color: var(--stone-600); }
.form-checkbox a { color: var(--primary); text-decoration: underline; }

/* Multi-step Form */
.form-steps { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-steps__indicator { width: 48px; height: 4px; background: var(--stone-200); border-radius: 2px; transition: background var(--transition); }
.form-steps__indicator.active { background: var(--primary); }
.form-step { display: none; animation: fadeIn 0.3s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-step__title { font-size: 1.125rem; font-weight: 600; color: var(--stone-900); margin-bottom: 1rem; }
.form-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.form-nav .btn { flex: 1; }

/* Contact Info Cards */
.contact-card {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
    border: 1px solid var(--stone-200); transition: all var(--transition);
}
.contact-card:hover { border-color: var(--primary); background: rgba(46,74,59,0.02); }
.contact-card--whatsapp:hover { border-color: #25d366; background: rgba(37,211,102,0.05); }
.contact-card__icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.25rem;
}
.contact-card__icon--primary { background: rgba(46,74,59,0.1); color: var(--primary); }
.contact-card__icon--whatsapp { background: rgba(37,211,102,0.1); color: #25d366; }
.contact-card__icon--gray { background: var(--stone-100); color: var(--stone-600); }
.contact-card__label { font-size: 0.875rem; color: var(--stone-500); }
.contact-card__value { font-size: 1.125rem; font-weight: 600; color: var(--stone-900); }
.contact-card__note { font-size: 0.875rem; color: var(--stone-600); margin-top: 0.25rem; }

/* Coverage Box */
.coverage-box { background: var(--secondary); padding: 1.5rem; border-radius: var(--radius); }
.coverage-box__title { font-size: 1rem; font-weight: 600; color: var(--stone-900); margin-bottom: 1rem; }
.coverage-box__intro { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 0.75rem; }
.coverage-box__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.coverage-box__list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--stone-700); }
.coverage-box__list li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
.coverage-box__note { font-size: 0.75rem; color: var(--stone-500); font-style: italic; margin-top: 1rem; }

/* FAQ Accordion */
.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item { border: 1px solid var(--stone-200); margin-bottom: 1rem; transition: border-color var(--transition); }
.faq-item.active { border-color: var(--primary); background: rgba(46,74,59,0.02); }
.faq-question {
    width: 100%; padding: 1.25rem; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; text-align: left; font-size: 1rem; font-weight: 600;
    color: var(--stone-900); cursor: pointer; font-family: 'Manrope', sans-serif;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--stone-400); transition: transform var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; color: var(--stone-600); line-height: 1.7; }
.faq-item.active .faq-answer { display: block; }

/* Portfolio Grid */
.portfolio-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-item { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--stone-200); }
.portfolio-item__image { aspect-ratio: 4/3; overflow: hidden; }
.portfolio-item__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover .portfolio-item__image img { transform: scale(1.05); }
.portfolio-item__overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 1.5rem;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.portfolio-item__overlay p { font-size: 0.875rem; color: var(--stone-300); }
.portfolio-item__info { padding: 1rem; }
.portfolio-item__title { font-size: 1rem; font-weight: 600; color: var(--stone-900); margin-bottom: 0.25rem; }
.portfolio-item__desc { font-size: 0.875rem; color: var(--stone-600); }

/* Pricing Cards */
.pricing-grid { display: grid; gap: 2rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { border: 1px solid var(--stone-200); padding: 2rem; background: var(--white); transition: all var(--transition); }
.pricing-card--featured { border-color: var(--accent); background: rgba(212,163,115,0.05); transform: scale(1.05); }
.pricing-card__badge { display: inline-block; padding: 0.25rem 0.75rem; background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem; }
.pricing-card__title { font-size: 1.25rem; font-weight: 600; color: var(--stone-900); margin-bottom: 0.5rem; }
.pricing-card__desc { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 1.5rem; }
.pricing-card__price { margin-bottom: 1.5rem; }
.pricing-card__price span { font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: 'Manrope', sans-serif; }
.pricing-card__price small { font-size: 1rem; color: var(--stone-500); }
.pricing-card__features { list-style: none; }
.pricing-card__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--stone-600); padding: 0.375rem 0; }
.pricing-card__features li i { color: var(--primary); }

/* Footer */
.footer { background: var(--stone-900); color: var(--stone-300); padding: 4rem 0 2rem; margin-bottom: 60px; }
@media (min-width: 768px) { .footer { margin-bottom: 0; } }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__logo { margin-bottom: 1rem; }
.footer__logo .logo-permeabil { color: var(--accent); }
.footer__description { font-size: 0.875rem; color: var(--stone-400); margin-bottom: 1.5rem; }
.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact a, .footer__contact span { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }
.footer__contact i { color: var(--accent); width: 16px; }
.footer__column h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer__column ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__column a { font-size: 0.875rem; transition: color var(--transition); }
.footer__column a:hover { color: var(--white); }
.footer__coverage-intro { font-size: 0.875rem; color: var(--stone-400); margin-bottom: 0.75rem; }
.footer__coverage-list { font-size: 0.875rem; }
.footer__coverage-list li { padding: 0.125rem 0; }
.footer__coverage-list li::before { content: '• '; color: var(--accent); }
.footer__coverage-note { font-size: 0.75rem; color: var(--stone-500); font-style: italic; margin-top: 0.75rem; }
.footer__bottom {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    padding-top: 2rem; margin-top: 3rem; border-top: 1px solid var(--stone-800);
    text-align: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__bottom p { font-size: 0.875rem; color: var(--stone-500); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.875rem; color: var(--stone-500); transition: color var(--transition); }
.footer__legal a:hover { color: var(--stone-300); }

/* Mobile Footer */
.mobile-footer {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: var(--white); border-top: 1px solid var(--stone-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
@media (min-width: 768px) { .mobile-footer { display: none; } }
.mobile-footer__btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0.75rem; color: var(--stone-600); font-size: 0.75rem; font-weight: 500;
    transition: all var(--transition);
}
.mobile-footer__btn i { font-size: 1.25rem; margin-bottom: 0.25rem; }
.mobile-footer__btn:hover { color: var(--primary); background: var(--stone-50); }
.mobile-footer__btn--whatsapp:hover { color: #25d366; }
.mobile-footer__btn--primary { background: var(--primary); color: var(--white); }
.mobile-footer__btn--primary:hover { background: var(--primary-dark); color: var(--white); }

/* Cookie Consent */
.cookie-consent {
    position: fixed; bottom: 80px; left: 1rem; right: 1rem; z-index: 90;
    display: none;
}
@media (min-width: 768px) { .cookie-consent { bottom: 1rem; left: auto; right: 1rem; max-width: 400px; } }
.cookie-consent.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-consent__content {
    background: var(--white); border: 1px solid var(--stone-200);
    border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.cookie-consent__content h3 { font-size: 1rem; color: var(--stone-900); margin-bottom: 0.75rem; }
.cookie-consent__content p { font-size: 0.875rem; color: var(--stone-600); margin-bottom: 0.5rem; }
.cookie-consent__content a { color: var(--primary); text-decoration: underline; }
.cookie-consent__buttons { display: flex; gap: 0.75rem; margin-top: 1rem; }
.cookie-consent__buttons .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.875rem; }

/* Alert Messages */
.alert { padding: 1rem 1.5rem; margin-bottom: 1.5rem; border-radius: var(--radius); }
.alert--success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert--info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* Two Column Layout */
.two-col { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Page Hero (smaller) */
.page-hero {
    position: relative;
    background: var(--primary);
    padding: 5rem 0 3rem;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 8rem 0 4rem; } }
.page-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.25) 100%);
}
.page-hero__content { max-width: 768px; position: relative; z-index: 1; }
.page-hero__title { font-size: 2.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
@media (min-width: 640px) { .page-hero__title { font-size: 3rem; } }
.page-hero__text { font-size: 1.125rem; color: var(--stone-200); }

/* Utilities */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none !important; }
@media (max-width: 767px) { .hide-mobile { display: none !important; } }
@media (min-width: 768px) { .hide-desktop { display: none !important; } }
