/* =========================================================
   CurățenieProfi — Main Stylesheet
   ========================================================= */

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

:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --green:       #16A34A;
  --green-light: #F0FDF4;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
  --transition:  .2s ease;
  --max-w:       1140px;
  --font:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.65; font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4 { color: var(--gray-900); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt{ background: var(--gray-50); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--gray-600); font-size: 1.1rem; margin-top: .75rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none; line-height: 1;
}
.btn-primary  { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-ghost    { background: transparent; color: var(--gray-700); border-color: var(--gray-200); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-green    { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #15803D; border-color: #15803D; color: var(--white); }
.btn-sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-link { background: none; border: none; cursor: pointer; color: var(--blue); font-size: inherit; padding: 0; text-align: left; }
.btn-link:hover { color: var(--blue-dark); text-decoration: underline; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.2rem; font-weight: 800; color: var(--gray-900);
  flex-shrink: 0;
}
.logo:hover { color: var(--blue); }
.logo svg { flex-shrink: 0; }

.main-nav > ul { display: flex; align-items: center; gap: .25rem; }
.main-nav a  { padding: .5rem .8rem; border-radius: var(--radius); font-weight: 500; color: var(--gray-700); font-size: .95rem; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--blue-light); }
.main-nav .btn-primary { color: var(--white); }
.main-nav .btn-primary:hover { background: var(--blue-dark); color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); padding: .5rem; z-index: 200; }
.dropdown li a { display: block; padding: .5rem .75rem; border-radius: 6px; color: var(--gray-700); font-size: .9rem; }
.dropdown li a:hover { background: var(--blue-light); color: var(--blue); }
.has-dropdown:hover .dropdown { display: block; }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { background: var(--white); border-top: 1px solid var(--gray-200); }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a  { display: block; padding: .85rem 1.25rem; color: var(--gray-700); font-weight: 500; border-bottom: 1px solid var(--gray-100); font-size: .95rem; }
.mobile-menu a:hover { color: var(--blue); background: var(--blue-light); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  color: var(--white); padding: 6rem 0; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 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.04'%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");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: .4rem 1rem; font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p   { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.6); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); padding: 2rem; backdrop-filter: blur(10px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-width: 280px;
}
.hero-stat { background: rgba(255,255,255,.15); border-radius: var(--radius); padding: 1rem; text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--white); display: block; }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.75); display: block; margin-top: .25rem; }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p  { color: var(--gray-600); font-size: .93rem; flex: 1; margin-bottom: 1.25rem; }
.service-card .link-more { font-weight: 600; font-size: .9rem; color: var(--blue); }
.service-card .link-more:hover { text-decoration: underline; }

/* --- Why Choose Us --- */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.usp-item { text-align: center; }
.usp-icon { width: 64px; height: 64px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.75rem; }
.usp-item h3 { margin-bottom: .5rem; }
.usp-item p  { color: var(--gray-600); font-size: .95rem; }

/* --- Stats --- */
.stats-section { background: var(--blue); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.75rem; font-weight: 800; color: var(--white); display: block; }
.stat-lbl { font-size: .95rem; color: rgba(255,255,255,.8); margin-top: .35rem; display: block; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text  { color: var(--gray-600); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue); font-size: .95rem; flex-shrink: 0; }
.testimonial-name   { font-weight: 600; font-size: .95rem; color: var(--gray-900); }
.testimonial-role   { font-size: .8rem; color: var(--gray-400); }

