:root {
  --bg: #edf2f7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-muted: #f5f8fb;
  --text: #132238;
  --muted: #61738d;
  --heading: #0c1d33;
  --accent: #0f4c81;
  --accent-strong: #0a6aa1;
  --accent-soft: #d9e8f5;
  --header-bg: #0b0b0d;
  --header-bg-strong: #050608;
  --header-text: #f6f7f9;
  --header-muted: rgba(246, 247, 249, 0.72);
  --header-line: rgba(255, 255, 255, 0.12);
  --cta-red: #c62828;
  --cta-red-strong: #a61f1f;
  --line: rgba(15, 42, 72, 0.12);
  --line-strong: rgba(15, 42, 72, 0.2);
  --success: #11895d;
  --shadow: 0 24px 56px rgba(12, 29, 51, 0.12);
  --shadow-soft: 0 16px 36px rgba(12, 29, 51, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(158, 189, 219, 0.35), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(214, 228, 241, 0.65), transparent 24%),
    linear-gradient(180deg, #f1f5f9 0%, #eef4f8 50%, #f7fafc 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 85%);
  pointer-events: none;
  z-index: -2;
}

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

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

main {
  position: relative;
  z-index: 1;
}

.container,
.container-fluid {
  position: relative;
}

.page-shell {
  padding-bottom: 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.98), rgba(11, 11, 13, 0.96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.site-header-shell {
  width: 100%;
  margin: 0 auto;
}

.header-status {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  padding: 0.55rem 1.25rem 0.5rem;
  border: none;
  border-bottom: 1px solid var(--header-line);
  border-radius: 0;
  background: transparent;
  color: var(--header-muted);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.header-status a {
  color: var(--header-text);
  font-weight: 600;
}

.enterprise-nav {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  padding: 0.06rem 0.85rem;
  border: none;
  border-radius: 0;
  background: transparent;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28246, 247, 249, 0.96%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.is-scrolled .site-header {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brand-lockup {
  margin-right: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: clamp(132px, 11.1vw, 194px);
  height: auto;
  object-fit: contain;
}

.navbar-nav {
  gap: 0.15rem;
}

.nav-link {
  position: relative;
  padding: 0.34rem 0.64rem !important;
  font-family: 'Manrope', sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  color: rgba(246, 247, 249, 0.92);
  border-radius: 999px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.34rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 40, 40, 0), rgba(198, 40, 40, 1), rgba(198, 40, 40, 0));
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn.btn-primary,
.btn.btn-outline-dark,
.btn.btn-outline-primary,
.btn.btn-success,
.btn.btn-light {
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-cta,
.btn.btn-primary {
  color: #fff;
  border: 1px solid transparent;
}

.nav-cta {
  color: #fff;
  padding: 0.5rem 0.9rem;
  margin-left: 0.8rem;
  font-size: 0.86rem;
  background: linear-gradient(135deg, var(--cta-red), var(--cta-red-strong));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 28px rgba(137, 22, 22, 0.34);
}

.btn.btn-primary {
  background: linear-gradient(135deg, #0f4c81, #19679f);
  box-shadow: 0 16px 32px rgba(15, 76, 129, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #d83232, #b62424);
  box-shadow: 0 18px 32px rgba(137, 22, 22, 0.4);
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 20px 38px rgba(15, 76, 129, 0.28);
}

.btn.btn-outline-dark {
  border: 1px solid rgba(15, 42, 72, 0.14);
  color: var(--heading);
  background: rgba(255, 255, 255, 0.75);
}

.btn.btn-outline-dark:hover,
.btn.btn-outline-primary:hover,
.btn.btn-light:hover,
.btn.btn-success:hover {
  transform: translateY(-2px);
}

.btn.btn-outline-primary {
  border: 1px solid rgba(15, 76, 129, 0.2);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
}

.btn.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.9);
  color: var(--heading);
}

.btn.btn-success {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, #0b8757, #16a36e);
  box-shadow: 0 14px 30px rgba(17, 137, 93, 0.2);
}

.hero-section,
.section-block,
.cta-banner-section,
.detail-section,
.legal-section,
.careers-section {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
}

.hero-section {
  padding: 4rem 0 3rem;
}

.hero-panel {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-panel::before {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -120px;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.18), transparent 65%);
}

.hero-panel::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(177, 205, 228, 0.32), transparent 68%);
}

.hero-copy {
  padding: 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  padding: 0.48rem 0.9rem;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  background: rgba(217, 232, 245, 0.46);
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c81, #64a1cf);
}

.hero-tagline {
  max-width: 28ch;
  margin: 0 0 1rem;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-title,
.section-title,
.detail-title,
.legal-title,
.careers-title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 4.05rem);
  line-height: 1.01;
}

.hero-title span,
.section-title span,
.detail-title span {
  color: var(--accent);
}

.hero-subtitle,
.section-copy,
.detail-lead,
.legal-lead,
.careers-lead {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.hero-subtitle {
  max-width: 58ch;
  margin: 1.5rem 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
}

.hero-proof span,
.trust-notes span,
.inline-badges span,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #27405d;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  padding: 3rem;
}

.hero-orbit {
  position: absolute;
  inset: 1.8rem;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 25%, rgba(217, 232, 245, 0.6), transparent 26%),
    linear-gradient(155deg, rgba(15, 76, 129, 0.1), rgba(255, 255, 255, 0));
}

