:root {
  --bg: #0f172a;
  --bg-2: #111c33;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --text-soft: #475569;
  --muted: #64748b;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #22c55e;
  --border: #e2e8f0;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.28), transparent 30%),
    radial-gradient(circle at left center, rgba(34, 197, 94, 0.18), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  padding-bottom: 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(15, 23, 42, 0.62);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.topbar-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: min(260px, 42vw);
  height: auto;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.topbar-links a {
  text-decoration: none;
  color: #e2e8f0;
  transition: color 0.2s ease;
}

.topbar-links a:hover {
  color: #fff;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding-top: 44px;
}

.hero-copy {
  padding-right: 10px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.eyebrow.dark {
  color: var(--primary-dark);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
}

.legal-name {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e2e8f0;
}

.lead {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: #dbeafe;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 30px rgba(14, 165, 233, 0.24);
  border: 0;
  cursor: pointer;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.cta:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 4px;
}

.metric span {
  color: #cbd5e1;
  font-size: 0.94rem;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.logo-card {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow);
}

.brand-logo {
  width: 100%;
  height: auto;
}

.hero-image,
.panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-image {
  min-height: 380px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.section {
  padding: 92px 0;
}

.alt.soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-card {
  min-height: 220px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 197, 94, 0.12));
  color: var(--primary-dark);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.card p,
.split-copy p,
.faq-list p,
.sector-card p,
.contact-box p {
  color: var(--text-soft);
  margin: 0;
}

.split-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-copy {
  display: grid;
  gap: 16px;
}

.info-panel,
.media-panel {
  border-radius: 24px;
}

.media-panel {
  overflow: hidden;
}

.checklist {
  margin: 4px 0 0;
  padding-left: 22px;
  color: var(--text-soft);
}

.checklist li {
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(34, 197, 94, 0.12));
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.timeline-item h3 {
  margin-bottom: 4px;
}

.sector-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sector-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.sector-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.sector-card div {
  padding: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary-dark);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "–";
}

.contact-box {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 28%),
    var(--surface);
  box-shadow: var(--shadow);
}

.contact-grid-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 0.95fr;
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 24px 0 18px;
}

.contact-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-value {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-button {
  width: 100%;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .contact-grid-layout {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 280px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .topbar-links {
    gap: 14px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item span {
    width: 52px;
    height: 52px;
  }

  .contact-box,
  .contact-form {
    padding: 20px;
  }
}
