:root {
  --color-primary: #061b63;
  --color-primary-deep: #09133a;
  --color-primary-soft: #17307a;
  --color-accent: #d8a94a;
  --color-white: #ffffff;
  --color-bg: #f7f8fc;
  --color-bg-soft: #eef2fb;
  --color-text: #111827;
  --color-text-muted: #667085;
  --color-border: #e7eaf3;
  --color-dark-surface: #08112f;
  --shadow-sm: 0 10px 30px rgba(6, 27, 99, 0.08);
  --shadow-md: 0 20px 55px rgba(6, 27, 99, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1280px;
  --transition: all 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-space {
  padding: 110px 0;
}

.section-soft-bg {
  background: var(--color-bg);
}

.section-dark {
  background: linear-gradient(180deg, #09133a 0%, #061b63 100%);
  color: var(--color-white);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.section-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.88);
}

.section-kicker--light::before {
  background: var(--color-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 52px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

p {
  color: var(--color-text-muted);
}

.section-dark p,
.section-copy--light p,
.section-copy--light .why-us-points article p {
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.btn-secondary:hover,
.btn-outline-light:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--color-white);
  background: transparent;
}

.btn-outline {
  border-color: var(--color-border);
  color: var(--color-primary);
  background: var(--color-white);
}

/* ==============================
   HEADER
============================== */

.site-header {
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

.site-header--home.is-sticky {
  position: fixed;
  background: rgba(8, 17, 47, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.site-header--inner {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(8, 17, 47, 0.95);
}

.header-shell {
  padding-top: 22px;
}

.header-inner {
  min-height: 74px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(7, 16, 45, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.header-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px auto;
  transition: 0.3s ease;
}

.mobile-menu {
  display: none;
}

/* ==============================
   HERO - HOME FINAL LEFT STYLE
============================== */

.hero-section--new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay--light {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 18%,
      rgba(255, 255, 255, 0.78) 36%,
      rgba(255, 255, 255, 0.48) 56%,
      rgba(255, 255, 255, 0.14) 76%,
      rgba(255, 255, 255, 0.00) 100%
    );
  z-index: 1;
}

.hero-layout--left {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 132px;
  padding-bottom: 82px;
}

.hero-content-block {
  width: 100%;
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}

.hero-kicker::after {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--color-accent);
}

.hero-content-block h1 {
  color: #0c1633;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 880px;
  margin-bottom: 28px;
}

.hero-content-block p {
  max-width: 760px;
  color: #5f6d86;
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn {
  min-height: 56px;
}

.hero-btn-light {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 22, 51, 0.10);
  color: #23314f;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hero-spacer,
.hero-panel {
  display: none;
}

/* ==============================
   GENERAL SECTIONS
============================== */

.two-col-layout,
.education-grid,
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.image-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.image-collage__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.image-collage__item--large {
  min-height: 490px;
}

.image-collage__item img,
.circle-image img,
.service-card__image img,
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.image-collage__item:hover img,
.circle-image:hover img,
.service-card:hover .service-card__image img,
.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.image-collage__badge {
  position: absolute;
  left: 26px;
  bottom: 28px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.section-copy h2 {
  margin-bottom: 20px;
}

.section-copy p + p {
  margin-top: 14px;
}

.feature-inline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-inline-card,
.industry-card,
.education-card,
.process-card,
.blog-card,
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-inline-card,
.industry-card,
.education-card,
.process-card {
  padding: 28px;
}

.feature-inline-card:hover,
.industry-card:hover,
.education-card:hover,
.process-card:hover,
.blog-card:hover,
.service-card:hover,
.feature-inline-card.is-hovered,
.industry-card.is-hovered,
.education-card.is-hovered,
.process-card.is-hovered,
.blog-card.is-hovered,
.service-card.is-hovered {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-inline-card h3,
.industry-card h3,
.education-card h3,
.process-card h3,
.blog-card h3 {
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
}

.service-card--active,
.service-card:hover {
  background: linear-gradient(180deg, #0b1744 0%, #061b63 100%);
  border-color: transparent;
}

.service-card__image {
  height: 210px;
  overflow: hidden;
}

.service-card__body {
  padding: 26px;
}

.service-card h3,
.service-card li,
.service-card .service-link {
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover li,
.service-card:hover .service-link,
.service-card--active h3,
.service-card--active li,
.service-card--active .service-link {
  color: var(--color-white);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-muted);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.service-link {
  font-weight: 700;
  color: var(--color-primary);
}

.why-us-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.why-us-points article {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-us-points article h3 {
  margin-bottom: 10px;
}

.why-us-visual {
  position: relative;
  min-height: 520px;
}

.circle-image {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.12);
}

.circle-card {
  position: absolute;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.circle-card--secondary {
  right: 10px;
  bottom: 50px;
}

.why-us-visual .circle-card:first-child {
  left: 0;
  top: 60px;
}

.industry-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.industry-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.education-cards,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.education-card,
.process-card {
  min-height: 180px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  margin-bottom: 22px;
}

.blog-card {
  overflow: hidden;
}

.blog-card__image {
  display: block;
  height: 250px;
  overflow: hidden;
}

.blog-card__body {
  padding: 26px;
}

.blog-card__meta {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 1.22rem;
  line-height: 1.4;
  margin-bottom: 18px;
}

.blog-card__link {
  color: var(--color-primary);
  font-weight: 700;
}

.cta-section {
  padding: 0 0 110px;
  background: var(--color-bg);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 46px 54px;
  border-radius: 32px;
  background: linear-gradient(135deg, #08112f 0%, #061b63 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.cta-copy {
  max-width: 740px;
}

.cta-copy h2 {
  margin-bottom: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  background: #07102d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding: 82px 0 38px;
}

.brand--footer .brand-text,
.site-footer h3 {
  color: var(--color-white);
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.back-to-top:hover,
.footer-socials a:hover {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.back-to-top {
  font-weight: 700;
}

.page-home .site-main {
  overflow: hidden;
}

/* ==============================
   ABOUT INTRO - REFERENCE STYLE
============================== */

.about-intro {
  background: #f7f7fb;
}

.about-intro-ref {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.about-ref-visual {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.about-ref-left,
.about-ref-top,
.about-ref-bottom {
  overflow: hidden;
  border-radius: 30px;
  background: #dde5f4;
  box-shadow: var(--shadow-sm);
}

.about-ref-left {
  min-height: 700px;
}

.about-ref-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}

.about-ref-top,
.about-ref-bottom {
  min-height: 339px;
}

.about-ref-left img,
.about-ref-top img,
.about-ref-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-ref-visual:hover img {
  transform: scale(1.04);
}

.about-ref-badge {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #f4b11a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(6, 27, 99, 0.14);
  border: 10px solid #fff;
  text-align: center;
  padding: 20px;
}

.about-ref-badge span {
  color: #0c1633;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.about-ref-copy {
  background: #f3eee4;
  border-radius: 32px;
  padding: 46px 42px;
}

.about-ref-copy .section-kicker {
  margin-bottom: 18px;
}

.about-ref-copy h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #0c1633;
  margin-bottom: 26px;
}

.about-ref-copy p {
  font-size: 1.04rem;
  line-height: 1.9;
  color: #6d788e;
}

.about-ref-copy p + p {
  margin-top: 16px;
}

.about-ref-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.about-ref-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 22, 51, 0.06);
  border-radius: 24px;
  padding: 28px 26px;
}

.about-ref-card h3 {
  color: #0c1633;
  font-size: 1.22rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.about-ref-card p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #6d788e;
}