/* --- Blog cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-img { height: 190px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body  { padding: 1.5rem; }
.blog-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: .78rem; font-weight: 600; border-radius: 20px; padding: .25rem .75rem; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .04em; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.blog-card h3 a { color: var(--gray-900); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p  { color: var(--gray-600); font-size: .9rem; margin-bottom: 1rem; }
.blog-meta { font-size: .8rem; color: var(--gray-400); }

/* --- CTA Banner --- */
.cta-section { background: linear-gradient(135deg, #1D4ED8, #2563EB); color: var(--white); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-section .btn-outline { color: var(--white); border-color: rgba(255,255,255,.6); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* --- Breadcrumbs --- */
.breadcrumbs { background: var(--gray-50); padding: .9rem 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.breadcrumbs li { font-size: .875rem; color: var(--gray-400); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .35rem; color: var(--gray-400); }
.breadcrumbs a  { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li:last-child { color: var(--gray-700); font-weight: 500; }

/* --- Page Header (inner pages) --- */
.page-header { background: var(--blue-light); padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--gray-200); }
.page-header h1 { margin-bottom: .75rem; }
.page-header p  { color: var(--gray-600); font-size: 1.1rem; max-width: 620px; }

/* --- Prose content --- */
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 .75rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .5rem; color: var(--gray-700); }
.prose strong { color: var(--gray-900); }
.prose a { text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--blue); padding-left: 1.25rem; color: var(--gray-600); font-style: italic; margin: 1.5rem 0; }

/* --- Service detail page --- */
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.service-sidebar { position: sticky; top: 88px; }
.service-sidebar-card { background: var(--blue-light); border-radius: var(--radius-lg); padding: 1.75rem; }
.service-sidebar-card h3 { margin-bottom: 1rem; color: var(--blue-dark); }
.service-sidebar-card ul { list-style: none; }
.service-sidebar-card li { padding: .6rem 0; border-bottom: 1px solid rgba(37,99,235,.15); display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; }
.service-sidebar-card li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.service-sidebar-card li:last-child { border-bottom: none; }
.related-services { margin-top: 1.5rem; }
.related-services h3 { margin-bottom: .75rem; font-size: 1rem; }
.related-services a  { display: flex; align-items: center; gap: .5rem; padding: .6rem .75rem; background: var(--white); border-radius: var(--radius); margin-bottom: .5rem; color: var(--gray-700); font-size: .9rem; border: 1px solid var(--gray-200); }
.related-services a:hover { border-color: var(--blue); color: var(--blue); }

.process-steps { counter-reset: step; display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0; }
.process-step  { display: flex; gap: 1rem; align-items: flex-start; }
.process-step-num { counter-increment: step; width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: .95rem; }
.process-step-body h4 { margin-bottom: .3rem; }
.process-step-body p  { color: var(--gray-600); font-size: .93rem; margin: 0; }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem 1.75rem; display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: .78rem; font-weight: 700; padding: .3rem .9rem; border-radius: 20px; white-space: nowrap; }
.pricing-name  { font-size: 1rem; font-weight: 600; color: var(--gray-600); margin-bottom: .5rem; }
.pricing-price { font-size: 2.25rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; }
.pricing-price span { font-size: 1rem; color: var(--gray-400); font-weight: 400; }
.pricing-features { flex: 1; margin-bottom: 1.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: .6rem; padding: .55rem 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; color: var(--gray-700); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--gray-400); }
.pricing-features li.disabled::before { content: '—'; color: var(--gray-300); }

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-question { width: 100%; background: var(--white); border: none; cursor: pointer; padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; font-size: 1rem; font-weight: 600; color: var(--gray-900); transition: background var(--transition); }
.faq-question:hover { background: var(--blue-light); }
.faq-item.is-open .faq-question { background: var(--blue-light); color: var(--blue); }
.faq-icon { flex-shrink: 0; font-size: 1.25rem; font-weight: 300; transition: transform var(--transition); color: var(--gray-400); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--gray-600); line-height: 1.7; font-size: .97rem; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; }
.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .4rem; color: var(--gray-700); font-size: .93rem; }
.form-control { width: 100%; padding: .75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 1rem; font-family: var(--font); color: var(--gray-900); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 130px; }

.contact-info-card { background: var(--blue-light); border-radius: var(--radius-lg); padding: 2rem; height: fit-content; }
.contact-info-card h3 { color: var(--blue-dark); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 42px; height: 42px; background: var(--white); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; box-shadow: var(--shadow); }
.contact-info-item h4 { font-size: .85rem; color: var(--gray-600); margin-bottom: .2rem; font-weight: 500; }
.contact-info-item p  { font-size: .95rem; color: var(--gray-900); font-weight: 600; margin: 0; }
.contact-info-item a  { color: var(--gray-900); font-weight: 600; font-size: .95rem; }
.contact-info-item a:hover { color: var(--blue); }
.business-hours { margin-top: 1.75rem; border-top: 1px solid rgba(37,99,235,.15); padding-top: 1.25rem; }
.business-hours h4 { margin-bottom: .75rem; color: var(--gray-700); font-size: .9rem; font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .35rem 0; border-bottom: 1px solid rgba(37,99,235,.1); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray-600); }
.hours-time { font-weight: 600; color: var(--gray-900); }

