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

:root {
  --orange: #E8681A;
  --orange-light: #F07830;
  --dark: #1A1A2E;
  --grey: #555;
  --light-grey: #F7F7F7;
  --mid-grey: #999;
  --white: #fff;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: var(--white); font-size: 15px; line-height: 1.7; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: var(--dark); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; z-index: 100; box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.nav-logo { color: var(--white); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.lang-pill { color: var(--orange) !important; border: 1px solid var(--orange); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem !important; transition: background 0.2s, color 0.2s !important; }
.lang-pill:hover { background: var(--orange) !important; color: var(--white) !important; }

/* HERO */
#home {
  min-height: 100vh;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--nav-h) 48px 0;
  position: relative; overflow: hidden;
}

/* Bold diagonal split background */
#home::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 48%; height: 100%;
  background: linear-gradient(160deg, rgba(232,104,26,0.11) 0%, rgba(232,104,26,0.04) 60%, transparent 100%);
  pointer-events: none;
}

/* Hard diagonal edge line */
#home::after {
  content: '';
  position: absolute; top: 0; right: 42%;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(232,104,26,0.25) 30%, rgba(232,104,26,0.25) 70%, transparent);
  pointer-events: none;
  transform: skewX(-8deg);
}

.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,26,0.18) 0%, transparent 58%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,26,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Floating dot grid texture */
.hero-dots {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: center;
  padding: 48px 0 32px;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px;
  background: rgba(232,104,26,0.1); border: 1px solid rgba(232,104,26,0.25);
  padding: 6px 14px 6px 10px; border-radius: 20px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; flex-shrink: 0; }

.hero-role {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.hero-role { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.32); text-transform: uppercase; margin-bottom: 18px; }
.hero-title { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1.05; margin-bottom: 22px; }
.hero-title span { color: var(--orange); display: block; }
.hero-title em { font-style: normal; color: rgba(255,255,255,0.9); }

