:root {
  --navy-950: #0a1628;
  --navy-900: #0f1f38;
  --navy-800: #16294a;
  --navy-700: #1f3a63;
  --gold-500: #c9a961;
  --gold-600: #b3924e;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #dde1e8;
  --gray-500: #6b7688;
  --gray-700: #3a4152;
  --ink: #101828;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 40px rgba(16, 24, 40, 0.12);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--gray-700); }

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

.brand-suffix {
  font-weight: 600;
  color: var(--gold-600);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a { color: var(--gray-700); transition: color .15s ease; }
.main-nav a:hover { color: var(--navy-900); }

.nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-800); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  display: block;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--navy-800), var(--navy-950) 70%);
  color: var(--white);
  padding: 96px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: none;
}

.hero-copy { max-width: 600px; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 340px;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--gold-600); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--white); }

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 700px;
}

.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: 1.6rem; color: var(--gold-500); }
.hero-stats span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--gray-50); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: -8px;
  margin-bottom: 32px;
}

.glance {
  padding: 56px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.glance-item strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-900);
}

.glance-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p { font-size: 1.05rem; }

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card-img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--gray-100);
}

.glance-facts {
  margin: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}

.glance-facts > div {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
}

.glance-facts dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.glance-facts dd {
  margin: 0;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.92rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--navy-800);
  margin-bottom: 18px;
}
.card-icon svg { width: 100%; height: 100%; }

.card h3 { color: var(--navy-900); font-size: 1.15rem; }
.card p { font-size: 0.95rem; }

.card-list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.timeline > li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.timeline > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-year {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-600);
}

.timeline-body h4 { color: var(--navy-900); margin-bottom: 6px; font-size: 1.05rem; }
.timeline-body p { margin: 0; font-size: 0.95rem; }

/* Process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process > li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  font-weight: 800;
  margin-bottom: 14px;
}

.process h4 { color: var(--navy-900); font-size: 1.05rem; }
.process p { font-size: 0.92rem; margin-bottom: 0; }

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}

.industry-item .card-icon { width: 40px; height: 40px; color: var(--navy-800); margin-bottom: 14px; }
.industry-item h4 { color: var(--navy-900); font-size: 1.02rem; margin-bottom: 6px; }
.industry-item p { font-size: 0.9rem; margin-bottom: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.team-card h4 { color: var(--navy-900); margin-bottom: 2px; }
.team-role { font-size: 0.82rem; color: var(--gold-600); font-weight: 600; margin-bottom: 10px; }
.team-card p:last-child { font-size: 0.88rem; margin-bottom: 0; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--gold-600); font-weight: 700; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin: 12px 0 0; font-size: 0.92rem; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
}

.why-item {
  border-left: 3px solid var(--gold-500);
  padding-left: 18px;
}
.why-item h4 { color: var(--navy-900); font-size: 1.05rem; }
.why-item p { font-size: 0.95rem; margin-bottom: 0; }

/* Company details */
.company-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
  margin: 0 0 24px;
}
.company-list > div { border-bottom: 1px solid var(--gray-100); padding-bottom: 12px; }
.company-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.company-list dd { margin: 0; font-weight: 600; color: var(--navy-900); }

[data-todo="true"] {
  color: var(--gold-600);
  font-weight: 700;
  font-style: italic;
}

.company-note {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 14px;
}
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.contact-list a { color: var(--navy-900); font-weight: 600; }
.contact-list a:hover { color: var(--gold-600); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 11px 13px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-700);
}
.contact-form button { align-self: flex-start; border: none; }
.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 4px 0 0;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 56px 0 40px;
}

.footer-brand .brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.footer-brand .brand-suffix {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 1.15rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 12px;
  max-width: 260px;
}

.footer-col h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid,
  .company-list,
  .contact-inner,
  .about-layout,
  .process,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: 1fr; }
  .glance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 220px; }
  .about-card { max-width: 420px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .hero-stats { grid-template-columns: 1fr; }
  .timeline > li { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
