/* ========================================
   SZÉPENFESTÜNK - Mobile First CSS
   Szobafestés, Mázolás, Lakásfestés
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2d6a4f;
  --primary-light: #40916c;
  --primary-dark: #1b4332;
  --accent: #f4a261;
  --accent-hover: #e76f51;
  --accent-light: #fef3e2;
  --success: #10b981;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-h: 70px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 65px;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; color: var(--primary-dark); font-weight: 700; }
h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.section { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { margin-bottom: 0.75rem; position: relative; display: inline-block; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 0.5rem auto 0; border-radius: 2px; }
.section-title p { color: var(--gray-500); max-width: 600px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border: none; border-radius: var(--radius);
  font-size: 0.9375rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); text-decoration: none; line-height: 1.4; white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-light); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-phone { background: var(--success); color: var(--white); }
.btn-phone:hover { background: #059669; color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--primary-dark); }
.btn-white:hover { background: var(--gray-100); color: var(--primary-dark); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white); z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: var(--max-width); margin: 0 auto; padding: 0 1rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; }
.header-cta { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.nav-overlay.active { display: block; }

.nav {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px;
  height: 100vh; height: 100dvh; background: var(--white); z-index: 1000;
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  transition: right var(--transition); overflow-y: auto; box-shadow: var(--shadow-xl);
}
.nav.active { right: 0; }
.nav-menu { display: flex; flex-direction: column; }
.nav-menu > li { border-bottom: 1px solid var(--gray-100); }
.nav-menu > li > a, .nav-menu .dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 0; color: var(--gray-700); font-weight: 500;
  font-size: 0.9375rem; background: none; border: none; width: 100%;
  cursor: pointer; text-align: left; font-family: inherit;
}
.nav-menu > li > a:hover, .nav-menu .dropdown-toggle:hover { color: var(--accent); }
.nav-menu > li.active > a { color: var(--accent); font-weight: 600; }
.dropdown-arrow { width: 16px; height: 16px; transition: transform var(--transition); color: var(--gray-400); }
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu { display: none; padding-left: 1rem; padding-bottom: 0.5rem; }
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.5rem 0; color: var(--gray-500); font-size: 0.875rem; }
.dropdown-menu a:hover { color: var(--accent); }
.nav-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.nav-cta .btn { text-align: center; }

/* Hero */
.hero {
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,162,97,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,162,97,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.25; }
.hero h1 span { color: var(--accent); }
.hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; line-height: 1.7; max-width: 600px; }
.hero-cta { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: rgba(255,255,255,0.8); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* Problem Section */
.problem-section { background: var(--gray-50); }
.problem-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
.problem-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); display: flex; gap: 1rem; align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.problem-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--accent-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.problem-card-icon svg { width: 24px; height: 24px; color: var(--accent-hover); }
.problem-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.problem-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0; }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1rem;
}
.service-card-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1rem; }

