/* =========================================================
   CENTURY MUDRA TECH — design tokens
   Palette: deep navy (brand/trust) + amber (action/energy),
   on a light lavender-gray canvas. Each product keeps its
   own accent color (blue / green / orange / purple).
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0A1140;
  --navy-800: #101A55;
  --navy-700: #182872;
  --navy-600: #1F3390;
  --ink: #12204D;
  --muted: #5B6478;
  --muted-light: #B9C0DD;
  --light-bg: #EEF1FA;
  --light-bg-2: #E7EBF8;
  --white: #FFFFFF;
  --border: #E1E5F2;
  --amber: #E8A33C;
  --amber-dark: #C6822A;

  --display: 'Sora', sans-serif;
  --body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
}

button {
  font-family: var(--body);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

[id] {
  scroll-margin-top: 92px;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn .arrow {
  transition: transform .15s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn-amber {
  background: var(--amber);
  color: var(--navy-900);
}

.btn-amber:hover {
  background: var(--amber-dark);
}

.btn-amber.full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-700);
}

.btn-contact {
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 20px;
}

.btn-contact:hover {
  background: var(--amber);
  color: var(--navy-900);
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.brand-mark.light {
  background: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text .name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.brand-text .tag {
  font-size: 11px;
  color: var(--muted-light);
}

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

nav.main-nav>a {
  color: #C7CCE6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s;
}

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

.nav-item {
  position: relative;
}

.nav-item>.nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: #C7CCE6;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
}

.nav-item>.nav-parent .caret {
  font-size: 10px;
  transition: transform .15s;
}

.nav-item:hover>.nav-parent,
.nav-item:focus-within>.nav-parent {
  color: var(--white);
}

.nav-item:hover>.nav-parent .caret,
.nav-item:focus-within>.nav-parent .caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 210px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 40px -16px rgba(10, 17, 64, 0.45);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
  z-index: 60;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
}

.nav-dropdown a:hover {
  background: var(--light-bg);
}

@media (max-width:980px) {
  nav.main-nav {
    display: none;
  }
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  overflow: hidden;
  padding: 90px 0 100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #E4E8FA;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .accent-text {
  color: var(--amber);
}

.hero p.lede {
  font-size: 17px;
  color: #C7CCE6;
  max-width: 56ch;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   SECTION generic
   --------------------------------------------------------- */
section {
  padding: 88px 0;
}

.kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

.kicker.light {
  color: var(--amber);
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

h2.light-h {
  color: var(--white);
}

.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.card-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

.card-note.center {
  text-align: center;
}

.pill-tag {
  display: inline-block;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 999px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ---------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about h2 {
  margin-bottom: 22px;
}

.about p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 16px;
  max-width: 52ch;
}

.about-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.ac-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.ac-sub {
  font-size: 12px;
  color: var(--muted);
}

.stat-block {
  margin-bottom: 18px;
}

.stat-block:last-of-type {
  margin-bottom: 0;
}

.stat-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-val {
  font-weight: 700;
  color: var(--ink);
}

.bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 999px;
}

/* ---------------------------------------------------------
   PRODUCTS
   --------------------------------------------------------- */
.products {
  background: var(--light-bg);
}

.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.tab-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.tab-pill.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.tab-ic {
  font-size: 15px;
}

.product-panel {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 60px -30px rgba(10, 17, 64, 0.25);
  margin-bottom: 20px;
}

@media (max-width:820px) {
  .product-panel {
    grid-template-columns: 1fr;
  }
}

.panel-left {
  padding: 44px;
}

.panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.panel-left h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--ink);
}

.panel-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.panel-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 44ch;
}

.panel-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.panel-list li {
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 0 8px 26px;
  position: relative;
}

.panel-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--light-bg-2);
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-right {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.panel-right-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.panel-right-label {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width:820px) {
  .product-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow .15s ease, transform .15s ease;
}

.mini-card:hover {
  box-shadow: 0 14px 30px -16px rgba(10, 17, 64, 0.25);
  transform: translateY(-2px);
}

.mini-ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
}

.mini-title {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.mini-sub {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------------------------------------------------------
   INDUSTRIES
   --------------------------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0 28px;
}

@media (max-width:900px) {
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.ind-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.ind-ic.dark {
  background: var(--navy-900);
}

.industry-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
  color: var(--ink);
}

.industry-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.cta-strip {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.cta-strip-sub {
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------------------------------------------------------
   WHY CHOOSE US
   --------------------------------------------------------- */
.why-choose {
  background: var(--navy-900);
}

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

@media (max-width:900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 26px;
}

.why-ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232, 163, 60, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
}

.why-card h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted-light);
  font-size: 13.5px;
  margin: 0;
}

/* ---------------------------------------------------------
   CLIENTS
   --------------------------------------------------------- */
.clients h2 {
  margin-bottom: 32px;
}

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

@media (max-width:820px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.client-loc {
  font-size: 12px;
  color: var(--muted);
}

/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */
.contact {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

@media (max-width:880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info>p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-k {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.info-v {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.interested-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(10, 17, 64, 0.2);
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width:520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  font-size: 13.5px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--navy-800);
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

@media (max-width:760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-tagline {
  color: var(--muted-light);
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 36ch;
}

.footer-col-title {
  color: #8890B8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: #C7CCE6;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 28px;
  font-size: 12.5px;
  color: #8890B8;
}