/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Graphik', 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #000;
  transition: background .3s;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 40px; width: auto; }
.logo span { font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: .3px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.75); transition: color .2s; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ===== HERO ===== */
.hero {
  margin-top: 64px;
  background: #000;
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: linear-gradient(135deg, #ED8A19 0%, #C47012 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero .hero-content { max-width: 550px; }
.hero .hero-label {
  display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #ED8A19; margin-bottom: 16px;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 0;
  font-weight: 700; font-size: .85rem; transition: all .3s; cursor: pointer; border: none;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: #ED8A19; color: #fff; }
.btn-primary:hover { background: #D47710; }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; margin-left: 12px; }
.btn-outline:hover { background: #fff; color: #000; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-title { margin-bottom: 56px; }
.section-title.centered { text-align: center; }
.section-title h2 { font-size: 2.4rem; font-weight: 800; color: #000; margin-bottom: 12px; line-height: 1.15; }
.section-title p { color: #555; font-size: 1.05rem; max-width: 560px; }
.section-title.centered p { margin: 0 auto; }
.section-title .accent-line {
  width: 60px; height: 4px; background: #ED8A19; margin-top: 16px;
}
.section-title.centered .accent-line { margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h3 { font-size: 1.6rem; color: #000; margin-bottom: 16px; font-weight: 800; }
.about-text p { color: #555; margin-bottom: 18px; font-size: .95rem; }
.about-text .highlight {
  border-left: 4px solid #ED8A19; padding: 16px 20px; color: #333;
  background: #fef3e2; font-size: .95rem; margin-top: 8px;
}

/* Value Proposition */
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vp-card {
  background: #fff; padding: 32px 24px;
  border: 1px solid #eee; transition: all .3s;
  position: relative; overflow: hidden;
}
.vp-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: #ED8A19; transition: height .3s;
}
.vp-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.vp-card:hover::before { height: 100%; }
.vp-card .vp-icon {
  width: 48px; height: 48px; background: #fef3e2;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 1.3rem; color: #ED8A19;
}
.vp-card h4 { font-size: .95rem; color: #000; margin-bottom: 8px; font-weight: 700; }
.vp-card p { font-size: .85rem; color: #666; line-height: 1.6; }

/* ===== SERVICES ===== */
.services { background: #fafafa; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.service-card {
  background: #fff; overflow: hidden;
  border: 1px solid #eee;
  display: flex; flex-direction: column;
  transition: all .3s;
  position: relative;
}
.service-card:hover { z-index: 1; box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.service-card-header {
  padding: 32px 28px 20px;
  position: relative;
}
.service-card-header .service-icon {
  width: 52px; height: 52px; background: #fef3e2;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #ED8A19; margin-bottom: 16px;
}
.service-card-header h3 { font-size: 1.15rem; font-weight: 800; color: #000; }
.service-card-body { padding: 0 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { color: #666; font-size: .88rem; margin-bottom: 16px; line-height: 1.7; }
.service-card-body ul { margin-bottom: 20px; flex: 1; }
.service-card-body ul li {
  padding: 5px 0 5px 20px; font-size: .85rem; color: #444;
  position: relative;
}
.service-card-body ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; background: #ED8A19; border-radius: 0;
}
.service-card-body .card-link {
  color: #ED8A19; font-weight: 700; font-size: .82rem; display: inline-flex;
  align-items: center; gap: 6px; margin-top: auto; text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card-body .card-link:hover { gap: 10px; }

/* ===== STATS / BANNER ===== */
.stats {
  background: #000; color: #fff; padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: #ED8A19; }
.stat-item p { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #ED8A19, #C47012);
  color: #fff; padding: 72px 0; text-align: center;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1.05rem; }
.cta-section .btn { background: #fff; color: #C47012; }
.cta-section .btn:hover { background: #f0f0f0; }

/* ===== CONTACT ===== */
.contact { background: #fafafa; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info h3 { font-size: 1.4rem; color: #000; margin-bottom: 20px; font-weight: 800; }
.contact-info p { color: #555; margin-bottom: 24px; font-size: .92rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .icon-circle {
  width: 44px; height: 44px; min-width: 44px; background: #fef3e2;
  display: flex; align-items: center; justify-content: center;
  color: #ED8A19; font-size: 1.1rem;
}
.contact-detail div strong { display: block; color: #000; font-size: .88rem; margin-bottom: 2px; }
.contact-detail div span { color: #666; font-size: .85rem; }
.contact-form { background: #fff; padding: 36px; border: 1px solid #eee; }
.contact-form h3 { font-size: 1.3rem; color: #000; margin-bottom: 24px; font-weight: 800; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: #000; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd;
  font-size: .9rem; font-family: inherit; transition: border-color .2s;
  background: #fafafa; border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #ED8A19; background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; }

/* ===== FOOTER ===== */
.site-footer {
  background: #000; color: rgba(255,255,255,.6); padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { font-size: .85rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #ED8A19; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 32px; }
.footer-brand span { color: #fff; font-weight: 700; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  text-align: center; font-size: .8rem; margin-top: 40px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  margin-top: 64px; background: #000; color: #fff;
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; bottom: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(135deg, #ED8A19 0%, #C47012 100%);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 8px; }
.page-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; width: 100%;
    flex-direction: column; background: #000; padding: 24px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 72px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: .95rem; }
  .hero::before { width: 100%; clip-path: none; opacity: .3; }
  .page-banner::before { width: 100%; clip-path: none; opacity: .3; }
  .vp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
