:root {
  --bg: #f3f5fa;
  --surface: #ffffff;
  --surface-dark: #07134b;
  --surface-mid: #14278f;
  --text: #172033;
  --muted: #5b6480;
  --line: rgba(23, 32, 51, 0.1);
  --accent: #3454ff;
  --accent-soft: rgba(52, 84, 255, 0.12);
  --shadow: 0 20px 45px rgba(6, 14, 52, 0.12);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(52, 84, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #eef1f8 0%, #f7f8fc 100%);
  color: var(--text);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(243, 245, 250, 0.88);
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  margin-top: 0.25rem;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-dark), var(--accent));
  color: #fff;
  font-weight: 800;
}

.brand-mark-image {
  overflow: hidden;
  background: #06103d;
  border: 1px solid rgba(23, 32, 51, 0.08);
  padding: 0;
}

.brand-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 13% 24%;
}

.brand-logo-full {
  display: block;
  width: min(100%, 20rem);
  height: 4.25rem;
  max-height: 4.25rem;
  object-fit: cover;
  object-position: top center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--surface-mid);
}

.nav-links a.active {
  color: var(--surface-mid);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-cover {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 16, 63, 0.86), rgba(4, 16, 63, 0.5)),
    var(--hero-image) center / cover no-repeat;
  color: #fff;
}

.hero-cover .hero-grid {
  position: relative;
  min-height: 42rem;
  padding-top: 8.5rem;
  align-items: center;
}

.hero-logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: min(25rem, 34vw);
  height: 8.75rem;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(4, 16, 63, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-logo-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-cover .hero-stats li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-cover .hero-stats span {
  color: rgba(255, 255, 255, 0.84);
}

.hero-cover .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.page-hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero-copy {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--surface-mid);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.split-section h2,
.contact-top h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 13ch;
}

.hero-text,
.section-heading p,
.section-copy,
.contact-top p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-text-light {
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--surface-dark), var(--accent));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 2.5rem 0 0;
}

.hero-stats li,
.hero-card,
.pillar-card,
.service-card,
.industry-card,
.process-step,
.cta-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.hero-stats span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1rem 2rem auto auto;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(52, 84, 255, 0.4), transparent 70%);
  filter: blur(8px);
}

.hero-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(160deg, var(--surface-dark), #0f2bd1);
  color: #fff;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.card-label {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-card p {
  position: relative;
  margin: 0 0 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.hero-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-meta span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
}

.section-dark {
  background: linear-gradient(135deg, #04103f, #081e72);
  color: #fff;
}

.stats-section {
  background: linear-gradient(180deg, #d94806 0%, #d7671b 100%);
  color: #fff;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-section h2,
.contact-top h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading-light p,
.section-heading-light h2,
.eyebrow-light,
.light-copy {
  color: rgba(255, 255, 255, 0.86);
}

.preview-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-split,
.image-showcase-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cover-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 16, 63, 0.84), rgba(4, 16, 63, 0.52)),
    var(--cover-image) center / cover no-repeat;
}

.cover-section .section-heading,
.cover-section .section-heading p,
.cover-section .section-heading h2,
.cover-section .section-copy,
.cover-section .light-copy,
.cover-section .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.cover-content {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: 34rem;
}

.cover-content-single {
  min-height: 30rem;
  display: flex;
  align-items: center;
}

.cover-panel-card {
  padding: 1rem;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.cover-panel-card img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.95);
  object-fit: contain;
}

.media-split {
  grid-template-columns: 1fr 1fr;
}

.image-showcase-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.content-image-card,
.showcase-card,
.hero-banner-image {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.content-image-card img,
.showcase-card img,
.hero-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-image-card img {
  min-height: 23rem;
}

.hero-banner-image img {
  min-height: 28rem;
}

.showcase-card img {
  min-height: 24rem;
}

.logo-card img {
  object-fit: contain;
  background: #fff;
  padding: 1rem;
}

.showcase-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0 0;
}

.showcase-card strong {
  font-size: 1.05rem;
}

