:root {
  --ink: #17202a;
  --muted: #617083;
  --line: #dfe6ec;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --navy: #10263b;
  --teal: #0d7b83;
  --gold: #c7923f;
  --green: #12805c;
  --shadow: 0 18px 45px rgba(16, 38, 59, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-weight: 800;
  font-size: 14px;
}

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

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #344558;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--teal);
}

.header-actions,
.hero-actions,
.final-cta div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.primary-button {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(13, 123, 131, 0.22);
}

.secondary-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button {
  color: var(--navy);
  border-color: var(--line);
  background: white;
}

.whatsapp-button {
  color: white;
  background: var(--green);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #132536, #899198);
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 35, 0.91) 0%, rgba(8, 22, 35, 0.74) 43%, rgba(8, 22, 35, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 22, 35, 0.55), rgba(8, 22, 35, 0));
}

.hero-content {
  width: min(820px, 92vw);
  padding: clamp(96px, 14vh, 154px) clamp(18px, 5vw, 72px) 110px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro-section,
.industries-section,
.resources-section {
  background: var(--paper);
}

.why-section,
.opportunities-section,
.about-section {
  background: var(--soft);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.wide {
  max-width: 920px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.intro-copy p,
.section-heading p,
.about-card p,
.contact-copy p,
.resources-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.feature-strip span,
.industry-cloud span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 12px 14px;
  color: #344558;
  font-size: 14px;
  font-weight: 700;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.service-tabs button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.service-tabs button.active {
  color: white;
  border-color: var(--navy);
  background: var(--navy);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card,
.result-grid article,
.about-card,
.opportunity-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 366px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(16, 38, 59, 0.18);
}

.service-card[hidden] {
  display: none;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--teal);
  background: #e8f4f5;
  font-weight: 800;
}

.service-card p,
.service-card li,
.result-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opportunity-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
}

.search-controls {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

label span,
.contact-form label {
  color: #344558;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfd8e2;
  border-radius: 8px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea {
  resize: vertical;
}

.opportunity-list {
  display: grid;
  gap: 10px;
}

.opportunity-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.opportunity-item strong {
  display: block;
  margin-bottom: 6px;
}

.opportunity-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.result-grid article {
  padding: 24px;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.resource-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
  color: var(--navy);
  font-weight: 800;
}

.about-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.mission-grid div {
  padding: 22px;
  border-radius: 8px;
  background: var(--soft);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--navy);
  color: white;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  box-shadow: none;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.final-cta {
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #0b1c2d, #134f59);
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 24px;
}

.final-cta div {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 24px;
  padding: 46px clamp(18px, 5vw, 72px) 28px;
  color: rgba(255, 255, 255, 0.82);
  background: #081623;
}

.site-footer h2,
.site-footer h3 {
  color: white;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 11px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
  }

  .site-header.nav-open .main-nav {
    flex-wrap: wrap;
    padding-top: 10px;
  }

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

@media (max-width: 760px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 86px;
  }

  .section-grid,
  .search-controls,
  .result-grid,
  .mission-grid,
  .contact-section,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .opportunity-item {
    grid-template-columns: 1fr;
  }

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