:root {
  --bg: #0b1120;
  --bg-light: #f9fafb;
  --surface: #111827;
  --surface-soft: #1f2937;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.15);
  --accent-strong: #ea580c;
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-on-dark: #f9fafb;
  --border-subtle: #e5e7eb;
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
  --shadow-subtle: 0 6px 20px rgba(15, 23, 42, 0.09);
}

/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Layout utilities */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  text-align: center;
  margin: 0 0 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(15, 23, 42, 0.88);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 20% 0, #f97316, #fb923c);
  color: var(--text-on-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.logo-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(249, 250, 251, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.15rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #111827, #020617);
  color: var(--text-on-dark);
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3.75rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #d1d5db;
  max-width: 520px;
  margin-bottom: 1.85rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
}

.primary-btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.35);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(248, 113, 22, 0.45);
}

.ghost-btn {
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.ghost-btn:hover {
  background: rgba(15, 23, 42, 0.9);
}

/* Hero highlights */
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.highlight-item .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f97316, #fb923c);
}

/* Hero images */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image {
  border-radius: 1.4rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.main-image {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.overlay-image {
  position: absolute;
  width: 52%;
  bottom: -1.5rem;
  right: -1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  transform: translateY(0);
  background: #020617;
}

.hero-tag {
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.94);
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-subtle);
  max-width: 200px;
}

.hero-tag-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.hero-tag-text {
  font-size: 0.77rem;
  color: #e5e7eb;
}

/* Light sections */
.light-section {
  background: var(--bg-light);
}

/* About section */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.8rem;
  align-items: flex-start;
}

#about h2 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

#about p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.about-card {
  background: #ffffff;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.about-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.about-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Offerings */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.offer-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.1rem;
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.offer-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.offer-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step {
  position: relative;
  padding: 1.5rem 1.2rem 1.3rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.step-number {
  position: absolute;
  top: -0.9rem;
  left: 1.2rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(248, 113, 22, 0.4);
}

.step h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  background: #020617;
  color: var(--text-on-dark);
  padding-bottom: 3.5rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: flex-start;
}

.contact-text h2 {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}

.contact-text p {
  margin: 0;
  color: #cbd5f5;
  font-size: 0.96rem;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
}

.contact-item {
  padding: 1.1rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.65);
}

.contact-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.contact-item a {
  color: #fbbf24;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.9rem 0 1.1rem;
}

.footer-inner {
  text-align: center;
  color: #9ca3af;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-nav {
    display: none; /* simple mobile nav: just hide for now */
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-tag {
    display: none;
  }

  .overlay-image {
    display: none;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .offerings-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
