:root {
  --blue: #06376f;
  --blue-2: #075aa5;
  --green: #78bf26;
  --pink: #e6387d;
  --yellow: #ffb91a;
  --ink: #10233f;
  --muted: #64748b;
  --light: #f5f9ff;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(6, 55, 111, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6,55,111,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 20px; }
.brand img { width: 158px; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; color: var(--blue); }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--pink); }
.nav-cta { padding: 12px 18px; background: var(--blue); color: #fff !important; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 2rem; color: var(--blue); cursor: pointer; }
.hero { position: relative; overflow: hidden; padding: 86px 0 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%, rgba(255,185,26,.24), transparent 28%), radial-gradient(circle at 15% 30%, rgba(120,191,38,.18), transparent 32%), linear-gradient(135deg, #fff 0%, #f3f8ff 100%); z-index: -2; }
.hero-bg::after { content: ''; position: absolute; right: -100px; top: -100px; width: 340px; height: 340px; border-radius: 50%; background: rgba(230,56,125,.12); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 55px; align-items: center; }
.eyebrow, .section-label { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.55rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -0.055em; color: var(--blue); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 3.7vw, 3.1rem); line-height: 1.12; letter-spacing: -0.04em; color: var(--blue); margin-bottom: 18px; }
h3 { font-size: 1.25rem; color: var(--blue); margin-bottom: 10px; }
.hero-text { font-size: 1.15rem; color: var(--muted); max-width: 610px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 24px; border-radius: 999px; font-weight: 800; border: 2px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(6,55,111,.18); }
.btn.primary { background: var(--blue); color: #fff; }
.btn.secondary { background: #fff; color: var(--blue); border-color: rgba(6,55,111,.18); }
.btn.light { background: #fff; color: var(--blue); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span { background: rgba(255,255,255,.8); border: 1px solid rgba(6,55,111,.08); color: var(--blue); font-weight: 800; border-radius: 999px; padding: 8px 12px; font-size: .9rem; }
.hero-card { background: #fff; border-radius: 34px; padding: 36px; box-shadow: var(--shadow); border: 1px solid rgba(6,55,111,.08); }
.intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; padding: 70px 0; }
.intro p:last-child { font-size: 1.08rem; color: var(--muted); }
.section { padding: 86px 0; }
.light-section { background: var(--light); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { color: var(--muted); }
.cards { display: grid; gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border-radius: 28px; padding: 30px; box-shadow: 0 14px 35px rgba(6,55,111,.08); border: 1px solid rgba(6,55,111,.08); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.8rem; }
.icon.blue { background: rgba(7,90,165,.1); }
.icon.green { background: rgba(120,191,38,.13); }
.icon.yellow { background: rgba(255,185,26,.16); }
.approach-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 44px; align-items: center; }
.approach-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; font-weight: 700; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; }
.feature-panel { background: linear-gradient(145deg, var(--blue), #0b4b92); color: #fff; border-radius: 32px; padding: 34px; box-shadow: var(--shadow); }
.feature-panel h3 { color: #fff; font-size: 1.6rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.skill-tags span { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.18); padding: 10px 14px; border-radius: 999px; font-weight: 700; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.split-text p { color: var(--muted); font-size: 1.05rem; }
.cta-band { background: linear-gradient(135deg, var(--blue), #0a5ca9); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; left: 10%; top: -70px; width: 170px; height: 170px; border-radius: 50%; background: rgba(120,191,38,.25); }
.cta-band::after { content: ''; position: absolute; right: 12%; bottom: -80px; width: 190px; height: 190px; border-radius: 50%; background: rgba(230,56,125,.24); }
.cta-content { position: relative; z-index: 1; max-width: 760px; }
.cta-content h2 { color: #fff; }
.cta-content p { color: rgba(255,255,255,.86); margin-bottom: 28px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-grid p { color: var(--muted); }
.contact-details { margin-top: 28px; background: var(--light); border-radius: 24px; padding: 22px; }
.contact-details p { margin: 0 0 8px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-form { background: #fff; border: 1px solid rgba(6,55,111,.1); box-shadow: var(--shadow); border-radius: 30px; padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--blue); }
input, select, textarea { width: 100%; border: 1px solid rgba(6,55,111,.18); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
textarea { resize: vertical; }
.footer { background: #071f3d; color: #dce8f9; padding-top: 54px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 40px; padding-bottom: 36px; }
.footer img { width: 140px; background: #fff; border-radius: 16px; padding: 8px; }
.footer h4 { color: #fff; margin: 0 0 14px; }
.footer a { display: block; color: #dce8f9; margin-bottom: 9px; }
.footer p { color: #b8c7dd; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,.1); padding: 18px; color: #b8c7dd; font-size: .9rem; }

/* Puzzle hero tabs */
.puzzle-panel h3 { margin-bottom: 20px; }
.mini-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(120,191,38,.12);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo-puzzle-tabs {
  padding: 6px 4px 2px;
}
.tabs-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.svg-link {
  cursor: pointer;
}
.svg-link g {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}
.svg-link:hover g {
  transform: translateY(-3px);
}
.piece-body,
.piece-knob {
  stroke: #ffffff;
  stroke-width: 8;
}
.piece-hole {
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 8;
}
.piece-blue-fill { fill: #0a67c8; }
.piece-green-fill { fill: #8dcd32; }
.piece-yellow-fill { fill: #ffb800; }
.piece-pink-fill { fill: #e83d84; }
.piece-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
.light-text { fill: #ffffff; }
.dark-text { fill: #06376f; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 82px; display: none; flex-direction: column; align-items: stretch; gap: 10px; background: #fff; padding: 18px; border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .intro, .approach-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 54px; }
  .cards.three { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand img { width: 130px; }
  h1 { font-size: 2.55rem; }
  .hero-card { padding: 22px; border-radius: 24px; }
  .section { padding: 64px 0; }
  .logo-puzzle-tabs { padding: 0; }
  .piece-text { font-size: 16px; }
}


.logo-word {
  display: inline-block;
  background: linear-gradient(90deg, #06376f 0%, #06376f 28%, #78bf26 28%, #78bf26 45%, #e6387d 45%, #e6387d 65%, #ffb91a 65%, #ffb91a 82%, #06376f 82%, #06376f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
