:root {
  --orange: #ff9f1c;
  --orange-soft: #ffe0b3;
  --orange-dark: #f37200;
  --bg: #0f172a;
  --bg-alt: #0b1220;
  --card-bg: #0b1220;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --transition-fast: 0.18s ease-out;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #f9fafb;
}

.nav-links a:hover::after {
  width: 18px;
}

.nav-cta {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3.25rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--orange);
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 34rem;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #111827;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.75);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: var(--orange-soft);
  border: 1px solid rgba(249, 115, 22, 0.6);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.5);
}

.btn-outline {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-soft);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.4);
  color: var(--text-main);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(249, 115, 22, 0.5);
  color: var(--orange-soft);
}

.full-width {
  width: 100%;
}

.hero-badges {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.28), rgba(15, 23, 42, 0.8));
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 150px;
}

.badge-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.05), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.35rem 1.3rem;
}

.primary-card {
  position: relative;
  overflow: hidden;
}

.primary-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.28), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-soft);
}

.hero-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.progress-bar {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1px;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-soft), var(--orange-dark));
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.chip {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

.hero-side-card {
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  max-width: 340px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mini-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
  margin-bottom: 0.1rem;
}

.mini-main {
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: radial-gradient(circle at top right, #111827 0, #020617 42%, #020617 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  text-align: left;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.6);
  transform: translateY(-1px);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-soft);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Projects */
.project-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.project-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.project-meta {
  list-style: none;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.project-meta li + li {
  margin-top: 0.2rem;
}

.project-note {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

/* News */
.pill-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.pill-btn-active,
.pill-btn:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.6);
  color: #f9fafb;
}

.news-card {
  position: relative;
  padding: 2rem 1.35rem 1.3rem 1.35rem;
}

.news-tag {
  position: absolute;
  top: 0.55rem;
  left: 1.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-soft);
}

.news-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.news-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.news-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(249, 115, 22, 0.4);
  border-bottom: 1px solid rgba(249, 115, 22, 0.3);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.cta-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 260px;
}

input,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  border-radius: 0.9rem;
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.55);
  background: rgba(15, 23, 42, 0.95);
}

.form-message {
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.95);
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 0.93rem;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--orange-soft);
  margin-left: 0.75rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  padding: 0 1rem;
}

.faq-answer p {
  padding-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  margin-top: 1rem;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-list li + li {
  margin-top: 0.25rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  padding-top: 1.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 1.1rem;
}

.footer-col {
  min-width: 0px;
}

.footer-col-brand {
  max-width: 280px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-brand-dot {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.footer-small-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-line {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-list {
  list-style: none;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-list li + li {
  margin-top: 0.25rem;
}

.footer-social-list li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--orange-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 0.75rem 0 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  text-align: center;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 56px 1.5rem auto 1.5rem;
    border-radius: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.7);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 3rem 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    width: 100%;
  }
}
