/* Opus IVS - Tech/Diagnostic Dashboard Design */
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #06b6d4;
  --success: #10b981;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--gray-700); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* Header - Dark Tech Style */
.header { position: fixed; top: 0; left: 0; right: 0; background: var(--secondary); height: 70px; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 24px; height: 24px; color: var(--white); }
.logo-text { font-size: 20px; font-weight: 800; color: var(--white); }
.logo-text span { color: var(--primary-light); }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; padding: 6px 0; position: relative; transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-btn { background: var(--primary); color: var(--white); padding: 10px 22px; border-radius: 6px; font-weight: 700; font-size: 13px; transition: all 0.25s; }
.nav-btn:hover { background: var(--primary-dark); transform: translateY(-1px); color: var(--white); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2.5px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* Hero - Dashboard Style */
.hero { padding: 100px 0 60px; background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-light) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: 
  radial-gradient(circle at 20% 50%, rgba(124,58,237,0.15) 0%, transparent 50%),
  radial-gradient(circle at 80% 50%, rgba(6,182,212,0.1) 0%, transparent 50%); }

.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hero-content { padding-right: 30px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--primary-light); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.hero-badge svg { width: 14px; height: 14px; }
.hero-title { font-size: 48px; font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 20px; letter-spacing: -1px; }
.hero-title span { background: linear-gradient(135deg, var(--primary-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 30px; line-height: 1.75; }
.hero-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 34px; }
.hero-feature { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px; }
.hero-feature-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.hero-feature-icon svg { width: 18px; height: 18px; color: var(--white); }
.hero-feature h4 { font-size: 13px; color: var(--white); font-weight: 700; }
.hero-buttons { display: flex; gap: 14px; }

.hero-visual { position: relative; }
.hero-dashboard { background: var(--secondary-light); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-xl); }
.hero-dashboard-header { display: flex; gap: 6px; margin-bottom: 16px; }
.hero-dashboard-header span { width: 10px; height: 10px; border-radius: 50%; }
.hero-dashboard-header span:nth-child(1) { background: #ef4444; }
.hero-dashboard-header span:nth-child(2) { background: #fbbf24; }
.hero-dashboard-header span:nth-child(3) { background: #10b981; }
.hero-dashboard-img { border-radius: 8px; overflow: hidden; }
.hero-dashboard-img img { width: 100%; height: 300px; object-fit: cover; }
.hero-metric { position: absolute; background: var(--white); padding: 14px 18px; border-radius: 10px; box-shadow: var(--shadow-lg); }
.hero-metric.top { top: -10px; right: -20px; }
.hero-metric.bottom { bottom: 30px; left: -20px; }
.hero-metric-value { font-size: 22px; font-weight: 900; color: var(--primary); }
.hero-metric-label { font-size: 11px; color: var(--gray-500); font-weight: 600; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.25s; border: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.35); }
.btn-accent { background: linear-gradient(135deg, var(--accent), #0891b2); color: var(--white); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,182,212,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.btn-dark { background: var(--secondary); color: var(--white); }
.btn-dark:hover { background: var(--gray-900); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 85px 0; }
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--secondary); color: var(--white); }

.section-header { margin-bottom: 50px; }
.section-header.text-center { text-align: center; }
.section-tag { display: inline-block; color: var(--primary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.section-title { font-size: 38px; font-weight: 900; color: var(--secondary); line-height: 1.15; letter-spacing: -0.5px; }
.section-title span { color: var(--primary); }
.section-desc { font-size: 17px; color: var(--gray-500); margin-top: 14px; max-width: 600px; }
.section-header.text-center .section-desc { margin: 14px auto 0; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* Services - Widget Cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-widget { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.35s; position: relative; }
.service-widget:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-widget-img { height: 180px; overflow: hidden; position: relative; }
.service-widget-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-widget:hover .service-widget-img img { transform: scale(1.06); }
.service-widget-icon { position: absolute; bottom: 14px; right: 14px; width: 46px; height: 46px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.service-widget-icon svg { width: 22px; height: 22px; color: var(--white); }
.service-widget-body { padding: 24px; }
.service-widget-body h3 { font-size: 18px; color: var(--secondary); margin-bottom: 8px; font-weight: 800; }
.service-widget-body p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }

/* Stats */
.stats-row { display: flex; justify-content: center; gap: 70px; padding: 45px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.stat-block { text-align: center; }
.stat-value { font-size: 42px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-text { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; font-weight: 600; }

/* Why Section */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card { display: flex; gap: 18px; padding: 28px; background: var(--white); border-radius: 12px; box-shadow: var(--shadow); transition: all 0.3s; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-light), var(--primary)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 24px; height: 24px; color: var(--white); }
.why-text h3 { font-size: 17px; color: var(--secondary); margin-bottom: 6px; font-weight: 800; }
.why-text p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* Lead Form */
.lead-section { padding: 85px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-900) 100%); position: relative; }
.lead-section::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.02'%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"); }

.lead-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 55px; align-items: center; position: relative; z-index: 1; }
.lead-info h2 { font-size: 36px; color: var(--white); margin-bottom: 16px; font-weight: 900; }
.lead-info > p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 34px; line-height: 1.8; }
.lead-contacts { display: flex; flex-direction: column; gap: 16px; }
.lead-contact { display: flex; align-items: center; gap: 12px; color: var(--white); }
.lead-contact-icon { width: 42px; height: 42px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.lead-contact-icon svg { width: 20px; height: 20px; color: var(--primary-light); }
.lead-contact span { font-size: 14px; }
.lead-contact a { color: var(--white); }
.lead-contact a:hover { color: var(--primary-light); }

.lead-form { background: var(--white); border-radius: 14px; padding: 38px; box-shadow: var(--shadow-xl); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--gray-700); font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--gray-300); border-radius: 8px; font-size: 15px; transition: all 0.25s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.form-check label { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* Services Page */
.page-hero { padding: 140px 0 70px; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); }
.page-hero h1 { font-size: 46px; color: var(--white); margin-bottom: 14px; font-weight: 900; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); }

.service-block { padding: 70px 0; border-bottom: 1px solid var(--gray-300); }
.service-block.alt { background: var(--gray-100); }
.service-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-block-img img { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; height: 330px; object-fit: cover; }
.service-block-content h2 { font-size: 28px; color: var(--secondary); margin-bottom: 14px; font-weight: 900; }
.service-block-content > p { color: var(--gray-500); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.service-features li::before { content: '◆'; color: var(--primary); font-size: 10px; }

/* Gallery */
.gallery-section { padding: 70px 0 90px; background: var(--gray-100); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-card { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: all 0.35s; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; height: 190px; object-fit: cover; }
.gallery-card-body { padding: 18px; }
.gallery-card-body h4 { font-size: 16px; color: var(--secondary); margin-bottom: 5px; font-weight: 700; }
.gallery-card-body p { font-size: 13px; color: var(--gray-500); }

/* Contact */
.contact-section { padding: 140px 0 100px; background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; }
.contact-info h2 { font-size: 32px; color: var(--secondary); margin-bottom: 14px; font-weight: 900; }
.contact-info > p { color: var(--gray-500); margin-bottom: 34px; font-size: 15px; }
.contact-details { margin-bottom: 34px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item-icon { width: 46px; height: 46px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-item-text h4 { font-size: 15px; color: var(--secondary); margin-bottom: 3px; font-weight: 700; }
.contact-item-text p, .contact-item-text a { font-size: 14px; color: var(--gray-500); }

.hours-card { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); }
.hours-card h4 { font-size: 17px; color: var(--secondary); margin-bottom: 16px; font-weight: 700; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--gray-300); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--gray-500); }
.hours-row span:last-child { font-weight: 700; color: var(--secondary); }

.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: var(--shadow-lg); }
.map-section { padding: 0 0 100px; background: var(--gray-100); }
.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrap iframe { width: 100%; height: 370px; border: none; display: block; }

/* Legal */
.legal-page { padding: 140px 0 100px; }
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h1 { font-size: 36px; color: var(--secondary); margin-bottom: 32px; font-weight: 900; }
.legal-content h2 { font-size: 23px; color: var(--secondary); margin: 36px 0 14px; font-weight: 800; }
.legal-content p { color: var(--gray-500); margin-bottom: 14px; line-height: 1.85; font-size: 15px; }
.legal-content ul { margin: 14px 0 24px 20px; }
.legal-content ul li { color: var(--gray-500); margin-bottom: 10px; position: relative; padding-left: 18px; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

/* Sitemap */
.sitemap-page { padding: 140px 0 100px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.sitemap-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); }
.sitemap-card h3 { font-size: 19px; color: var(--secondary); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); font-weight: 800; }
.sitemap-card ul li { margin-bottom: 12px; }
.sitemap-card ul li a { color: var(--gray-500); font-size: 14px; transition: all 0.25s; }
.sitemap-card ul li a:hover { color: var(--primary); padding-left: 3px; }