.showcase-card span {
  color: var(--muted);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.preview-card,
.info-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.preview-card h3,
.info-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.preview-card p,
.info-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.preview-card a {
  color: var(--surface-mid);
  font-weight: 700;
}

.stat-card {
  text-align: center;
  padding: 1rem 1.25rem;
}

.stat-icon {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
}

.stat-card span {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  font-weight: 600;
}

.pillar-grid,
.service-grid,
.industry-grid,
.process-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-grid,
.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.pillar-card,
.service-card,
.industry-card,
.process-step {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid rgba(23, 32, 51, 0.06);
}

.pillar-card:nth-child(2),
.service-card:nth-child(3n),
.industry-card:nth-child(2),
.industry-card:nth-child(3),
.process-step:nth-child(2n) {
  background: linear-gradient(160deg, var(--surface-dark), #2039be);
  color: #fff;
}

.pillar-card:nth-child(2) p,
.service-card:nth-child(3n) p,
.industry-card:nth-child(2) p,
.industry-card:nth-child(3) p,
.process-step:nth-child(2n) p,
.process-step:nth-child(2n) span {
  color: rgba(255, 255, 255, 0.82);
}

.pillar-card h3,
.service-card h3,
.industry-card h3,
.process-step h3,
.advisory-banner h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.pillar-card p,
.service-card p,
.industry-card p,
.process-step p,
.advisory-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.value-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 600;
}

.advisory-banner {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, #304dff, #07134b);
  color: #fff;
  box-shadow: var(--shadow);
}

.advisory-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.placement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.placement-list span {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--surface-dark), #233dc5);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.nationwide-section {
  align-items: center;
}

.nationwide-list {
  display: grid;
  gap: 1rem;
}

.nationwide-list span {
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--surface-dark);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}

.client-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.client-grid {
  grid-template-columns: repeat(5, 1fr);
}

.client-card {
  padding: 1.5rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #07134b, #10257d);
  color: #fff;
  box-shadow: var(--shadow);
}

.client-badge {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.client-card h3 {
  margin: 0;
  line-height: 1.4;
}

.impact-layout {
  display: grid;
  gap: 2rem;
}

.impact-card {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.impact-card p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.8;
}

.impact-list {
  margin: 1.25rem 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.9;
  font-weight: 600;
}

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

.pricing-card {
  padding: 1.6rem;
  min-height: 17rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
}

.pricing-card h3,
.company-card strong,
.contact-card h3 {
  margin: 0 0 0.85rem;
}

.pricing-card p,
.contact-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.process-step span {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--surface-mid);
  font-weight: 800;
  font-size: 0.82rem;
}

.cta-section {
  padding-bottom: 5.5rem;
}

.contact-top {
  margin-bottom: 1.5rem;
}

.company-card {
  display: grid;
  gap: 0.35rem;
  max-width: 40rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #07134b, #2039be);
  color: #fff;
  box-shadow: var(--shadow);
}

.company-card strong {
  font-size: 1.5rem;
}

.company-card span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

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

.whatsapp-card {
  grid-column: span 2;
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--surface-mid);
  font-weight: 700;
}

.form-section {
  max-width: 42rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  background: #f2f2f2;
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f9097;
}

.contact-form textarea {
  resize: vertical;
  min-height: 14rem;
}

.submit-button {
  width: fit-content;
  min-width: 17rem;
  min-height: 4rem;
  padding: 0 1.8rem;
  border: 0;
  border-radius: 0;
  background: #ef4d08;
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.submit-button-secondary {
  background: #1f3a9b;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-status {
  font-weight: 600;
}

.whatsapp-button {
  margin: 1rem 0 1.25rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.28);
}

.whatsapp-message {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.18);
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #07134b, #2841cd);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-strip .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #06103d;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #07134b, #2841cd);
  color: #fff;
}

.cta-card .eyebrow,
.cta-card p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .cta-card,
  .pillar-grid,
  .service-grid,
  .industry-grid,
  .process-grid,
  .pricing-grid,
  .contact-grid,
  .client-grid,
  .preview-grid,
  .info-grid,
  .stats-grid,
  .cover-content,
  .media-split,
  .image-showcase-grid,
  .footer-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .placement-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .brand-logo-full {
    width: min(100%, 16rem);
    height: 3.4rem;
    max-height: 3.4rem;
  }

  .nav-links {
    gap: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-logo-overlay {
    position: static;
    width: min(100%, 26rem);
    height: 9rem;
    margin-bottom: 1rem;
  }

  .button {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .page-hero h1 {
    max-width: none;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 0.9rem;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}