/* Process */
.process-section { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.process-step { display: flex; gap: 1rem; align-items: flex-start; }
.process-step-number {
  width: 48px; height: 48px; min-width: 48px; background: var(--primary);
  color: var(--accent); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1.125rem;
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.process-step p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0; }
.process-note {
  margin-top: 1.5rem; padding: 1rem; background: var(--accent-light);
  border-radius: var(--radius); font-size: 0.875rem; color: var(--gray-700);
  border-left: 3px solid var(--accent);
}

/* Trust */
.trust-section { background: var(--primary-dark); color: var(--white); }
.trust-section .section-title h2 { color: var(--white); }
.trust-section .section-title h2::after { background: var(--accent); }
.trust-section .section-title p { color: rgba(255,255,255,0.7); }
.trust-items { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.trust-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.trust-item svg { width: 24px; height: 24px; min-width: 24px; color: var(--accent); margin-top: 2px; }
.trust-item span { font-size: 0.9375rem; color: rgba(255,255,255,0.9); }

/* References Teaser */
.ref-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.ref-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.ref-card-img {
  height: 200px; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.ref-card-img svg { width: 48px; height: 48px; color: rgba(255,255,255,0.3); }
.ref-card-body { padding: 1.25rem; }
.ref-card-tag {
  display: inline-block; padding: 0.25rem 0.75rem; background: var(--accent-light);
  color: var(--accent-hover); font-size: 0.75rem; font-weight: 600;
  border-radius: 99px; margin-bottom: 0.5rem;
}
.ref-card-body h4 { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.ref-card-body p { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0; }

/* Testimonials */
.testimonials-section { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-size: 3rem; color: var(--accent); line-height: 1;
  position: absolute; top: 0.75rem; left: 1.25rem; font-family: Georgia, serif;
}
.testimonial-text { padding-top: 1.5rem; font-size: 0.9375rem; font-style: italic; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author { font-size: 0.8125rem; font-weight: 600; color: var(--gray-800); }
.testimonial-author span { font-weight: 400; color: var(--gray-400); }
.stars { color: var(--accent); font-size: 0.875rem; margin-bottom: 0.25rem; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.cta-section .section-title h2 { color: var(--white); }
.cta-section .section-title h2::after { background: var(--accent); }
.cta-section .section-title p { color: rgba(255,255,255,0.8); }
.cta-content { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.cta-info { text-align: center; }
.cta-phone { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.cta-phone svg { width: 32px; height: 32px; }
.cta-note { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }

.cta-form {
  background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 1.5rem; backdrop-filter: blur(10px);
}
.cta-form h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.125rem; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.8); margin-bottom: 0.375rem; font-weight: 500; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 0.9375rem; font-family: inherit;
  transition: border-color var(--transition);
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }
.form-control:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.15); }
select.form-control { -webkit-appearance: none; appearance: none; padding-right: 2.5rem; }
select.form-control option { color: var(--gray-800); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-check { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 1rem; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); }
.form-check label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.form-check label a { color: var(--accent); text-decoration: underline; }

.form-light .form-group label { color: var(--gray-700); }
.form-light .form-control { border: 1px solid var(--gray-300); background: var(--white); color: var(--gray-800); }
.form-light .form-control::placeholder { color: var(--gray-400); }
.form-light .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,162,97,0.15); }
.form-light .form-check label { color: var(--gray-500); }

/* Bottom CTA */
.bottom-cta { background: var(--accent); padding: 2rem 0; text-align: center; }
.bottom-cta h2 { color: var(--primary-dark); margin-bottom: 0.5rem; font-size: 1.25rem; }
.bottom-cta p { color: var(--primary-dark); opacity: 0.8; margin-bottom: 1.5rem; }
.bottom-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; align-items: center; }

/* Footer */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 1rem; }
.footer-col p { font-size: 0.8125rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.8125rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-trust { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 1rem; margin-top: 1rem; }
.footer-trust-items { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: center; }
.footer-trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--accent); }
.footer-trust-item svg { width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; justify-content: center; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }

/* Mobile CTA Bar */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--white);
  border-top: 1px solid var(--gray-200); padding: 0.75rem 1rem;
  display: flex; gap: 0.75rem; z-index: 998; box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.8125rem; padding: 0.625rem 0.5rem; }

/* Page Header */
.page-header {
  padding: calc(var(--header-h) + 2rem) 0 2rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
.page-header h1 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.8125rem; margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Solution / Service pages */
.solution-intro { font-size: 1.0625rem; color: var(--gray-600); max-width: 800px; }
.solution-when { background: var(--accent-light); border-radius: var(--radius-lg); padding: 1.5rem; margin: 2rem 0; }
.solution-when h3 { margin-bottom: 1rem; }
.solution-when ul li { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.9375rem; }
.solution-when ul li svg { width: 20px; height: 20px; min-width: 20px; color: var(--accent-hover); margin-top: 2px; }
.solution-content h3 { margin: 2rem 0 1rem; }
.solution-content ul { margin-bottom: 1.5rem; }
.solution-content ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.9375rem; color: var(--gray-600); }
.solution-content ul li::before { content: '\2713'; color: var(--success); font-weight: 700; position: absolute; left: 0; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 1.25rem; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 0.9375rem; font-weight: 600; color: var(--gray-800);
  font-family: inherit; gap: 1rem;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; min-width: 20px; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1rem; font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* Price Table */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table th, .price-table td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-200); font-size: 0.9375rem; }
