:root {
  --primary: #e60012;
  --primary-dark: #b8000e;
  --secondary: #1a5f4a;
  --secondary-dark: #124d3b;
  --accent: #ff8c00;
  --accent-yellow: #ffd700;
  --dark: #111;
  --darker: #0a0a0a;
  --text: #222;
  --text-light: #555;
  --bg: #f4f4f4;
  --bg-light: #fff;
  --bg-dark: #1a1a1a;
  --border: #e0e0e0;
  --shadow: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.25);
  --shadow-red: 0 4px 16px rgba(230,0,18,0.25);
  --radius: 6px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--primary-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ===== HEADER - BILD DE STYLE ===== */
.header {
  background: var(--dark);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: 3px solid var(--primary);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px; height: 64px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.5px;
}
.logo:hover { color: var(--primary); }

.logo-icon {
  width: 44px; height: 44px; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; border-radius: 50%;
  box-shadow: 0 0 12px rgba(230,0,18,0.4);
  animation: pulse-red 2s ease-in-out infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 12px rgba(230,0,18,0.4); }
  50% { box-shadow: 0 0 20px rgba(230,0,18,0.7); }
}

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

.nav-link {
  color: #fff; font-weight: 600; font-size: 0.9rem; padding: 8px 12px;
  border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-link:hover { background: rgba(255,255,255,0.1); color: var(--primary); }

.nav-cta {
  background: var(--primary); color: #fff !important; padding: 10px 18px;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(230,0,18,0.4);
  animation: shake 2s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes shake {
  0%, 90%, 100% { transform: translateX(0); }
  92%, 96% { transform: translateX(-3px); }
  94%, 98% { transform: translateX(3px); }
}

.nav-cta:hover {
  background: var(--primary-dark); transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(230,0,18,0.6);
}

.mobile-toggle {
  display: none; background: var(--primary); color: #fff; border: none;
  font-size: 1.5rem; width: 44px; height: 44px; border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}

/* ===== HERO - BOLD BILD STYLE ===== */
.hero {
  margin-top: 64px; background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
  position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: center;
}

.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,0,18,0.15) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-inner { position: relative; z-index: 2; text-align: center; padding: 80px 16px 120px; }

.badge {
  display: inline-block; background: var(--primary); color: #fff; padding: 8px 24px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  border-radius: 50px; margin-bottom: 24px; box-shadow: 0 4px 16px rgba(230,0,18,0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--primary); }

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 40px; font-weight: 400;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px; background: var(--primary);
  color: #fff; padding: 18px 40px; font-size: 1.1rem; font-weight: 700;
  border-radius: 50px; box-shadow: 0 8px 30px rgba(230,0,18,0.5);
  text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
  border: 3px solid transparent;
}

.hero-cta:hover {
  background: #fff; color: var(--primary); border-color: var(--primary);
  transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(230,0,18,0.6);
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--dark);
  margin-bottom: 16px; position: relative; display: inline-block;
}

.section-title::after {
  content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 4px;
  background: var(--primary); border-radius: 2px;
}

.section-title-center { text-align: center; display: block; }
.section-title-center::after { left: 50%; transform: translateX(-50%); width: 80px; }

.section-subtitle {
  font-size: 1.1rem; color: var(--text-light); max-width: 700px;
  margin: 24px auto 0; text-align: center; line-height: 1.6;
}

/* ===== SERVICES GRID - BILD CARDS ===== */
.services-section { padding: 80px 0; background: var(--bg-light); }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}

.service-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem; margin-bottom: 20px; display: inline-block;
  width: 70px; height: 70px; line-height: 70px; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; box-shadow: 0 4px 16px rgba(230,0,18,0.3);
}

.service-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }

.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }

.service-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--primary);
  font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px;
}

.service-link:hover { gap: 14px; color: var(--primary-dark); }

/* ===== WHY US - BOLD BANNER ===== */
.why-us { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); }

.why-us h2 { color: #fff; }
.why-us h2::after { background: var(--accent-yellow); }

.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 48px; }

.benefit-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  padding: 28px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.benefit-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); border-color: var(--accent-yellow); }

.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.95rem; opacity: 0.9; }

/* ===== AREAS SECTION ===== */
.areas-section { padding: 80px 0; background: var(--bg-light); }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }

.area-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f8f8f8 100%);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
  border: 2px solid var(--border); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}

.area-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transition: transform 0.3s ease;
}

.area-card:hover::after { transform: scaleX(1); }
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.area-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.area-card p { color: var(--text-light); margin-bottom: 20px; }

.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.area-tag {
  display: inline-flex; align-items: center; gap: 6px; background: var(--bg);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  color: var(--text); border: 1px solid var(--border); transition: all 0.2s ease;
}
.area-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: scale(1.05); }

/* ===== PROCESS SECTION ===== */
.process-section { padding: 80px 0; background: var(--bg); }

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }

.step-card {
  background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); text-align: center; position: relative;
  border: 2px solid var(--border); transition: all 0.3s ease;
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.step-number {
  width: 50px; height: 50px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(230,0,18,0.3);
}

.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0; background: var(--bg-light); }

.faq-item { background: var(--bg-light); border-radius: var(--radius-lg); margin-bottom: 16px; box-shadow: var(--shadow); border: 1px solid var(--border); overflow: hidden; }

.faq-question {
  padding: 20px 24px; font-weight: 700; font-size: 1.1rem; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%); transition: all 0.2s ease;
}

