:root {
  --navy: #0a1f3d;
  --navy-2: #123d70;
  --blue: #0b68bd;
  --blue-2: #247fc8;
  --blue-soft: #edf4fb;
  --blue-soft-2: #f5f8fb;
  --gold: #f2ad2a;
  --orange: #eb7b24;
  --green: #376f36;
  --green-soft: #edf3e8;
  --ink: #17243a;
  --muted: #5d6b7d;
  --muted-2: #5f6d7f;
  --line: #d8e2ec;
  --line-strong: #c7d4e0;
  --white: #ffffff;
  --footer: #cfdbe7;
  --footer-line: #9eafc0;
  --success: #16794b;
  --danger: #b42318;
  --radius-sm: 11px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 12px 32px rgba(25, 56, 92, .055);
  --shadow-md: 0 18px 42px rgba(27, 58, 92, .075);
  --max: 1220px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(12, 54, 96, .11);
  background: rgba(255, 255, 255, .965);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link { flex: 0 0 auto; }
.brand-logo { width: 242px; height: auto; }

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

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #455166;
  font-size: 15px;
  font-weight: 690;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] { color: var(--navy); }

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
}

.site-nav .nav-contact {
  margin-left: 2px;
  padding: 11px 18px;
  border: 1px solid #c8d4e0;
  border-radius: 10px;
}

