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

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a1a1a; line-height: 1.6; }

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

.nav { background: #fff; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 100; }
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: #0066cc; }
.nav-links { display: flex; gap: 32px; }
.nav-link { text-decoration: none; color: #4a4a4a; font-weight: 500; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: #0066cc; }

.hero { position: relative; height: 600px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.3)); display: flex; align-items: center; }
.hero-content { max-width: 600px; }
.hero-title { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 20px; color: #f0f0f0; margin-bottom: 32px; }

.btn { display: inline-block; padding: 14px 32px; border-radius: 6px; font-weight: 600; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-size: 16px; }
.btn-primary { background: #ff6b35; color: #fff; }
.btn-primary:hover { background: #e55a28; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,107,53,0.3); }
.btn-secondary { background: #0066cc; color: #fff; }
.btn-secondary:hover { background: #0052a3; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,102,204,0.3); }
.btn-full { width: 100%; }

.section { padding: 80px 0; }
.bg-light { background: #f8f9fa; }
.bg-dark { background: #1a1a1a; color: #fff; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.section-desc { font-size: 18px; color: #666; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }

.card { background: #fff; padding: 32px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.card-icon { color: #0066cc; margin-bottom: 20px; }
.card-title { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.card-text { color: #666; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-content { }
.split-title { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 700; margin-bottom: 20px; }
.split-text { font-size: 17px; color: #666; margin-bottom: 24px; }
.split-img img { width: 100%; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.feature-list { list-style: none; margin-bottom: 32px; }
.feature-list li { padding: 12px 0; padding-left: 28px; position: relative; color: #4a4a4a; }
.feature-list li:before { content: '✓'; position: absolute; left: 0; color: #0066cc; font-weight: 700; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; text-align: center; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 800; color: #0066cc; margin-bottom: 8px; }
.stat-label { font-size: 16px; color: #666; font-weight: 500; }

.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 700; margin-bottom: 16px; }
.cta-text { font-size: 18px; margin-bottom: 32px; opacity: 0.9; }

.footer { background: #2a2a2a; color: #ccc; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.6; }
.footer-heading { color: #fff; font-weight: 600; margin-bottom: 16px; font-size: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 14px; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #ff6b35; }
.footer-bottom { border-top: 1px solid #444; padding-top: 24px; text-align: center; font-size: 14px; }

.page-hero { background: linear-gradient(135deg, #0066cc 0%, #004d99 100%); color: #fff; padding: 80px 0; text-align: center; }
.page-title { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 800; margin-bottom: 16px; }
.page-subtitle { font-size: 20px; opacity: 0.95; max-width: 700px; margin: 0 auto; }

.capability-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.capability-block.reverse { direction: rtl; }
.capability-block.reverse > * { direction: ltr; }
.capability-img img { width: 100%; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.capability-title { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 20px; }
.capability-text { font-size: 17px; color: #666; margin-bottom: 28px; line-height: 1.7; }
.capability-features { }
.feature-item { padding: 16px 0; border-bottom: 1px solid #e5e5e5; color: #4a4a4a; }
.feature-item:last-child { border-bottom: none; }
.feature-item strong { color: #0066cc; font-weight: 600; }

.industry-card { background: #fff; padding: 28px; border-radius: 8px; border-left: 4px solid #ff6b35; }
.industry-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.industry-card p { color: #666; font-size: 15px; }

.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.contact-form { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #333; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; font-family: inherit; transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: #0066cc; }

.contact-info-card { background: #fff; padding: 28px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-info-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.contact-info-text { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.contact-method { padding: 10px 0; color: #4a4a4a; font-size: 15px; }
.contact-steps { padding-left: 20px; color: #666; font-size: 15px; }
.contact-steps li { margin-bottom: 10px; }

.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.testimonial { background: #fff; padding: 32px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.testimonial-text { font-size: 16px; color: #4a4a4a; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { }
.testimonial-author strong { display: block; color: #1a1a1a; font-size: 15px; }
.testimonial-author span { color: #999; font-size: 14px; }

@media (max-width: 768px) {
  .nav-links { gap: 16px; font-size: 14px; }
  .hero { height: 400px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .capability-block, .contact-layout, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}