*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #f3f4f6;
  --bg-elevated: #ffffff;
  --bg-elevated-soft: #f9fafb;
  --accent-start: #ff9a3c;
  --accent-end: #ff3366;
  --accent-alt: #4f46e5;
  --text-main: #111827;
  --text-muted: #4b5563;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.15);
  --shadow-subtle: 0 10px 35px rgba(15, 23, 42, 0.12);
  --max-width: 1320px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, #f3f4f6 45%, #e5e7eb 100%);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.92),
    rgba(249, 250, 251, 0.96)
  );
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  display: block;
  height: 52px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  transition: width 0.22s ease;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background-image: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  box-shadow: 0 14px 40px rgba(248, 113, 113, 0.35);
  color: #111827;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 20px 55px rgba(248, 113, 113, 0.5);
}

.btn-ghost {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #111827;
}

.btn-ghost:hover {
  background: #e5e7eb;
}

.btn-header {
  font-size: 0.85rem;
  padding-inline: 1.1rem;
}

.btn-full-width {
  width: 100%;
  margin-top: 0.6rem;
}

/* NAV TOGGLE (unchanged layout, slightly lighter) */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* HERO */

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
}

.gradient-text {
  display: block;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-start);
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 0 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-tags span {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #4b5563;
}

.hero-panel {
  display: flex;
  align-items: stretch;
}

.hero-card {
  width: 100%;
  border-radius: 24px;
  padding: 1.6rem 1.7rem 1.4rem;
  background:
    radial-gradient(circle at -10% -20%, rgba(79, 70, 229, 0.12) 0, #ffffff 50%)
      border-box,
    radial-gradient(circle at 120% 120%, rgba(249, 115, 22, 0.15) 0, #ffffff 65%)
      border-box;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
}

.hero-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: #374151;
}

.hero-card li::before {
  content: "•";
  color: #f97316;
  margin-right: 0.45rem;
}

/* METRICS, SECTIONS, CARDS, CONTACT, FOOTER
   (same structure as current, just light backgrounds and darker text) */

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric {
  border-radius: 16px;
  padding: 0.75rem 0.8rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-subtle);
}

.metric-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.section {
  padding: 3.5rem 0;
}

.section-dark {
  background: #f9fafb;
}

.section-accent {
  background: linear-gradient(to bottom, #fef3c7, #fffbeb);
  border-top: 1px solid #f59e0b33;
  border-bottom: 1px solid #f59e0b33;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header {
  max-width: 38rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
}

.about-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.about-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-subtle);
  font-size: 0.86rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.card p {
  margin: 0 0 0.6rem;
  color: var(--text-muted);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #374151;
  font-size: 0.8rem;
}

.card-compact {
  padding: 1rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.4rem;
}

.pill-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.82rem;
  color: #374151;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-right: 0.5rem;
  background: radial-gradient(circle, #f97316 0, #f59e0b 40%, #ea580c 100%);
}

/* CONTACT */

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2.25rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.contact-copy p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
}

.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: #374151;
}

.contact-highlights li::before {
  content: "▹";
  color: #f59e0b;
  margin-right: 0.4rem;
}

.contact-form {
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-soft);
}

/* FORM INPUTS */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.form-field label {
  font-size: 0.78rem;
  color: #4b5563;
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
  background: #ffffff;
}

/* FOOTER */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.8rem;
}

.footer-brand {
  max-width: 18rem;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 1rem;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-columns {
  display: flex;
  gap: 2.5rem;
}

.footer-column h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-column li + li {
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 0.9rem 0 1.4rem;
  margin-top: 0.2rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-bottom-links a {
  color: #4b5563;
}
.footer-bottom-links a:hover {
  color: #111827;
}

/* RESPONSIVE (same breakpoints, just reused) */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 0.25rem;
  }

  .brand-logo {
    height: 40px;
    max-height: 40px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% - 0.1rem) 0 auto 0;
    padding: 0.7rem 1.3rem 0.9rem;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transform-origin: top;
    transform: scaleY(0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .btn-header {
    display: none;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-card {
    padding: 1.3rem 1.25rem 1.2rem;
  }

  .hero-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .card-grid-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-columns {
    flex-wrap: wrap;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}