.site-nav .nav-contact[aria-current="page"] {
  border-color: #9fb7ce;
  background: var(--blue-soft);
}
.site-nav .nav-contact[aria-current="page"]::after { display: none; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c7d4e0;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-button span { position: relative; }
.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

h1, h2, h3, p { text-wrap: pretty; }

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero h1 { font-size: clamp(48px, 5vw, 70px); }
.hero h1 span { color: var(--blue); }
.hero h1 em { color: #9a6200; font-style: normal; }

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(43px, 5vw, 64px);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 780;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, opacity .16s ease;
}

.button:hover:not(:disabled) { transform: translateY(-1px); }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 30px rgba(10, 31, 61, .14); }
.button-primary:hover:not(:disabled) { background: #0d2b50; }
.button-secondary { color: var(--navy); border-color: #cbd7e3; background: var(--white); }
.button-secondary:hover:not(:disabled) { border-color: #aebfd0; }
.button-gold { color: var(--navy); background: var(--gold); }

.button:disabled {
  color: #8592a3;
  border-color: #d5dde6;
  background: #e8edf2;
  box-shadow: none;
  opacity: 1;
}

.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 760; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf4fb;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 7px 10px; border: 1px solid #d7e0e9; border-radius: 999px; color: #4e6174; background: #fbfcfd; font-size: 12px; font-weight: 720; }

.hero { border-bottom: 1px solid #dce6f0; background: var(--blue-soft); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 92px 0 88px;
}

.hero-copy { max-width: 720px; margin: 24px 0 0; color: #536276; font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, max-content); justify-content: start; gap: 15px 24px; margin-top: 34px; color: #5f6d7f; font-size: 13px; }
.hero-proof span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.hero-proof span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.engineering-board { padding: 27px; border: 1px solid #d6e1eb; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-md); }
.board-title { padding-bottom: 18px; border-bottom: 1px solid #e4ebf2; text-align: center; }
.board-title strong { display: block; color: var(--navy); font-size: 22px; }
.board-title span { display: block; margin-top: 4px; color: #5f6d7f; font-size: 13px; }
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 17px; }
.capability-block { min-height: 103px; display: flex; align-items: center; justify-content: center; padding: 18px; border: 1px solid #dbe4ed; border-radius: 14px; background: #fbfdff; text-align: center; }
.capability-block strong { display: block; color: #243a57; font-size: 15px; line-height: 1.3; white-space: nowrap; }
.capability-block small { display: block; margin-top: 5px; color: #5f6d7f; font-size: 12px; }
.architecture-strip { margin-top: 12px; padding: 15px 18px; border-radius: 13px; color: var(--white); background: var(--navy); text-align: center; font-size: 14px; font-weight: 780; }

.section { padding: 76px 0; }
.section-white { background: var(--white); }
.section-alt { background: var(--blue-soft-2); }
.section-head { margin-bottom: 34px; }
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 3.2vw, 43px); line-height: 1.08; letter-spacing: -.034em; }
.section-head .support { width: 100%; max-width: none; margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.section-title-row .text-link { margin-bottom: 4px; white-space: nowrap; }

.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar { min-height: 244px; padding: 34px; border: 1px solid #dce5ee; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.pillar-index { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.pillar h3 { margin: 18px 0 10px; color: var(--navy); font-size: 25px; }
.pillar p { margin: 0 0 22px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 200px; padding: 26px; border: 1px solid #dce5ee; border-radius: var(--radius-md); background: var(--white); }
.service-card .accent-line,
.value-card .accent-line { width: 46px; height: 5px; margin-bottom: 23px; border-radius: 5px; background: var(--blue); }
.service-card:nth-child(2) .accent-line { background: var(--gold); }
.service-card:nth-child(3) .accent-line { background: #26a3c8; }
.service-card:nth-child(4) .accent-line { background: #3478b9; }
.service-card:nth-child(5) .accent-line { background: var(--orange); }
.service-card:nth-child(6) .accent-line { background: var(--green); }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.service-card p { margin: 0; color: #637286; font-size: 14px; }

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dde5ed; border-radius: 24px; background: var(--white); box-shadow: 0 14px 36px rgba(26, 55, 85, .055); }
.product-visual { height: 232px; display: grid; place-items: center; padding: 32px; background: #f8fafc; }
.product-card.yourguru .product-visual { background: linear-gradient(135deg, #f5f8fc, #fff8ef); }
.product-card.kinvani .product-visual { background: linear-gradient(135deg, #f5f8fc, #f2f7f0); }
.product-visual img { width: auto; }
.product-visual .yourguru-logo { max-height: 170px; }
.product-visual .kinvani-logo { max-height: 124px; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.product-body > .badge { align-self: flex-start; }
.product-body h3 { margin: 14px 0 8px; color: var(--navy); font-size: 25px; }
.product-body p { margin: 0 0 20px; color: var(--muted); }
.product-body > .soft-action:last-child { margin-top: auto; }
.product-card.wickzy .product-brand-wide { width: min(100%, 440px); }
.product-card.meshmerce .product-visual { padding: 18px 28px; background: linear-gradient(135deg, #f1f7fb, #f8fbfd); }
.product-card.meshmerce .meshmerce-logo { display: block; width: min(100%, 470px); height: auto; max-height: 190px; padding: 0; object-fit: contain; object-position: center; filter: none; opacity: 1; }
.soft-action { display: inline-flex; width: fit-content; align-items: center; justify-content: center; gap: 7px; padding: 8px 13px; border: 1px solid #c5daf2; border-radius: 999px; color: #0b68bd; background: #eaf4ff; font-size: 14px; font-weight: 800; line-height: 1.25; text-decoration: none; }
a.soft-action:hover, a.soft-action:focus-visible { color: #075da9; background: #dcecff; border-color: #adccec; text-decoration: none; }
.product-status { cursor: default; }

.work-card { display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border: 1px solid #d7e0d3; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 14px 36px rgba(35, 65, 83, .055); }
.work-logo { min-height: 315px; display: grid; place-items: center; padding: 42px; border-right: 1px solid #d7e0d3; background: var(--green-soft); }
.work-logo img { width: min(100%, 475px); }
.work-copy { padding: 42px; }
.work-copy h3 { margin: 14px 0 12px; color: #2c6630; font-size: 30px; }
.work-copy p { color: var(--muted); }
.work-copy .tag-row { margin: 22px 0; }
.work-copy .tag { border-color: #d4dfd0; color: #49624a; background: #fafcf9; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { padding: 25px 22px; border: 1px solid #dce5ee; border-radius: var(--radius-md); background: var(--white); }
.value-card .accent-line { width: 38px; height: 4px; margin-bottom: 17px; }
.value-card:nth-child(2) .accent-line { background: var(--gold); }
.value-card:nth-child(3) .accent-line { background: var(--green); }
.value-card:nth-child(4) .accent-line { background: var(--orange); }
.value-card strong { display: block; color: var(--navy); font-size: 17px; }
.value-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }

.cta-section { padding: 76px 0; background: var(--white); }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; padding: 46px 50px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: 0 20px 52px rgba(9, 32, 61, .17); }
.cta-panel .eyebrow { margin: 0 0 16px; color: #8fc9ff; }
.cta-panel .eyebrow::before { background: linear-gradient(90deg, #8fc9ff, var(--gold)); }
.cta-panel h2 { margin: 0; color: var(--white); font-size: 40px; line-height: 1.12; letter-spacing: -.03em; }
.cta-panel p { max-width: 720px; margin: 12px 0 0; color: #c7d3e0; }

.page-hero { border-bottom: 1px solid #dce6f0; background: var(--blue-soft); }
.page-hero-inner { padding: 82px 0 78px; }
.page-hero .lead { max-width: 900px; margin: 22px 0 0; color: #536276; font-size: 18px; }
.service-stack { display: grid; gap: 0; }
.service-row { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.service-row:first-child { padding-top: 0; }
.service-row:last-child { padding-bottom: 0; border-bottom: 0; }
.service-row-title h2 { margin: 0; color: var(--navy); font-size: 30px; line-height: 1.15; letter-spacing: -.025em; }
.service-row-title p { margin: 12px 0 0; color: var(--muted); }
.capability-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.capability-list li { padding: 13px 0; border-bottom: 1px solid var(--line); color: #405269; font-size: 14px; font-weight: 650; }
.platform-band { display: flex; flex-wrap: wrap; align-items: center; margin: 22px 0 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platform-band span { position: relative; padding: 15px 18px; color: var(--navy); font-size: 14px; font-weight: 780; }
.platform-band span:first-child { padding-left: 0; }
.platform-band span:not(:last-child)::after { content: ""; position: absolute; top: 17px; right: 0; bottom: 17px; width: 1px; background: #cdd8e3; }
.service-row-commerce { row-gap: 0; }
.service-row-commerce .commerce-platforms { grid-column: 1 / -1; margin-top: 26px; }
.commerce-platforms-label { display: block; margin-bottom: 10px; color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.service-row-commerce .platform-band { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 0; border: 0; }
.service-row-commerce .platform-band span { display: flex; min-height: 54px; align-items: center; justify-content: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfd; text-align: center; line-height: 1.3; }
.service-row-commerce .platform-band span:first-child { padding-left: 14px; }
.service-row-commerce .platform-band span::after { display: none; }

.product-detail { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; margin-bottom: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.product-detail:last-child { margin-bottom: 0; }
.product-detail-visual { min-height: 340px; display: grid; place-items: center; padding: 42px; border-right: 1px solid var(--line); background: var(--blue-soft-2); }
.product-detail.yourguru .product-detail-visual { background: linear-gradient(135deg, #f5f8fc, #fff8ef); }
.product-detail.kinvani .product-detail-visual { background: linear-gradient(135deg, #f5f8fc, #f2f7f0); }
.product-detail-visual img { width: auto; }
.product-detail-visual .yourguru-logo { max-height: 190px; }
.product-detail-visual .kinvani-logo { max-height: 145px; }
.product-detail-copy { padding: 42px; }
.product-detail-copy h2 { margin: 14px 0 10px; color: var(--navy); font-size: 32px; }
.product-detail-copy p { color: var(--muted); }
.fact-list { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line); }
.fact-row { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.fact-row strong { color: var(--navy); font-size: 13px; }
.fact-row span { color: var(--muted); font-size: 13px; }

.case-study { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border: 1px solid #d7e0d3; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.case-brand { min-height: 420px; display: grid; place-items: center; padding: 44px; border-right: 1px solid #d7e0d3; background: var(--green-soft); }
.case-brand img { width: min(100%, 490px); }
.case-content { padding: 44px; }
.case-content h2 { margin: 14px 0 10px; color: #2c6630; font-size: 34px; }
.case-content h3 { margin: 32px 0 12px; color: var(--navy); font-size: 18px; }
.case-content p { color: var(--muted); }
.case-points { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.case-point { padding: 18px 18px 18px 0; border-bottom: 1px solid var(--line); }
.case-point:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
.case-point strong { display: block; color: var(--navy); font-size: 14px; }
.case-point span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }

.about-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: center; }
.about-intro h2 { margin: 0; color: var(--navy); font-size: 36px; letter-spacing: -.03em; }
.about-intro > p { margin: 0; color: var(--muted); font-size: 17px; }
.about-intro .eyebrow,
.mission-card .eyebrow { color: var(--blue); font-size: 13px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card { min-height: 270px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.mission-card h2 { margin: 0; color: var(--navy); font-size: 30px; }
.mission-card .eyebrow { margin: 0 0 16px; }
.mission-card > p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); font-size: 16px; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: start; }
.contact-aside { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--blue-soft-2); }
.contact-aside h2 { margin: 0; color: var(--navy); font-size: 28px; }
.contact-aside > p { color: var(--muted); }
.contact-notes { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line); }
.contact-note { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-note strong { display: block; color: var(--navy); font-size: 14px; }
.contact-note span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #34475e; font-size: 13px; font-weight: 760; }
.field input,
.field select,
.field textarea { width: 100%; border: 1px solid #cbd6e1; border-radius: 10px; color: var(--ink); background: var(--white); outline: none; transition: border-color .16s ease, box-shadow .16s ease; }
.field input,
.field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 165px; padding: 12px 13px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 104, 189, .10); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #d92d20; }
.custom-select { position: relative; }
.custom-select-native { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; opacity: 0 !important; pointer-events: none !important; }
.custom-select-trigger { width: 100%; min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 14px; border: 1px solid #cbd6e1; border-radius: 10px; color: #707b8b; background: var(--white); text-align: left; outline: none; transition: border-color .16s ease, box-shadow .16s ease, color .16s ease; }
.custom-select-trigger.has-value { color: var(--ink); }
.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 104, 189, .10); }
.custom-select-trigger[aria-invalid="true"] { border-color: #d92d20; }
.custom-select-chevron { width: 9px; height: 9px; flex: 0 0 auto; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(45deg) translateY(-2px); transition: transform .16s ease; }
.custom-select.is-open .custom-select-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.custom-select-menu { position: absolute; z-index: 80; top: calc(100% + 8px); right: 0; left: 0; max-height: min(340px, 52vh); overflow-y: auto; padding: 8px; border: 1px solid #d4dfeb; border-radius: 14px; background: var(--white); box-shadow: 0 18px 46px rgba(19, 50, 84, .14); }
.custom-select-menu[hidden] { display: none; }
.custom-select-option { padding: 12px 14px; border-radius: 10px; color: #283548; font-size: 15px; line-height: 1.35; cursor: pointer; outline: none; }
.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option[aria-selected="true"] { color: #173b76; background: #edf4ff; }
.field-error { min-height: 18px; margin: 0; color: var(--danger); font-size: 12px; }
.form-consent { display: flex; grid-column: 1 / -1; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13px; }
.form-consent input { margin-top: 4px; }
.form-actions { display: flex; grid-column: 1 / -1; gap: 16px; align-items: center; }
.form-status { min-height: 22px; margin: 0; font-size: 13px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal { max-width: 900px; }
.legal h2 { margin: 38px 0 10px; color: var(--navy); font-size: 24px; }
.legal p,
.legal li { color: var(--muted); }
.legal ul { padding-left: 22px; }

.not-found { min-height: 65vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.not-found-inner { max-width: 650px; }
.not-found-code { color: var(--blue); font-size: 13px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.not-found h1 { margin: 12px 0 0; color: var(--navy); font-size: 52px; letter-spacing: -.04em; }
.not-found p { margin: 16px 0 26px; color: var(--muted); }

.site-footer { padding: 50px 0 28px; border-top: 1px solid #b4c3d1; color: #495c70; background: var(--footer); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .55fr .55fr; gap: 64px; align-items: start; }
.footer-brand img { width: 242px; }
.footer-brand p { max-width: 520px; margin: 18px 0 0; color: #4e6074; font-size: 14px; }
.footer-group h2 { margin: 0 0 14px; color: var(--navy); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: #4e6074; font-size: 14px; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1.5px solid var(--footer-line); color: #4e6074; font-size: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(11, 104, 189, .22); outline-offset: 3px; }

.brand-picture { display: contents; }
.brand-logo,
.footer-brand img { aspect-ratio: 2043 / 770; height: auto; }
.yourguru-logo { aspect-ratio: 316 / 290; object-fit: contain; }
.kinvani-logo { aspect-ratio: 1243 / 437; object-fit: contain; }
.work-logo img,
.case-brand img { aspect-ratio: 2012 / 782; height: auto; object-fit: contain; }

.nav-services { position: relative; flex: 0 0 auto; }
.nav-services-row { display: flex; align-items: center; }
.nav-services-row > a { padding-right: 5px; }
.services-menu-toggle { width: 25px; height: 44px; display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; padding: 0; border: 0; color: #455166; background: transparent; }
.services-menu-toggle:hover,
.services-menu-toggle:focus-visible,
.nav-services.is-open .services-menu-toggle { color: var(--navy); }
.services-menu-chevron { width: 7px; height: 7px; display: block; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); transition: transform .16s ease; }
.nav-services.is-open .services-menu-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.services-submenu { z-index: 1200; }
.site-nav .services-submenu a { position: relative; display: block; color: #33465c; font-size: 14px; font-weight: 660; line-height: 1.35; white-space: normal; }
.site-nav .services-submenu a::after { display: none !important; }
.site-nav .services-submenu a:hover,
.site-nav .services-submenu a:focus-visible,
.site-nav .services-submenu a[aria-current="page"] { color: var(--navy); background: var(--blue-soft); }
.site-nav .services-submenu .services-all-link { color: var(--navy); font-weight: 800; }
.service-row-title .text-link { margin-top: 14px; }
.page-hero .eyebrow { max-width: 100%; flex-wrap: wrap; overflow-wrap: anywhere; }

@media (min-width: 901px) {
  .services-submenu { position: absolute; top: calc(100% - 8px); left: -18px; width: min(340px, calc(100vw - 32px)); display: grid; gap: 2px; padding: 8px; border: 1px solid #d5e0eb; border-radius: 14px; background: rgba(255, 255, 255, .99); box-shadow: 0 18px 46px rgba(19, 50, 84, .15); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s; }
  .nav-services.is-open .services-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: .12s, .12s, 0s; }
  .site-nav .services-submenu a { padding: 10px 12px; border-radius: 9px; }
  .site-nav .services-submenu .services-all-link { margin-bottom: 3px; border-bottom: 1px solid #e1e8ef; border-radius: 9px 9px 4px 4px; }
}

@media (max-width: 1100px) {
  .hero-proof { grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 1020px) {
  .hero-inner { gap: 46px; }
  .section-head h2 { font-size: 38px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .service-row-commerce .platform-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .menu-button { display: inline-flex; }
  .site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 22px; border-bottom: 1px solid #cad6e1; background: var(--white); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 4px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .site-nav .nav-contact { margin: 8px 0 0; text-align: center; }
  .nav-services { width: 100%; }
  .nav-services-row { width: 100%; }
  .nav-services-row > a { min-width: 0; flex: 1 1 auto; padding: 12px 4px; }
  .services-menu-toggle { width: 44px; height: 44px; }
  .services-submenu { display: none; margin: 0 0 8px 4px; padding: 4px 0 5px 12px; border-left: 2px solid #d8e3ee; }
  .nav-services.is-open .services-submenu { display: grid; gap: 2px; }
  .site-nav .services-submenu a { padding: 10px 12px; border-radius: 9px; }
  .site-nav .services-submenu .services-all-link { margin-bottom: 2px; }
  .hero-inner,
  .service-row,
  .product-detail,
  .case-study,
  .about-intro,
  .contact-layout,
  .work-card { grid-template-columns: 1fr; }
  .about-intro { align-items: start; }
  .hero-inner { padding: 70px 0; }
  .engineering-board { max-width: 650px; width: 100%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .product-grid,
  .pillar-grid,
  .mission-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-visual,
  .case-brand,
  .work-logo { border-right: 0; border-bottom: 1px solid var(--line); }
  .case-brand,
  .work-logo { border-bottom-color: #d7e0d3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-logo { width: 205px; }
  .nav-shell { min-height: 70px; }
  .hero-inner { padding: 62px 0; }
  .hero h1 { font-size: 44px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero-inner { padding: 62px 0 58px; }
  .page-hero .eyebrow { gap: 6px 8px; letter-spacing: .1em; }
  .section { padding: 62px 0; }
  .section-title-row { display: block; }
  .section-title-row .text-link { margin-top: 15px; }
  .section-head h2 { font-size: 34px; white-space: normal; }
  .section-head .support { font-size: 16px; }
  .capability-block strong { white-space: normal; }
  .board-grid,
  .service-grid,
  .value-grid,
  .principle-grid,
  .capability-list,
  .case-points { grid-template-columns: 1fr; }
  .case-point:nth-child(even) { padding-left: 0; border-left: 0; }
  .platform-band { display: block; }
  .platform-band span { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .platform-band span:last-child { border-bottom: 0; }
  .platform-band span::after { display: none; }
  .service-row-commerce .platform-band { grid-template-columns: 1fr; }
  .service-row-commerce .platform-band span { padding: 12px 14px; border: 1px solid var(--line); }
  .product-detail-copy,
  .case-content,
  .work-copy { padding: 30px; }
  .product-detail-visual,
  .case-brand,
  .work-logo { min-height: 260px; padding: 30px; }
  .contact-form { grid-template-columns: 1fr; }
  .field-full,
  .form-consent,
  .form-actions { grid-column: 1; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px; }
  .cta-panel h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Wickzy / Meshmerce brand expansion */
.product-brand-wide { display: block; width: min(100%, 430px); max-height: 164px; height: auto; object-fit: contain; }
@media (max-width: 720px) {
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .hero-proof span { white-space: normal; }
  .product-brand-wide { width: min(100%, 360px); }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright { min-width: 0; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #97aabd;
  border-radius: 50%;
  color: #334b64;
  background: rgba(255, 255, 255, .28);
  transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--blue);
  border-color: #7fa3c5;
  background: rgba(255, 255, 255, .52);
  transform: translateY(-1px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