/* --- Footer --- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.75); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-footer span { color: var(--white); }
.footer-brand .logo-footer { margin-bottom: 1rem; }
.footer-brand p  { font-size: .92rem; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.footer-brand .footer-contact a { color: rgba(255,255,255,.7); font-size: .9rem; display: block; margin-bottom: .25rem; }
.footer-brand .footer-contact a:hover { color: var(--white); }
.footer-col h3 { color: var(--white); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a, .footer-col .btn-link { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col a:hover, .footer-col .btn-link:hover { color: var(--white); }

.footer-bottom { padding: 1.75rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: .75rem; }
.footer-legal-info p { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-legal-info strong { color: rgba(255,255,255,.6); }
.footer-copy { font-size: .83rem; color: rgba(255,255,255,.4); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--white); border-top: 3px solid var(--blue);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12); padding: 1.5rem;
}
.cookie-banner-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; min-width: 260px; }
.cookie-banner-text strong { display: block; color: var(--gray-900); margin-bottom: .4rem; font-size: 1rem; }
.cookie-banner-text p  { font-size: .88rem; color: var(--gray-600); margin-bottom: .4rem; }
.cookie-learn-more { font-size: .85rem; color: var(--blue); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.cookie-banner-actions .btn { font-size: .9rem; padding: .65rem 1.25rem; }

.cookie-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9001; }
.cookie-settings-panel {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: min(560px, 95vw); max-height: 90vh; overflow-y: auto; z-index: 9002;
}
.cookie-settings-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-bottom: 1px solid var(--gray-200); }
.cookie-settings-header h2 { font-size: 1.2rem; }
.cookie-settings-close { background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--gray-400); padding: 0 .25rem; line-height: 1; }
.cookie-settings-close:hover { color: var(--gray-900); }
.cookie-settings-body { padding: 1.5rem 2rem; }
.cookie-group { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.cookie-group:last-child { margin-bottom: 0; }
.cookie-group-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.cookie-group strong { display: block; color: var(--gray-900); margin-bottom: .3rem; }
.cookie-group p  { font-size: .85rem; color: var(--gray-600); margin: 0; }
.cookie-toggle-locked { font-size: .78rem; background: var(--green-light); color: var(--green); padding: .3rem .75rem; border-radius: 20px; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.cookie-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; inset: 0; background: var(--gray-200); border-radius: 20px; transition: background var(--transition); }
.cookie-toggle-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: var(--white); border-radius: 50%; transition: transform var(--transition); box-shadow: var(--shadow); }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--blue); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-settings-footer { display: flex; justify-content: flex-end; gap: .75rem; padding: 1.25rem 2rem; border-top: 1px solid var(--gray-200); }

/* --- Legal pages --- */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.legal-content h2:first-of-type { border-top: none; margin-top: 1rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .6rem; color: var(--gray-800); }
.legal-content ul, .legal-content ol { margin: .75rem 0 .75rem 1.5rem; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: .5rem; color: var(--gray-700); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.legal-content th, .legal-content td { text-align: left; padding: .65rem .9rem; border: 1px solid var(--gray-200); }
.legal-content th { background: var(--gray-50); font-weight: 600; color: var(--gray-700); }
.last-updated { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: .85rem; padding: .35rem .9rem; border-radius: 20px; font-weight: 600; margin-bottom: 2rem; }
.legal-intro { background: var(--blue-light); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; color: var(--gray-700); font-size: .95rem; }

/* --- About page --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.team-avatar { width: 72px; height: 72px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: var(--blue); margin: 0 auto 1rem; }
.team-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.team-card p  { color: var(--gray-600); font-size: .88rem; margin: 0; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card  { background: var(--white); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.5rem; box-shadow: var(--shadow); }
.value-card h3 { margin-bottom: .5rem; color: var(--blue-dark); }
.value-card p  { color: var(--gray-600); font-size: .93rem; margin: 0; }

/* --- Blog article --- */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.article-sidebar { position: sticky; top: 88px; height: fit-content; }
.article-sidebar-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.article-sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.article-sidebar-card ul li { margin-bottom: .6rem; font-size: .9rem; }
.article-sidebar-card ul li a { color: var(--gray-700); }
.article-sidebar-card ul li a:hover { color: var(--blue); }

.article-header { margin-bottom: 2rem; }
.article-meta   { display: flex; align-items: center; gap: 1rem; font-size: .85rem; color: var(--gray-400); margin-bottom: 1rem; flex-wrap: wrap; }
.article-meta .blog-tag { margin-bottom: 0; }

/* --- Not found / misc --- */
.error-page { text-align: center; padding: 6rem 1.25rem; }
.error-page .error-code { font-size: 8rem; font-weight: 800; color: var(--gray-100); line-height: 1; display: block; }
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p  { color: var(--gray-600); margin-bottom: 2rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-gray   { color: var(--gray-600); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .items-center { align-items: center; } .justify-center { justify-content: center; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .93rem; }
.alert-success { background: var(--green-light); color: #166534; border: 1px solid #BBF7D0; }
.alert-info    { background: var(--blue-light);  color: #1E40AF; border: 1px solid #BFDBFE; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-image          { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar     { position: static; }
  .contact-grid        { grid-template-columns: 1fr; }
  .article-layout      { grid-template-columns: 1fr; }
  .article-sidebar     { position: static; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section    { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .main-nav    { display: none; }
  .hamburger   { display: flex; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 4rem 0; }
  .hero-inner { gap: 2rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { text-align: center; }
  .footer-legal-info p { font-size: .72rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