.price-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.price-table tr:hover td { background: var(--gray-50); }
.price-table td:last-child { font-weight: 600; color: var(--primary-dark); white-space: nowrap; }
.price-note { font-size: 0.8125rem; color: var(--gray-500); font-style: italic; margin-top: 0.5rem; }

.price-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.price-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: all var(--transition); position: relative;
}
.price-card.popular { border-color: var(--accent); }
.price-card.popular::before {
  content: 'Legnépszerűbb'; position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
  background: var(--accent); color: var(--primary-dark); padding: 0.25rem 1rem;
  border-radius: 99px; font-size: 0.75rem; font-weight: 600;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.price-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.price-card .price { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.price-card .price small { font-size: 0.875rem; font-weight: 400; color: var(--gray-500); }
.price-card .price-desc { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 1rem; }
.price-card ul { margin-bottom: 1.5rem; }
.price-card ul li { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.price-card ul li svg { width: 16px; height: 16px; min-width: 16px; color: var(--success); }

/* Filter buttons (references) */
.filter-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.filter-btn {
  padding: 0.375rem 1rem; border: 1px solid var(--gray-300); border-radius: 99px;
  background: none; font-size: 0.8125rem; cursor: pointer; color: var(--gray-600);
  transition: all var(--transition); font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-info-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--primary);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-info-item h4 { font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 0; }
.contact-info-item a { font-size: 1.125rem; font-weight: 600; color: var(--primary); }
.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.contact-form-card h3 { margin-bottom: 1.5rem; }

/* About */
.about-why-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
.about-why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); }
.about-why-item svg { width: 24px; height: 24px; min-width: 24px; color: var(--accent); margin-top: 2px; }
.about-why-item h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.about-why-item p { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0; }

/* Area tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.area-tag { padding: 0.375rem 0.875rem; background: var(--gray-100); border-radius: 99px; font-size: 0.8125rem; color: var(--gray-600); transition: all var(--transition); }
.area-tag:hover { background: var(--accent-light); color: var(--accent-hover); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 80px; right: 1rem; width: 44px; height: 44px;
  background: var(--primary); color: var(--white); border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center; cursor: pointer;
  z-index: 997; box-shadow: var(--shadow-lg); transition: all var(--transition);
}
.scroll-top:hover { background: var(--accent); }
.scroll-top.visible { display: flex; }
.scroll-top svg { width: 20px; height: 20px; }

/* Overflow table wrapper */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ========================================
   RESPONSIVE - Tablet
   ======================================== */
@media (min-width: 640px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-cta { flex-direction: row; }
  .problem-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-why-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .bottom-cta-buttons { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-cards { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   RESPONSIVE - Desktop
   ======================================== */
@media (min-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .container { padding: 0 2rem; }
  .section { padding: 4rem 0; }

  .nav-toggle { display: none; }
  .nav-overlay { display: none !important; }
  .nav {
    position: static; width: auto; max-width: none; height: auto;
    padding: 0; box-shadow: none; overflow: visible;
    display: flex; align-items: center; gap: 0;
  }
  .nav-menu { flex-direction: row; gap: 0; }
  .nav-menu > li { border-bottom: none; }
  .nav-menu > li > a, .nav-menu .dropdown-toggle {
    padding: 0.5rem 0.75rem; font-size: 0.875rem;
  }
  .dropdown { position: relative; }
  .dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 240px; padding: 0.5rem 0; z-index: 100;
  }
  .dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 0.5rem 1rem; }
  .dropdown-menu a:hover { background: var(--gray-50); }
  .nav-cta { display: none; }

  .header-cta { display: flex; gap: 0.75rem; align-items: center; }

  .hero { padding: calc(var(--header-h) + 4rem) 0 4rem; }
  .hero h1 { font-size: 2.75rem; }
  .hero-subtitle { font-size: 1.125rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(5, 1fr); text-align: center; }
  .process-step { flex-direction: column; align-items: center; text-align: center; }
  .trust-items { grid-template-columns: repeat(3, 1fr); }
  .ref-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-content { grid-template-columns: 1fr 1fr; }
  .cta-info { text-align: left; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .about-why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .price-cards { grid-template-columns: repeat(3, 1fr); }

  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }

  .page-header { padding: calc(var(--header-h) + 3rem) 0 3rem; }
  .page-header h1 { font-size: 2rem; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 3rem; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
