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

:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --dark: #1f2937;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}
.btn:hover { background: var(--primary-dark); text-decoration: none; }
.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #374151; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-block { display: block; width: 100%; }

/* Header */
.header { background: var(--white); position: fixed; top: 0; left: 0; right: 0; z-index: 999; border-bottom: 1px solid #e5e7eb; }

.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }

.logo { font-size: 20px; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--dark); font-weight: 500; font-size: 15px; }
.nav a:hover, .nav a.active { color: var(--primary); text-decoration: none; }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 10px 20px !important; border-radius: 4px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero { padding: 85px 0 50px; background: var(--light); }
.hero h1 { font-size: 34px; font-weight: 900; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 16px; color: var(--gray); margin-bottom: 24px; line-height: 1.75; }
.hero-buttons { display: flex; gap: 12px; }

/* Sections */
.section { padding: 55px 0; }
.section-alt { background: var(--light); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 10px; }
.section-header p { font-size: 15px; color: var(--gray); max-width: 500px; margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.service-card img { width: 100%; height: 150px; object-fit: cover; }
.service-card-body { padding: 18px; }
.service-card-body h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
.service-card-body p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-box { text-align: center; padding: 22px 14px; background: var(--white); border-radius: 8px; border: 1px solid #e5e7eb; }
.feature-box svg { width: 36px; height: 36px; color: var(--primary); margin-bottom: 12px; }
.feature-box h4 { font-size: 14px; color: var(--dark); margin-bottom: 6px; font-weight: 700; }
.feature-box p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Lead Form */
.lead-section { padding: 55px 0; background: var(--dark); }
.lead-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 35px; align-items: start; }
.lead-info h2 { font-size: 26px; color: var(--white); margin-bottom: 14px; font-weight: 900; }
.lead-info > p { color: rgba(255,255,255,0.85); margin-bottom: 22px; font-size: 15px; line-height: 1.75; }
.lead-contact p { color: rgba(255,255,255,0.9); margin-bottom: 10px; font-size: 14px; }

.lead-form { background: var(--white); padding: 28px; border-radius: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--dark); font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 4px; font-size: 14px;
}
.form-group input:focus { outline: none; border-color: var(--primary); }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Page Header */
.page-header { padding: 95px 0 40px; background: var(--primary); text-align: center; }
.page-header h1 { font-size: 32px; color: var(--white); font-weight: 900; margin-bottom: 8px; }
.page-header p { font-size: 15px; color: rgba(255,255,255,0.85); }

/* About */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 45px; }
.about-row.alt { direction: rtl; }
.about-row.alt > * { direction: ltr; }
.about-img img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; }
.about-text h2 { font-size: 24px; color: var(--dark); margin-bottom: 12px; font-weight: 900; }
.about-text p { color: var(--gray); line-height: 1.85; margin-bottom: 12px; }

.mission-box { background: #fed7aa; padding: 32px; border-radius: 8px; max-width: 750px; margin: 0 auto 45px; border: 2px solid var(--primary); text-align: center; }
.mission-box h2 { font-size: 24px; color: var(--dark); margin-bottom: 12px; font-weight: 900; }
.mission-box p { color: var(--gray); line-height: 1.85; font-size: 15px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--white); padding: 24px 18px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border-top: 3px solid var(--primary); }
.value-card svg { width: 36px; height: 36px; color: var(--primary); margin-bottom: 12px; }
.value-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Service Details */
.service-detail { padding: 45px 0; border-bottom: 1px solid #e5e7eb; }
.service-detail:nth-child(even) { background: var(--light); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }
.service-detail-img img { width: 100%; height: 240px; object-fit: cover; border-radius: 8px; }
.service-detail-content h3 { font-size: 22px; color: var(--dark); margin-bottom: 12px; font-weight: 900; }
.service-detail-content > p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; }
.service-detail-list { margin-bottom: 18px; }
.service-detail-list li { color: var(--gray); margin-bottom: 8px; padding-left: 22px; position: relative; font-size: 14px; }
.service-detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid img { width: 100%; height: 170px; object-fit: cover; border-radius: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 35px; }
.contact-info h2 { font-size: 24px; color: var(--dark); margin-bottom: 10px; font-weight: 900; }
.contact-info > p { color: var(--gray); margin-bottom: 22px; }

.contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.contact-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 14px; color: var(--dark); margin-bottom: 3px; font-weight: 600; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--gray); }