.hero-desc { color: rgba(255,255,255,0.58); font-size: 0.96rem; line-height: 1.9; max-width: 500px; margin-bottom: 36px; font-weight: 300; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary { background: var(--orange); color: var(--white); padding: 14px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; display: inline-block; box-shadow: 0 4px 20px rgba(232,104,26,0.4); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,104,26,0.5); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.75); padding: 14px 30px; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 0.86rem; letter-spacing: 0.04em; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* stat strip */
.hero-stats { display: flex; gap: 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.hstat { flex: 1; padding-right: 24px; margin-right: 24px; border-right: 1px solid rgba(255,255,255,0.07); }
.hstat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hstat-n { font-size: 1.75rem; font-weight: 700; color: var(--white); line-height: 1; }
.hstat-n span { color: var(--orange); }
.hstat-l { font-size: 0.67rem; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 5px; }

/* photo */
.hero-photo-wrap { position: relative; display: flex; justify-content: center; align-items: center; }

/* outer glow ring */
.hero-photo-wrap::before {
  content: ''; position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-photo-ring {
  width: 290px; height: 290px; border-radius: 50%;
  border: 2px solid rgba(232,104,26,0.5);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 0 8px rgba(232,104,26,0.08), 0 0 0 20px rgba(232,104,26,0.04);
}
.hero-photo { width: 274px; height: 274px; border-radius: 50%; object-fit: cover; object-position: center 8%; display: block; border: 3px solid var(--orange); filter: contrast(1.05); }
.hero-badge {
  position: absolute; bottom: 10px; right: -18px;
  background: var(--orange); color: var(--white);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 6px 24px rgba(232,104,26,0.55);
}
/* credential chips on photo */
.hero-chip {
  position: absolute; background: rgba(26,26,46,0.92);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 8px 12px; backdrop-filter: blur(8px);
}
.hero-chip-top { top: 10px; left: -24px; }
.hero-chip-mid { top: 50%; left: -36px; transform: translateY(-50%); }
.hero-chip .chip-val { color: var(--white); font-size: 0.78rem; font-weight: 700; line-height: 1; }
.hero-chip .chip-lbl { color: rgba(255,255,255,0.4); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

/* SECTIONS */
section { padding: 92px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: var(--dark); line-height: 1.18; margin-bottom: 14px; }
.section-title span { color: var(--orange); }
.section-lead { color: var(--grey); font-size: 0.97rem; max-width: 620px; line-height: 1.85; margin-bottom: 52px; font-weight: 300; }
.rule { width: 44px; height: 3px; background: var(--orange); border-radius: 2px; margin-bottom: 30px; }

/* ABOUT */
#about { background: var(--light-grey); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { color: var(--grey); line-height: 1.9; margin-bottom: 18px; font-weight: 300; font-size: 0.96rem; }
.about-text p strong { color: var(--dark); font-weight: 600; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat { background: var(--white); border-radius: 6px; padding: 26px 22px; border-left: 3px solid var(--orange); }
.stat-n { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.stat-n span { color: var(--orange); }
.stat-l { font-size: 0.72rem; color: var(--mid-grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* SERVICES */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { background: var(--light-grey); border-radius: 6px; padding: 32px 26px; border-top: 3px solid transparent; transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s; }
.svc:hover { border-top-color: var(--orange); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.svc-icon { width: 42px; height: 42px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.15rem; }
.svc h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.svc ul { list-style: none; }
.svc ul li { color: var(--grey); font-size: 0.83rem; padding: 3px 0 3px 15px; position: relative; font-weight: 300; line-height: 1.5; }
.svc ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* CREDENTIALS */
#credentials { background: var(--dark); }
#credentials .section-title { color: var(--white); }
#credentials .section-lead { color: rgba(255,255,255,0.5); }
.creds-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cred { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 26px; display: flex; gap: 18px; transition: background 0.2s; }
.cred:hover { background: rgba(255,255,255,0.07); }
.cred-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 5px; }
.cred-title { color: var(--white); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.cred-desc { color: rgba(255,255,255,0.47); font-size: 0.8rem; line-height: 1.65; font-weight: 300; }
.cred-date { color: var(--orange); font-size: 0.72rem; font-weight: 600; margin-top: 7px; }

/* TESTIMONIALS */
#testimonials { background: var(--light-grey); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi { background: var(--white); border-radius: 6px; padding: 34px; box-shadow: 0 2px 18px rgba(0,0,0,0.05); position: relative; }
.testi::before { content: '\201C'; position: absolute; top: 18px; left: 26px; font-size: 3.8rem; color: var(--orange); opacity: 0.18; line-height: 1; font-family: Georgia, serif; pointer-events: none; }
.testi-text { color: var(--grey); font-size: 0.9rem; line-height: 1.85; font-style: italic; font-weight: 300; margin-bottom: 20px; padding-top: 16px; }
.testi-author { font-weight: 700; font-size: 0.83rem; color: var(--dark); }
.testi-co { color: var(--orange); font-size: 0.76rem; font-weight: 500; margin-top: 2px; }

/* CONTACT */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--grey); line-height: 1.85; margin-bottom: 34px; font-weight: 300; font-size: 0.96rem; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.ci { display: flex; align-items: center; gap: 16px; }
.ci-icon { width: 40px; height: 40px; background: var(--light-grey); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-label { font-size: 0.7rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 2px; }
.ci-val { font-size: 0.88rem; color: var(--grey); }
.ci-val a { color: var(--orange); text-decoration: none; font-weight: 500; }
.ci-val a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 0.75rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.06em; }
.fg input, .fg textarea, .fg select { font-family: 'Poppins', sans-serif; font-size: 0.88rem; padding: 11px 15px; border: 1.5px solid #e2e2e2; border-radius: 4px; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange); }
.fg textarea { resize: vertical; min-height: 110px; }

/* file upload */
.file-upload-label {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px dashed #d0d0d0; border-radius: 4px;
  padding: 14px 16px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}
.file-upload-label:hover { border-color: var(--orange); background: #fdf3ec; }
.file-upload-label .upload-icon { font-size: 1.2rem; flex-shrink: 0; }
.file-upload-label .upload-text { font-size: 0.84rem; color: var(--grey); font-weight: 400; }
.file-upload-label .upload-text strong { color: var(--orange); font-weight: 600; }
.file-upload-label .upload-hint { font-size: 0.72rem; color: var(--mid-grey); margin-top: 2px; }
#file-input { display: none; }
#file-name { font-size: 0.78rem; color: var(--orange); font-weight: 500; margin-top: 4px; min-height: 18px; }

.form-btn { background: var(--orange); color: var(--white); border: none; padding: 13px 30px; border-radius: 4px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; letter-spacing: 0.04em; transition: background 0.2s; align-self: flex-start; }
.form-btn:hover { background: var(--orange-light); }

/* FOOTER */
footer { background: var(--dark); padding: 28px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo { color: var(--white); font-weight: 700; font-size: 0.92rem; }
.footer-logo span { color: var(--orange); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.75rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* RESPONSIVE */
@media (max-width: 920px) {
  nav { padding: 0 24px; }
  section { padding: 64px 24px; }
  #home { padding: var(--nav-h) 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-ring { width: 220px; height: 220px; }
  .hero-photo { width: 204px; height: 204px; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hstat { border-right: none; margin-right: 0; padding-right: 0; min-width: 100px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