.hero-visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 50px rgba(12, 29, 51, 0.14);
}

.hero-visual-card.primary {
  top: 3.4rem;
  right: 2.5rem;
  width: min(420px, calc(100% - 5rem));
  padding: 1.6rem;
}

.hero-visual-card.secondary {
  left: 2.2rem;
  bottom: 3.2rem;
  width: min(320px, calc(100% - 4rem));
  padding: 1.4rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.visual-metric {
  padding: 1rem;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 248, 251, 0.88), rgba(255, 255, 255, 0.95));
}

.visual-metric strong,
.stat-card strong,
.metric-card strong {
  display: block;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.visual-metric span,
.stat-card span,
.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-timeline {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.mini-timeline div {
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(15, 76, 129, 0.28);
  border-radius: 0 16px 16px 0;
  background: rgba(245, 248, 251, 0.78);
}

.trust-strip {
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 42, 72, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.trust-strip-label {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-strip-item {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 42, 72, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.94), rgba(255, 255, 255, 0.98));
  color: #27405d;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-align: center;
}

.section-block {
  padding: 2.5rem 0 0;
}

.section-heading-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 2.95vw, 2.5rem);
  line-height: 1.12;
}

.metric-row,
.service-grid,
.why-grid,
.industry-grid,
.process-grid,
.project-grid,
.confidence-grid,
.faq-grid,
.footer-grid,
.careers-grid,
.list-grid {
  display: grid;
  gap: 1.3rem;
}

.metric-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card,
.service-card,
.why-card,
.industry-card,
.process-card,
.project-card,
.confidence-card,
.faq-card,
.contact-panel,
.contact-form,
.detail-card,
.legal-card,
.career-card,
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.metric-card {
  padding: 1.5rem;
}

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

.service-card,
.why-card,
.industry-card,
.process-card,
.project-card,
.confidence-card,
.faq-card,
.detail-card,
.legal-card,
.career-card {
  overflow: hidden;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.why-card:hover,
.industry-card:hover,
.process-card:hover,
.project-card:hover,
.confidence-card:hover,
.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(12, 29, 51, 0.14);
  border-color: rgba(15, 76, 129, 0.16);
}

.card-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.card-body {
  padding: 1.6rem;
}

.card-kicker,
.detail-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(217, 232, 245, 0.55);
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-title,
.detail-card h2,
.legal-card h2,
.career-card h2,
.contact-panel h2,
.contact-form h2,
.contact-form h3 {
  margin: 0;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card-copy,
.card-list,
.card-meta,
.detail-list,
.legal-card p,
.legal-card li,
.career-card p,
.career-card li,
.contact-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.card-list,
.detail-list,
.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.inline-badges,
.stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stack-badges span {
  display: inline-flex;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 248, 251, 0.78);
  color: #24405f;
  font-size: 0.95rem;
  font-weight: 600;
}

.why-grid,
.industry-grid,
.project-grid,
.confidence-grid,
.faq-grid,
.careers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.process-card {
  padding: 1.7rem;
}

.process-step-index {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.16), rgba(100, 161, 207, 0.16));
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.project-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.project-card .card-meta span {
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 248, 251, 0.8);
  font-size: 0.84rem;
  font-weight: 700;
  color: #29415e;
}

.confidence-card {
  padding: 1.8rem;
}

.confidence-card blockquote {
  margin: 0;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.6;
}

.confidence-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.faq-card {
  padding: 1.6rem;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--heading);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: '-';
}

.faq-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section-wrap {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(245, 248, 251, 0.58), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.contact-panel,
.contact-form {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.contact-panel {
  background:
    radial-gradient(circle at top right, rgba(217, 232, 245, 0.55), transparent 25%),
    linear-gradient(135deg, rgba(12, 29, 51, 0.98), rgba(17, 58, 93, 0.95));
  color: #fff;
}

.contact-panel::after {
  content: '';
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 161, 207, 0.28), transparent 68%);
}

.contact-panel h2,
.contact-panel p,
.contact-panel a {
  position: relative;
  z-index: 1;
}

.contact-panel h2,
.contact-panel a,
.contact-panel p {
  color: #fff;
}