.hours-box { background: var(--white); padding: 20px; border-radius: 8px; margin-top: 22px; border: 1px solid #e5e7eb; }
.hours-box h4 { font-size: 14px; color: var(--dark); margin-bottom: 14px; font-weight: 700; }
.hours-line { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #e5e7eb; font-size: 14px; }
.hours-line:last-child { border-bottom: none; }

.contact-form { background: var(--white); padding: 28px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.map-wrapper { margin-top: 40px; }
.map-wrapper iframe { width: 100%; height: 280px; border: none; border-radius: 8px; }

/* Business Model */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 45px; }
.model-card { background: var(--white); padding: 26px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border-left: 4px solid var(--primary); }
.model-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 12px; font-weight: 900; }
.model-card p { color: var(--gray); line-height: 1.8; margin-bottom: 12px; font-size: 14px; }
.model-card ul { margin-top: 14px; }
.model-card ul li { color: var(--gray); margin-bottom: 8px; padding-left: 20px; position: relative; font-size: 13px; }
.model-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

/* Legal */
.legal-section { padding: 95px 0 60px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { font-size: 30px; color: var(--dark); margin-bottom: 22px; font-weight: 900; }
.legal-content h2 { font-size: 18px; color: var(--dark); margin: 28px 0 12px; font-weight: 800; }
.legal-content p { color: var(--gray); margin-bottom: 14px; line-height: 1.8; font-size: 14px; }
.legal-content ul { margin: 14px 0 22px; padding-left: 22px; }
.legal-content ul li { color: var(--gray); margin-bottom: 10px; line-height: 1.7; }
.legal-content ul li::marker { color: var(--primary); }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sitemap-card { background: var(--white); padding: 22px; border-radius: 8px; border: 1px solid #e5e7eb; }
.sitemap-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--light); font-weight: 800; }
.sitemap-card a { display: block; color: var(--gray); padding: 6px 0; font-size: 14px; }
.sitemap-card a:hover { color: var(--primary); }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 45px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 35px; margin-bottom: 28px; }
.footer-brand h3 { font-size: 18px; margin-bottom: 4px; }
.footer-brand h3 span { display: block; font-size: 11px; font-weight: 600; color: #fdba74; letter-spacing: 1px; margin-top: 3px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 8px; line-height: 1.6; }
.footer-links h4 { font-size: 13px; margin-bottom: 16px; color: #fdba74; font-weight: 700; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); font-size: 14px; padding: 5px 0; }
.footer-links a:hover { color: #fdba74; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.footer-disclaimer { background: rgba(234,88,12,0.15); padding: 12px 16px; border-radius: 6px; margin-bottom: 14px; border-left: 3px solid var(--primary); }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Cookie */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 16px 22px; box-shadow: 0 -3px 16px rgba(0,0,0,0.1); z-index: 9999; display: none; }
.cookie-bar.visible { display: block; }
.cookie-inner { max-width: 1040px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cookie-content h4 { font-size: 15px; color: var(--dark); margin-bottom: 3px; font-weight: 700; }
.cookie-content p { font-size: 13px; color: var(--gray); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 9px 16px; font-size: 14px; }

.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.visible { display: flex; }
.cookie-modal-box { background: var(--white); padding: 26px; border-radius: 8px; max-width: 400px; width: 100%; }
.cookie-modal-box h3 { font-size: 20px; color: var(--dark); margin-bottom: 10px; font-weight: 800; }
.cookie-modal-box > p { color: var(--gray); margin-bottom: 20px; font-size: 14px; }
.cookie-option { padding: 12px 0; border-bottom: 1px solid #e5e7eb; }
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option label { display: flex; justify-content: space-between; font-weight: 600; color: var(--dark); font-size: 14px; }
.cookie-option p { font-size: 12px; color: var(--gray); margin-top: 5px; }
.cookie-modal-btns { display: flex; gap: 10px; margin-top: 22px; }

.skip-link { position: absolute; top: -100px; left: 16px; background: var(--primary); color: var(--white); padding: 10px 16px; z-index: 99999; border-radius: 4px; font-weight: 700; font-size: 14px; }
.skip-link:focus { top: 16px; }

/* CTA */
.cta-box { background: var(--primary); padding: 45px 0; text-align: center; }
.cta-box h2 { font-size: 26px; color: var(--white); margin-bottom: 10px; font-weight: 900; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 20px; font-size: 15px; }
.cta-box .btn { background: var(--dark); color: var(--white); }
.cta-box .btn:hover { background: var(--white); color: var(--dark); }

/* Responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-grid, .contact-grid, .about-row, .service-detail-grid, .model-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 600px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: 0 5px 18px rgba(0,0,0,0.08); }
  .nav.active { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid #e5e7eb; }
  .burger { display: block; }

  .hero h1 { font-size: 26px; }
  .hero-buttons { flex-direction: column; }

  .services-grid, .features-grid, .values-grid, .gallery-grid, .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-buttons { width: 100%; }
}
