@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --orange: #F47920;
  --orange-light: #FF9A3C;
  --orange-dark: #D96A10;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-500: #9E9E9E;
  --gray-700: #616161;
  --gray-900: #212121;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-orange: 0 8px 30px rgba(244,121,32,0.25);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: var(--gray-700); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white;
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #fff 0%, #FFF5EB 100%);
  padding: 100px 5% 80px;
  display: flex; align-items: center; gap: 60px;
  min-height: 560px;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,121,32,0.1);
  color: var(--orange); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 {
  font-size: clamp(36px, 5vw, 54px); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; color: var(--gray-900);
}
.hero h1 span { color: var(--orange); }
.hero p { font-size: 18px; color: var(--gray-700); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-orange);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid var(--orange); color: var(--orange);
  padding: 12px 28px; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(244,121,32,0.08); }
.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
}
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 340px;
}
.hero-card {
  background: white; border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(244,121,32,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.hero-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.hero-card p { font-size: 12px; color: var(--gray-500); }

/* SECTIONS */
section { padding: 80px 5%; }
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange); margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray-700); max-width: 560px; }
.section-header { margin-bottom: 56px; }

/* SERVICES */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(244,121,32,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-700); }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.why-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray-700); }
.why-image {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 20px; padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.why-stat { color: white; }
.why-stat .num { font-size: 48px; font-weight: 800; line-height: 1; }
.why-stat .lbl { font-size: 14px; opacity: 0.85; }
.why-divider { height: 1px; background: rgba(255,255,255,0.25); }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  text-align: center; padding: 80px 5%;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.btn-white {
  background: white; color: var(--orange);
  padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 15px;
  display: inline-block; transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ABOUT PAGE */
.about-hero { background: linear-gradient(135deg, #fff 0%, #FFF5EB 100%); padding: 80px 5%; text-align: center; }
.about-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; margin-bottom: 16px; }
.about-hero p { font-size: 18px; color: var(--gray-700); max-width: 600px; margin: 0 auto; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 30px; font-weight: 800; margin-bottom: 16px; }
.about-text p { font-size: 16px; color: var(--gray-700); margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.value-item {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow);
}
.value-item .icon { font-size: 28px; margin-bottom: 10px; }
.value-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.value-item p { font-size: 13px; color: var(--gray-700); }

/* CONTACT PAGE */
.contact-hero { background: linear-gradient(135deg, #fff 0%, #FFF5EB 100%); padding: 80px 5%; text-align: center; }
.contact-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.contact-hero p { font-size: 18px; color: var(--gray-700); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-card-icon {
  width: 48px; height: 48px; background: rgba(244,121,32,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; font-weight: 600; color: var(--gray-500); margin-bottom: 4px; }
.contact-card p { font-size: 16px; font-weight: 600; color: var(--gray-900); }
.contact-card a { color: var(--orange); text-decoration: none; }
.contact-form {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: 8px; font-size: 15px; font-family: inherit;
  transition: border-color 0.2s; outline: none; background: white;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; background: var(--orange); color: white;
  padding: 14px; border: none; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--gray-900); color: white;
  padding: 56px 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--gray-500); margin-top: 12px; max-width: 280px; }
.footer-col h5 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--gray-200); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--gray-500); }
.footer-logo-text { font-size: 18px; font-weight: 700; color: white; }
.footer-logo-text span { color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 60px 20px; gap: 40px; }
  .hero-cards { max-width: 100%; }
  .why-grid, .about-content, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