.contact-data {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.contact-data a,
.contact-data span {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.contact-form {
  background:
    radial-gradient(circle at top left, rgba(217, 232, 245, 0.6), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.92));
}

.form-highlight {
  margin: 1rem 0 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 16px;
  background: rgba(217, 232, 245, 0.36);
  color: #2d4662;
}

.required-note {
  color: var(--muted);
}

.required-star {
  color: #c0392b;
  font-weight: 800;
}

.contact-form .form-label {
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.contact-form .form-control {
  min-height: 52px;
  border: 1px solid rgba(15, 42, 72, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.92);
}

.contact-form textarea.form-control {
  min-height: 148px;
}

.contact-form .form-control:focus {
  border-color: rgba(15, 76, 129, 0.34);
  box-shadow: 0 0 0 0.22rem rgba(15, 76, 129, 0.12);
}

.field-error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.4rem;
  color: #c0392b;
}

.trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b8757, #19a86f);
  box-shadow: 0 18px 32px rgba(17, 137, 93, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.custom-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 19, 33, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.custom-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-box {
  width: min(460px, 100%);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 56px rgba(12, 29, 51, 0.24);
  text-align: center;
}

.popup-box h4 {
  margin: 0;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.popup-box p {
  margin: 1rem 0 1.3rem;
  color: var(--muted);
  line-height: 1.68;
}

body.popup-open {
  overflow: hidden;
}

.cta-banner-section {
  padding: 2.5rem 0 0;
}

.cta-banner {
  padding: 2.4rem 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(12, 29, 51, 0.98), rgba(15, 76, 129, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  color: #fff;
}

.cta-banner .section-title,
.cta-banner .section-copy {
  color: #fff;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 4rem 0 2.2rem;
  background: #000;
}

.site-footer .container {
  width: min(calc(100% - 24px), var(--container));
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.footer-logo {
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  max-width: 32ch;
  margin: 0.85rem 0 0;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.footer-badge-highlight {
  color: #ffffff !important;
  background: linear-gradient(135deg, #c62828, #7f1111) !important;
  border-color: rgba(127, 17, 17, 0.36) !important;
  box-shadow: 0 12px 28px rgba(166, 31, 31, 0.22);
}

.footer-copy {
  max-width: 38ch;
  margin: 0.8rem 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.site-footer a {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0 !important;
  border: 1px solid rgba(15, 42, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  fill: currentColor;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  box-shadow: 0 10px 18px rgba(15, 76, 129, 0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 0 0.3rem;
  color: var(--muted);
}

.detail-section,
.legal-section,
.careers-section {
  padding: 3.2rem 0 0;
}

.page-hero-card,
.detail-shell,
.legal-shell,
.careers-shell {
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.detail-grid,
.legal-grid,
.careers-grid,
.benefit-grid {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.6rem;
}

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

.detail-card,
.legal-card,
.career-card {
  padding: 1.7rem;
}

.detail-cta,
.careers-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.legal-card h3,
.detail-card h3,
.career-card h3 {
  margin: 1rem 0 0;
  color: var(--heading);
  font-family: 'Manrope', sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.iti {
  width: 100%;
}

.iti .form-control,
.iti input {
  width: 100%;
}

.iti__selected-flag {
  border-right: 1px solid rgba(15, 42, 72, 0.16);
  margin-right: 10px;
  padding-right: 10px;
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle:focus {
  box-shadow: 0 0 0 0.22rem rgba(198, 40, 40, 0.18);
}

@media (max-width: 1199px) {
  .enterprise-nav {
    border-radius: 0;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--header-line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

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

@media (max-width: 991px) {
  .header-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-copy,
  .hero-visual {
    padding: 2.2rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .trust-strip-grid,
  .metric-row,
  .service-grid,
  .why-grid,
  .industry-grid,
  .process-grid,
  .project-grid,
  .confidence-grid,
  .faq-grid,
  .careers-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading-wrap,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 0;
  }

  .site-header-shell,
  .hero-section,
  .section-block,
  .cta-banner-section,
  .detail-section,
  .legal-section,
  .careers-section,
  .site-footer .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .header-status,
  .hero-copy,
  .hero-visual,
  .contact-panel,
  .contact-form,
  .page-hero-card,
  .detail-shell,
  .legal-shell,
  .careers-shell,
  .cta-banner,
  .footer-grid {
    padding: 1.45rem;
  }

  .header-status,
  .enterprise-nav {
    width: min(calc(100% - 18px), var(--container));
  }

  .header-status {
    padding: 0.5rem 1rem 0.45rem;
  }

  .enterprise-nav {
    padding: 0.54rem 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.9vw, 2.8rem);
  }

  .trust-strip-grid,
  .metric-row,
  .service-grid,
  .why-grid,
  .industry-grid,
  .process-grid,
  .project-grid,
  .confidence-grid,
  .faq-grid,
  .careers-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-card.primary,
  .hero-visual-card.secondary {
    width: calc(100% - 2.5rem);
  }

  .hero-visual-card.primary {
    right: 1.25rem;
    top: 1.25rem;
  }

  .hero-visual-card.secondary {
    left: 1.25rem;
    bottom: 1.25rem;
  }

  .hero-cta-group,
  .cta-banner-actions,
  .detail-cta,
  .careers-cta {
    flex-direction: column;
  }

  .hero-cta-group .btn,
  .cta-banner-actions .btn,
  .detail-cta .btn,
  .careers-cta .btn {
    width: 100%;
  }

  .footer-bottom {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