.faq-question:hover { background: linear-gradient(135deg, #f0f0f0 0%, #eaeaea 100%); }

.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 700; transition: transform 0.3s ease; }

.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-light); line-height: 1.6; }

.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 300px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark) 100%); color: #fff; }

.testimonials-section h2 { color: #fff; }
.testimonials-section h2::after { background: var(--primary); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }

.testimonial-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 28px;
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease;
}

.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: var(--primary); transform: translateY(-5px); }

.testimonial-stars { color: var(--accent-yellow); font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.testimonial-author { font-weight: 700; color: var(--primary); }
.testimonial-location { font-size: 0.85rem; opacity: 0.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 2; }

.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }

.cta-phone {
  display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--primary);
  padding: 18px 40px; font-size: 1.3rem; font-weight: 900; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); transition: all 0.3s ease; text-transform: uppercase;
}

.cta-phone:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0,0,0,0.4); background: var(--accent-yellow); color: var(--dark); }

.cta-note { font-size: 0.95rem; opacity: 0.8; margin-top: 16px; }

/* ===== INFO BOX ===== */
.info-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%); border-left: 4px solid var(--accent);
  padding: 20px 24px; border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow);
}

.info-box p { color: var(--dark); font-weight: 500; margin: 0; }

/* ===== STAMP ===== */
.stamp-section { text-align: center; margin: 40px 0; }

.stamp {
  display: inline-block; background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
  border: 3px solid var(--primary); border-radius: 50%; width: 200px; height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); position: relative; animation: rotate-stamp 20s linear infinite;
}

@keyframes rotate-stamp {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.stamp-text { font-size: 0.9rem; font-weight: 700; color: var(--primary); text-align: center; line-height: 1.3; padding: 0 20px; }
.stamp-sub { font-size: 0.7rem; color: var(--text-light); margin-top: 8px; text-align: center; padding: 0 20px; }

/* ===== STICKY CONTACT ===== */
.sticky-contact {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 12px 16px; display: flex; align-items: center;
  justify-content: center; gap: 16px; font-size: 0.95rem; font-weight: 600;
  box-shadow: 0 -4px 20px rgba(230,0,18,0.4); animation: slide-up 0.5s ease-out;
}

@keyframes slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }

.sticky-contact-btn {
  background: #fff; color: var(--primary); padding: 8px 20px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sticky-contact-btn:hover { background: var(--accent-yellow); color: var(--dark); transform: scale(1.05); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #fff; padding: 60px 0 0; border-top: 4px solid var(--primary); }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }

.footer-brand h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 0.95rem; }

.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.footer-phone:hover { color: var(--accent-yellow); }

.footer-column h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 1px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.95rem; transition: all 0.2s ease; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.9rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-separator { color: rgba(255,255,255,0.5); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

.breadcrumb-light .breadcrumb a { color: var(--text-light); }
.breadcrumb-light .breadcrumb-separator { color: var(--text-light); opacity: 0.5; }
.breadcrumb-light .breadcrumb span { color: var(--text-light); opacity: 0.7; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%); margin-top: 64px; padding: 80px 0 60px; position: relative; overflow: hidden; }

.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,0,18,0.12) 0%, transparent 70%);
}

.page-hero-inner { position: relative; z-index: 2; text-align: center; padding: 0 16px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.page-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: var(--dark); position: relative; display: inline-block; }
.content-section h2::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 50px; height: 3px; background: var(--primary); border-radius: 2px; }
.content-section h3 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 16px; color: var(--dark); }
.content-section p { color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.content-section ul { margin: 16px 0 16px 24px; color: var(--text-light); }
.content-section li { margin-bottom: 10px; }
.content-section strong { color: var(--primary); font-weight: 700; }

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 32px; }

.service-detail-card {
  background: var(--bg-light); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s ease;
}

.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }

.service-detail-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.service-detail-card h4 .icon { font-size: 1.5rem; }
.service-detail-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ===== AREA LINK ITEMS ===== */
.area-link-item {
  display: flex; align-items: center; gap: 12px; background: var(--bg-light);
  padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: all 0.2s ease; margin-bottom: 10px;
}

.area-link-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateX(8px); box-shadow: var(--shadow-red); }
.area-link-item:hover .area-icon { transform: scale(1.2); }
.area-icon { font-size: 1.2rem; transition: transform 0.2s ease; }

/* ===== TABLE ===== */
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; box-shadow: var(--shadow); border-radius: var(--radius-lg); overflow: hidden; }
.pricing-table th { background: var(--dark); color: #fff; padding: 16px; text-align: left; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; }
.pricing-table td { padding: 16px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.pricing-table tr:hover td { background: #f8f8f8; }
.pricing-table tr:nth-child(even) { background: #fafafa; }
.pricing-table .price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 16px; gap: 8px; border-top: 2px solid var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
  .nav.active { display: flex; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 16px 80px; }
  .services-grid, .benefits-grid, .areas-grid, .process-steps, .service-detail-cards, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-contact { flex-direction: column; gap: 8px; padding: 10px; text-align: center; }
  .sticky-contact-text { font-size: 0.85rem; }
  .stamp { width: 160px; height: 160px; }
  .pricing-table { font-size: 0.9rem; }
  .pricing-table th, .pricing-table td { padding: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .service-card, .area-card, .benefit-card, .step-card { padding: 20px; }
  .cta-phone { font-size: 1.1rem; padding: 14px 28px; }
  .nav-cta { padding: 8px 14px; font-size: 0.8rem; }
  .logo { font-size: 1.1rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }