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

:root {
  --blue:       #2a7fc4;
  --blue-dark:  #1a5a91;
  --blue-deep:  #0d2f4f;
  --orange:     #e8823a;
  --orange-dark:#c9641f;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-300:   #cbd5e1;
  --gray-500:   #64748b;
  --gray-700:   #334155;
  --gray-900:   #0f172a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-700); line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 5%;
}
nav.scrolled {
  background: var(--blue-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(13,47,79,0.78) 0%, rgba(13,47,79,0.55) 60%, rgba(13,47,79,0.88) 100%),
    url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,130,58,0.18);
  border: 1px solid rgba(232,130,58,0.4);
  color: var(--orange);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat .num span { color: var(--orange); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.1rem; }

/* ── PAGE HERO ── */
.page-hero {
  background:
    linear-gradient(135deg, rgba(13,47,79,0.92), rgba(26,90,145,0.88)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  padding: 140px 5% 80px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── COMMON ── */
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue); }
.section-sub { font-size: 1rem; color: var(--gray-500); max-width: 560px; line-height: 1.75; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-light { background: var(--gray-50); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(42,127,196,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(42,127,196,0.12), rgba(232,130,58,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--blue);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--blue); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; margin-top: 1rem; transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* ── SERVICE DETAIL ── */
.service-detail {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  margin-bottom: 1.75rem;
  transition: box-shadow 0.25s;
}
.service-detail:hover { box-shadow: 0 12px 32px rgba(42,127,196,0.1); }
.sd-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  flex-shrink: 0;
}
.sd-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.sd-body p { color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem; }
.sd-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.sd-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--gray-700); }
.sd-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.75rem;
  transition: background 0.2s, transform 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-card i { font-size: 1.75rem; color: var(--orange); margin-bottom: 1rem; display: block; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 0;
}
.step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 20px rgba(42,127,196,0.3);
  border: 4px solid var(--gray-50);
}
.step h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; border-radius: 16px; overflow: visible; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; display: block; }
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 0.75rem;
}
.about-badge .icon { font-size: 1.75rem; color: var(--orange); }
.about-badge .text strong { display: block; font-size: 1.2rem; font-weight: 800; color: var(--gray-900); }
.about-badge .text span { font-size: 0.78rem; color: var(--gray-500); }
.about-list { list-style: none; margin: 1.5rem 0 2rem; }
.about-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.95rem; color: var(--gray-700); }
.about-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 16px rgba(42,127,196,0.07);
}
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--blue); }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* ── FOUNDER ── */
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(42,127,196,0.08);
  align-items: start;
}
.founder-photo { text-align: center; }
.founder-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(255,255,255,0.7);
  margin: 0 auto 1.5rem;
  border: 5px solid var(--gray-100);
}
.founder-name-block { margin-bottom: 1.5rem; }
.founder-name-block h2 { font-size: 1.75rem; font-weight: 800; color: var(--gray-900); }
.founder-title {
  display: inline-block;
  background: linear-gradient(135deg, rgba(42,127,196,0.1), rgba(232,130,58,0.1));
  color: var(--blue);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.founder-bio p { color: var(--gray-500); line-height: 1.85; font-size: 0.97rem; }
.founder-quote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--orange);
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
}
.founder-quote i { color: var(--orange); font-size: 1.2rem; margin-bottom: 0.75rem; display: block; }
.founder-quote blockquote { font-size: 0.97rem; font-style: italic; color: var(--gray-700); line-height: 1.8; }
.founder-quote cite { display: block; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--blue); font-style: normal; }
.founder-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.founder-socials a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.founder-socials a:hover { background: var(--blue-dark); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(42,127,196,0.12), rgba(232,130,58,0.1));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 0.85rem; color: var(--gray-900); margin-bottom: 0.15rem; }
.ci-text span { font-size: 0.9rem; color: var(--gray-500); }
.ci-text a { color: var(--blue); text-decoration: none; }
.contact-form { background: var(--gray-50); border-radius: 16px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: inherit;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,127,196,0.35); }

/* ── FOOTER ── */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 260px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--orange); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 320px; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .founder-card { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo { display: flex; align-items: center; gap: 1.5rem; text-align: left; }
  .founder-avatar { width: 100px; height: 100px; font-size: 2.5rem; margin: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sd-list { grid-template-columns: 1fr; }
  .service-detail { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: var(--blue-deep);
    padding: 1.5rem 5%; gap: 1rem;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
