@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --navy: #082653;
  --navy-light: #113873;
  --navy-dark: #041633;
  --orange: #f47418;
  --orange-light: #ff903f;
  --orange-dark: #d65c0a;
  --cream: #fffaf4;
  --cream-card: #fff2e3;
  --bg-soft: #f9f5ef;
  --ink: #051c3d;
  --muted: #4e617d;
  --white: #ffffff;

  /* Shadow tokens */
  --shadow-sm: 0 4px 12px rgba(8, 38, 83, 0.03);
  --shadow-md: 0 12px 32px rgba(8, 38, 83, 0.06);
  --shadow-lg: 0 20px 48px rgba(8, 38, 83, 0.1);
  --shadow-xl: 0 32px 72px rgba(8, 38, 83, 0.16);

  /* Layout variables */
  --container: 1200px;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* --- SITE HEADER & NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 38, 83, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

@media (min-width: 1101px) {
  .site-header .container {
    width: 100%;
    max-width: none;
    padding-inline: 64px;
  }
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-logo {
  width: 260px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 4px;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-light);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 14px 32px !important;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(244, 116, 24, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 116, 24, 0.4);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.hamburger-icon line {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.hamburger-icon .line-top {
  transform-origin: 12px 6px;
}

.hamburger-icon .line-mid {
  transform-origin: 12px 12px;
}

.hamburger-icon .line-bottom {
  transform-origin: 12px 18px;
}

.menu-toggle[aria-expanded="true"] .line-mid {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .line-top {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .line-bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 25%, rgba(17, 56, 115, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 75%, rgba(4, 22, 51, 0.18) 0%, transparent 45%),
    linear-gradient(145deg, var(--navy-dark) 0%, #0b2d5e 45%, var(--navy) 100%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(244, 116, 24, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glow-pulse 6s ease-in-out infinite;
}

.white-curve {
  position: absolute;
  left: -18%;
  top: -12%;
  width: 73%;
  height: 124%;
  background: linear-gradient(175deg, var(--white) 25%, #f5f0e8 100%);
  border-radius: 0 50% 50% 0;
  box-shadow:
    14px 0 45px rgba(4, 22, 51, 0.07),
    32px 0 90px rgba(4, 22, 51, 0.04);
  z-index: 1;
}

.puzzle-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.puzzle-pattern span {
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,-6 1,-12 5,-15 c 4,-2 6,-2 10,0 c 4,3 5,9 5,15 H 80 v 20 c -6,0 -12,1 -15,5 c -2,4 -2,6 0,10 c 3,4 9,5 15,5 v 20 H 60 c 0,6 -1,12 -5,15 c -4,2 -6,2 -10,0 c -4,-3 -5,-9 -5,-15 H 20 v -20 c -6,0 -12,-1 -15,-5 c -2,-4 -2,-6 0,-10 c 3,-4 9,-5 15,-5 v -20 z' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.08)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  backdrop-filter: blur(1px);
}

.puzzle-pattern span:nth-child(1) {
  width: 320px;
  height: 280px;
  left: 10%;
  top: 8%;
  transform: rotate(12deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,6 1,12 5,15 c 4,2 6,2 10,0 c 4,-3 5,-9 5,-15 H 80 v 20 c -6,0 -12,1 -15,5 c -2,4 -2,6 0,10 c 3,4 9,5 15,5 v 20 H 60 c 0,6 -1,12 -5,15 c -4,2 -6,2 -10,0 c -4,-3 -5,-9 -5,-15 H 20 v -20 c -6,0 -12,-1 -15,-5 c -2,-4 -2,-6 0,-10 c 3,-4 9,-5 15,-5 v -20 z' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.08)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.puzzle-pattern span:nth-child(2) {
  width: 380px;
  height: 320px;
  right: -5%;
  top: -8%;
  transform: rotate(4deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,-6 1,-12 5,-15 c 4,-2 6,-2 10,0 c 4,3 5,9 5,15 H 80 v 20 c 6,0 12,1 15,5 c 2,4 2,6 0,10 c -3,4 -9,5 -15,5 v 20 H 60 c 0,-6 -1,-12 -5,-15 c -4,-2 -6,-2 -10,0 c -4,3 -5,9 -5,15 H 20 v -20 c 6,0 12,-1 15,-5 c 2,-4 2,-6 0,-10 c -3,-4 -9,-5 -15,-5 v -20 z' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.08)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.puzzle-pattern span:nth-child(3) {
  width: 290px;
  height: 260px;
  left: 5%;
  bottom: 8%;
  transform: rotate(-15deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,6 1,12 5,15 c 4,2 6,2 10,0 c 4,-3 5,-9 5,-15 H 80 v 20 c 6,0 12,1 15,5 c 2,4 2,6 0,10 c -3,4 -9,5 -15,5 v 20 H 60 c 0,6 -1,12 -5,15 c -4,2 -6,2 -10,0 c -4,-3 -5,-9 -5,-15 H 20 v -20 c 6,0 12,-1 15,-5 c 2,-4 2,-6 0,-10 c -3,-4 -9,-5 -15,-5 v -20 z' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.08)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.puzzle-pattern span:nth-child(4) {
  width: 340px;
  height: 300px;
  right: 5%;
  bottom: 5%;
  transform: rotate(18deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,-6 1,-12 5,-15 c 4,-2 6,-2 10,0 c 4,3 5,9 5,15 H 80 v 20 c -6,0 -12,1 -15,5 c -2,4 -2,6 0,10 c 3,4 9,5 15,5 v 20 H 60 c 0,-6 -1,-12 -5,-15 c -4,-2 -6,-2 -10,0 c -4,3 -5,9 -5,15 H 20 v -20 c -6,0 -12,-1 -15,-5 c -2,-4 -2,-6 0,-10 c 3,-4 9,-5 15,-5 v -20 z' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.08)' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.puzzle-pattern span:nth-child(5) {
  width: 220px;
  height: 200px;
  left: 45%;
  top: 38%;
  background-image: none;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,-6 1,-12 5,-15 c 4,-2 6,-2 10,0 c 4,3 5,9 5,15 H 80 v 20 c -6,0 -12,1 -15,5 c -2,4 -2,6 0,10 c 3,4 9,5 15,5 v 20 H 60 c 0,6 -1,12 -5,15 c -4,2 -6,2 -10,0 c -4,-3 -5,-9 -5,-15 H 20 v -20 c -6,0 -12,-1 -15,-5 c -2,-4 -2,-6 0,-10 c 3,-4 9,-5 15,-5 v -20 z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 20 20 H 40 c 0,-6 1,-12 5,-15 c 4,-2 6,-2 10,0 c 4,3 5,9 5,15 H 80 v 20 c -6,0 -12,1 -15,5 c -2,4 -2,6 0,10 c 3,4 9,5 15,5 v 20 H 60 c 0,6 -1,12 -5,15 c -4,2 -6,2 -10,0 c -4,-3 -5,-9 -5,-15 H 20 v -20 c -6,0 -12,-1 -15,-5 c -2,-4 -2,-6 0,-10 c 3,-4 9,-5 15,-5 v -20 z' fill='black'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0.15;
  filter: blur(8px);
}

.hero-star {
  position: absolute;
  bottom: 52px;
  right: 56px;
  width: 30px;
  height: 30px;
  color: var(--orange);
  z-index: 3;
  filter: drop-shadow(0 0 8px rgba(244, 116, 24, 0.4));
  animation: star-twinkle 4s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.2) rotate(18deg); opacity: 1; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
  padding: 64px 0;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-left: 64px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--orange);
  background: linear-gradient(135deg, var(--orange) 30%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
}

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

.button {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(244, 116, 24, 0.3);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(244, 116, 24, 0.45);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}

.button.secondary {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.button.secondary:hover {
  transform: translateY(-3px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(8, 38, 83, 0.15);
}

.hero-piece {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.puzzle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 580px;
}

.animated-puzzle-container {
  width: 100%;
  aspect-ratio: 933 / 359;
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(255, 81, 0, 0.35)) drop-shadow(0 5px 15px rgba(255, 123, 0, 0.2)) drop-shadow(0 0 50px rgba(255, 123, 0, 0.15));
}

.puzzle-piece {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.puzzle-piece-1 {
  left: 0%;
  width: 47.90997%;
  z-index: 2;
}

.puzzle-piece-2 {
  left: 32.69025%;
  width: 34.29796%;
  z-index: 1;
}

.puzzle-piece-3 {
  left: 52.09003%;
  width: 47.90997%;
  z-index: 2;
}

.hero-piece.is-visible .puzzle-piece-1 {
  animation: assemble-piece-1 1.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

.hero-piece.is-visible .puzzle-piece-2 {
  animation: assemble-piece-2 1.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

.hero-piece.is-visible .puzzle-piece-3 {
  animation: assemble-piece-3 1.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

.puzzle-caption-text {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(15px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-piece.is-visible .puzzle-caption-text {
  animation: caption-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes assemble-piece-1 {
  0% {
    transform: translate(-120px, -60px) rotate(-12deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes assemble-piece-2 {
  0% {
    transform: translate(0, 140px) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes assemble-piece-3 {
  0% {
    transform: translate(120px, -60px) rotate(12deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes caption-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

/* --- SECTION GENERAL STYLES --- */
.section {
  padding: 100px 0;
  position: relative;
}

.kicker {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
}

.section-title span:last-child {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.section-title h2 {
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* --- ABOUT SECTION --- */
.about {
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.cred-card {
  background: linear-gradient(135deg, var(--cream) 0%, #fffcf8 100%);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244, 116, 24, 0.12);
  position: relative;
}

.cred-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed rgba(244, 116, 24, 0.2);
  border-radius: calc(var(--radius-xl) + 8px);
  pointer-events: none;
}

.cred-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
}

.cred-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.check-list span {
  font-weight: 600;
  color: var(--navy-light);
  font-size: 0.98rem;
}

/* --- VISION & MISSION SECTION --- */
.vision {
  background: var(--bg-soft);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vision-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 38, 83, 0.04);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 116, 24, 0.2);
}

.vision-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-title-icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.vision-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}

.vision-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- EXPERTISE SECTION --- */
.expertise {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid rgba(8, 38, 83, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.expertise-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height 0.3s ease;
}

.expertise-card:hover::after {
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 116, 24, 0.15);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.expertise-card:hover .icon-wrapper {
  transform: scale(1.08);
}

.icon-wrapper.navy {
  background: rgba(8, 38, 83, 0.06);
  color: var(--navy);
}

.icon-wrapper.orange {
  background: rgba(244, 116, 24, 0.08);
  color: var(--orange);
}

.svg-icon {
  width: 28px;
  height: 28px;
}

.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
}

.expertise-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

/* --- TRAINING SECTION --- */
.training {
  background: var(--bg-soft);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.training-card {
  background: var(--white);
  border: 1px solid rgba(8, 38, 83, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%);
  opacity: 0.8;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 116, 24, 0.15);
}

.training-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
  margin-top: 10px;
}

.training-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

/* --- APPROACH SECTION --- */
.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.methods span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.methods span:nth-child(odd) {
  background: var(--navy);
  color: var(--white);
}

.methods span:nth-child(even) {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(8, 38, 83, 0.15);
}

.methods span:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--orange);
  color: var(--white);
  border-color: transparent;
}

/* --- PREMIUM SECTION --- */
.premium {
  background: var(--cream);
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.premium-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(244, 116, 24, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange);
}

.card-icon-round {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 116, 24, 0.08);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 14px;
}

.card-icon-round svg {
  width: 100%;
  height: 100%;
}

.premium-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
}

.premium-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

/* --- SECTORS & VALUES --- */
.sectors {
  background: var(--white);
  border-bottom: 1px solid rgba(8, 38, 83, 0.05);
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.value-list span {
  background: var(--bg-soft);
  border-left: 4px solid var(--orange);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.value-list span:hover {
  transform: translateX(4px);
  background: var(--cream);
  border-left-color: var(--navy);
}

/* --- WHY CHOOSE US SECTION --- */
.why {
  background: var(--navy);
  color: var(--white);
}

.why h2 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-display);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange-light);
  transform: translateY(-4px);
}

.why-item-icon {
  width: 24px;
  height: 24px;
  color: var(--orange-light);
}

.why-item span {
  font-size: 0.98rem;
  line-height: 1.4;
}

/* --- FOOTER --- */
.footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-piece {
  color: var(--orange);
  width: 90px;
  height: 90px;
}

.footer-puzzle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.footer-branding h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-branding h2 span {
  color: var(--orange);
}

.footer-branding p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--orange);
  padding-left: 32px;
}

.footer-contact strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

a.contact-item:hover {
  color: var(--orange-light);
  transform: translateX(4px);
}

.address-icon {
  width: 18px;
  height: 18px;
  color: var(--orange-light);
  flex-shrink: 0;
}

/* --- ANIMATIONS & SHOW-REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- RESPONSIVE STYLING --- */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    padding-top: 32px;
    padding-bottom: 0;
  }

  .hero-copy {
    padding-left: 0;
  }

  /* Hide the absolute white curve — it doesn't work on stacked layouts */
  .white-curve {
    display: none;
  }

  /* Adapt decorative puzzle pattern for stacked mobile layout */
  .puzzle-pattern {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.6;
  }

  .puzzle-pattern span:nth-child(1) {
    width: 130px;
    height: 110px;
    left: -5%;
    top: 54%;
    transform: rotate(15deg);
  }

  .puzzle-pattern span:nth-child(2) {
    width: 150px;
    height: 130px;
    right: -8%;
    top: 60%;
    transform: rotate(-10deg);
  }

  .puzzle-pattern span:nth-child(3) {
    width: 140px;
    height: 120px;
    left: -8%;
    bottom: 5%;
    transform: rotate(-20deg);
  }

  .puzzle-pattern span:nth-child(4) {
    width: 150px;
    height: 130px;
    right: -5%;
    bottom: 3%;
    transform: rotate(25deg);
  }

  .puzzle-pattern span:nth-child(5) {
    display: none; /* Hide the blurred orange outline piece on mobile to keep focus on interactive foreground pieces */
  }

  /* Clean two-tone hero: cream top, navy bottom */
  .hero {
    background: var(--navy);
  }

  .hero-bg {
    background: none;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 48px 24px 56px;
  }

  .hero-piece {
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 48px 24px 56px;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-piece {
    margin-inline: auto;
  }

  .footer-contact {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 24px;
    align-items: center;
  }
}

@media (max-width: 950px) {
  .header-inner {
    min-height: 80px;
  }

  .brand-logo {
    width: 195px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(8, 38, 83, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(4, 22, 51, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 12px;
    align-items: stretch;
    text-align: center;
  }

  .main-nav.is-open {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .main-nav a {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .main-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--orange-light) !important;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 14px 28px !important;
    box-shadow: 0 8px 24px rgba(244, 116, 24, 0.3);
  }

  .two-col,
  .approach-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 650px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .section-title span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 7.5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    font-size: 0.9rem;
    padding: 14px 24px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .cred-card {
    padding: 28px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}