/* Footer */
.footer { background: var(--secondary); color: var(--white); padding: 65px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 45px; margin-bottom: 45px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.footer-brand address { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.9; font-style: normal; }
.footer-brand address a { color: rgba(255,255,255,0.85); }
.footer-brand address a:hover { color: var(--primary-light); }
.footer-col h4 { font-size: 15px; margin-bottom: 20px; color: var(--white); font-weight: 700; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: all 0.25s; }
.footer-links a:hover { color: var(--primary-light); padding-left: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; }
.footer-disclaimer { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 14px 18px; margin-bottom: 16px; }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 20px 24px; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); display: none; }
.cookie-banner.active { display: block; }
.cookie-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cookie-text h4 { font-size: 15px; color: var(--secondary); margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--gray-500); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.active { display: flex; }
.cookie-modal-box { background: var(--white); border-radius: 14px; padding: 32px; max-width: 450px; width: 100%; }
.cookie-modal-box h3 { font-size: 22px; color: var(--secondary); margin-bottom: 10px; font-weight: 800; }
.cookie-modal-box > p { color: var(--gray-500); margin-bottom: 24px; font-size: 14px; }
.cookie-opt { padding: 12px 0; border-bottom: 1px solid var(--gray-300); }
.cookie-opt:last-of-type { border-bottom: none; }
.cookie-opt label { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--gray-700); cursor: pointer; }
.cookie-opt p { color: var(--gray-500); font-size: 12px; margin-top: 5px; }
.cookie-modal-btns { display: flex; gap: 10px; margin-top: 24px; }

/* Skip Link */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--primary); color: var(--white); padding: 10px 20px; z-index: 99999; border-radius: 6px; font-weight: 700; transition: top 0.3s; }
.skip-link:focus { top: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-content { padding-right: 0; order: 1; }
  .hero-visual { order: 0; }
  .hero-title { font-size: 40px; }
  .hero-features { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header { height: 64px; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--secondary); flex-direction: column; padding: 20px; gap: 0; }
  .nav.active { display: flex; }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-btn { margin-top: 12px; display: block; text-align: center; }
  .mobile-toggle { display: flex; }
  
  .hero { padding: 80px 0 50px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 15px; }
  .hero-features { grid-template-columns: 1fr; gap: 12px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-dashboard-img img { height: 220px; }
  .hero-metric { display: none; }
  
  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 28px; padding: 36px 0; }
  .stat-value { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 28px; }
  .contact-form-wrap { padding: 28px; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .btn { flex: 1; }
}
