:root {
  --ink: #071c2c;
  --ink-soft: #163346;
  --paper: #f3f7f4;
  --paper-deep: #e8efea;
  --white: #ffffff;
  --mint: #25d6ad;
  --mint-dark: #0d8d73;
  --lime: #c8f04b;
  --line: rgba(7, 28, 44, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --muted: #5d707a;
  --danger: #b42318;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(7, 28, 44, 0.13);
}

* { box-sizing: border-box; }
html, body { padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
h1, h2, h3, p { text-wrap: pretty; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 118px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(7, 28, 44, 0.08);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 34px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 11px;
  color: var(--lime);
  font-size: 0.78rem;
  letter-spacing: -0.06em;
}
.site-header.is-scrolled .brand-mark { border-color: var(--line); color: var(--mint-dark); }
.brand-accent { color: var(--mint); }
.site-header.is-scrolled .brand-accent { color: var(--mint-dark); }
.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-nav a {
  position: relative;
  padding: 31px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 670;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  transition: right 0.2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after { right: 0; }
.site-header.is-scrolled .main-nav a { color: var(--muted); }
.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible,
.site-header.is-scrolled .main-nav a.is-active { color: var(--ink); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Shared components */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--mint);
  border-radius: 12px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(37, 214, 173, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #42e4bd;
  box-shadow: 0 14px 34px rgba(37, 214, 173, 0.27);
}
.button-small { min-height: 42px; padding-inline: 17px; font-size: 0.84rem; }
.button-ink { border-color: var(--ink); background: var(--ink); color: var(--white); box-shadow: none; }
.button-ink:hover,
.button-ink:focus-visible { background: var(--ink-soft); box-shadow: 0 12px 28px rgba(7, 28, 44, 0.17); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); box-shadow: none; }
.button-light:hover,
.button-light:focus-visible { background: var(--lime); border-color: var(--lime); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 750;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--mint-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-label::before { content: ""; width: 27px; height: 1px; background: currentColor; }
.section-label-light { color: var(--mint); }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading h2,
.about-copy h2,
.growth-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
  font-weight: 760;
}
.section-heading > p:last-child,
.section-heading-split > p,
.faq-intro > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}
.section-heading-split > p { margin: 0 0 3px; }
body.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.62s ease, transform 0.62s ease; }
body.js-ready .reveal.is-visible { opacity: 1; transform: none; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 154px 0 0;
  background: var(--ink);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-orb { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 380px; height: 380px; right: -90px; top: 80px; background: rgba(37, 214, 173, 0.13); box-shadow: 0 0 120px rgba(37, 214, 173, 0.17); }
.hero-orb-two { width: 270px; height: 270px; left: -130px; bottom: 60px; background: rgba(200, 240, 75, 0.07); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow span { width: 29px; height: 1px; background: currentColor; }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: 0.94; letter-spacing: -0.066em; font-weight: 780; }
.hero h1 em { display: block; color: var(--lime); font-style: normal; font-weight: 600; }
.hero-lead { max-width: 610px; margin: 27px 0 0; color: rgba(255, 255, 255, 0.72); font-size: clamp(1rem, 1.6vw, 1.16rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 26px; color: rgba(255, 255, 255, 0.67); font-size: 0.82rem; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(37, 214, 173, 0.15); color: var(--mint); font-style: normal; font-size: 0.69rem; }
.hero-visual {
  position: relative;
  min-height: 496px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.visual-topline { height: 62px; display: flex; align-items: center; gap: 10px; padding: 0 21px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.7); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(37, 214, 173, 0.12); }
.visual-code { margin-left: auto; color: rgba(255, 255, 255, 0.34); }
.avatar-stage { position: relative; height: 366px; display: grid; place-items: end center; }
.avatar-stage::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent); }
.avatar-stage img { position: relative; z-index: 2; width: min(72%, 350px); max-height: 350px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3)); }
.avatar-halo { position: absolute; width: 290px; height: 290px; bottom: 18px; border: 1px solid rgba(37, 214, 173, 0.33); border-radius: 50%; box-shadow: inset 0 0 70px rgba(37, 214, 173, 0.08), 0 0 70px rgba(37, 214, 173, 0.08); }
.avatar-halo::before,
.avatar-halo::after { content: ""; position: absolute; inset: 25px; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: inherit; }
.avatar-halo::after { inset: 56px; border-style: solid; border-color: rgba(200, 240, 75, 0.16); }
.floating-pill { position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 10px; background: rgba(7, 28, 44, 0.82); color: rgba(255, 255, 255, 0.88); font-size: 0.73rem; font-weight: 700; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); backdrop-filter: blur(10px); }
.floating-pill span { color: var(--mint); font-size: 0.64rem; }
.pill-one { left: 20px; top: 51px; }
.pill-two { right: 17px; top: 151px; }
.pill-three { left: 34px; bottom: 28px; }
.visual-footer { height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.visual-footer div:first-child { display: grid; gap: 3px; }
.visual-footer small { color: rgba(255, 255, 255, 0.42); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.11em; }
.visual-footer strong { font-size: 0.81rem; }
.signal { display: flex; align-items: end; gap: 4px; height: 24px; }
.signal i { width: 4px; border-radius: 4px; background: var(--mint); }
.signal i:nth-child(1) { height: 8px; opacity: 0.4; }
.signal i:nth-child(2) { height: 13px; opacity: 0.6; }
.signal i:nth-child(3) { height: 19px; opacity: 0.8; }
.signal i:nth-child(4) { height: 24px; }
.trust-row { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 74px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.trust-row div { display: flex; align-items: baseline; gap: 11px; padding: 25px 0; }
.trust-row div + div { padding-left: 34px; border-left: 1px solid rgba(255, 255, 255, 0.13); }
.trust-row strong { color: var(--lime); font-size: 1.03rem; }
.trust-row span { color: rgba(255, 255, 255, 0.55); font-size: 0.77rem; }

/* Problem strip */
.challenge-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.challenge-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.challenge-grid > * { min-height: 152px; margin: 0; padding: 37px 27px; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
.challenge-grid > * + * { border-left: 1px solid var(--line); }
.challenge-title { padding-left: 0 !important; color: var(--ink); font-size: 1.26rem; line-height: 1.35; font-weight: 760; }
.challenge-item span { margin-bottom: 13px; color: var(--mint-dark); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.12em; }
.challenge-item p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.55; }

/* Services */
.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 610px; display: flex; flex-direction: column; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.service-topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.service-number { color: var(--mint-dark); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; }
.service-card-dark .service-number { color: var(--mint); }
.service-chip { padding: 6px 10px; border-radius: 99px; background: var(--paper); color: var(--muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.service-card-dark .service-chip { background: rgba(255, 255, 255, 0.09); color: rgba(255, 255, 255, 0.65); }
.service-symbol { width: 74px; height: 74px; display: grid; place-items: center; margin: 49px 0 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); color: var(--ink); font-size: 2rem; font-weight: 350; letter-spacing: -0.08em; }
.service-symbol-wide { font-size: 1rem; font-weight: 850; letter-spacing: 0.04em; }
.service-card-dark .service-symbol { border-color: rgba(255, 255, 255, 0.14); background: rgba(37, 214, 173, 0.1); color: var(--lime); }
.service-card h3 { margin: 0; font-size: clamp(1.55rem, 2.2vw, 2.05rem); line-height: 1.12; letter-spacing: -0.04em; }
.service-card > p { margin: 20px 0 22px; color: var(--muted); font-size: 0.91rem; line-height: 1.68; }
.service-card-dark > p { color: rgba(255, 255, 255, 0.62); }
.service-card ul { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.45; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 7px; height: 7px; border: 2px solid var(--mint-dark); border-radius: 50%; }
.service-card-dark li { color: rgba(255, 255, 255, 0.76); }
.service-card-dark li::before { border-color: var(--mint); }
.service-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.84rem; font-weight: 800; }
.service-card-dark > a { border-color: rgba(255, 255, 255, 0.13); color: var(--white); }
.service-card > a span { color: var(--mint-dark); font-size: 1.1rem; }
.service-card-dark > a span { color: var(--mint); }

/* Connected growth */
.growth-section { position: relative; overflow: hidden; padding: 115px 0; background: var(--ink); color: var(--white); }
.growth-section::after { content: "03"; position: absolute; right: -20px; bottom: -90px; color: rgba(255, 255, 255, 0.025); font-size: 27rem; line-height: 1; font-weight: 900; letter-spacing: -0.1em; }
.growth-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.75fr 1.4fr; gap: 80px; align-items: center; }
.growth-copy h2 { font-size: clamp(2.8rem, 4.6vw, 4.8rem); }
.growth-copy > p:last-of-type { max-width: 440px; margin: 28px 0; color: rgba(255, 255, 255, 0.64); line-height: 1.75; }
.growth-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; }
.growth-flow article { min-height: 306px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--line-light); border-radius: 20px; background: rgba(255, 255, 255, 0.04); }
.growth-flow article:nth-of-type(2) { transform: translateY(-20px); background: rgba(37, 214, 173, 0.08); }
.growth-flow article span { margin-bottom: auto; color: var(--mint); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; }
.growth-flow article strong { color: var(--lime); font-size: 1.55rem; letter-spacing: -0.04em; }
.growth-flow article p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.61); font-size: 0.78rem; line-height: 1.6; }
.flow-arrow { width: 34px; display: grid; place-items: center; color: var(--mint); font-size: 1.1rem; }

/* About */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.83fr 1.17fr; gap: clamp(60px, 9vw, 125px); align-items: center; }
.about-visual { position: relative; max-width: 480px; }
.about-solutions { padding: clamp(18px, 3vw, 30px); border: 1px solid rgba(37, 214, 173, 0.3); border-radius: 28px; background: radial-gradient(ellipse at top right, rgba(37, 214, 173, 0.16), transparent 65%), var(--ink); box-shadow: 0 24px 55px rgba(7, 28, 44, 0.15); }
.about-solutions-label { margin: 0 0 24px; color: var(--mint); font-size: 0.875rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.about-screen { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; background: #101827; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25); }
.about-screen figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 12px; padding: 12px 14px; color: var(--white); font-size: 0.875rem; font-weight: 750; }
.about-screen figcaption span { color: #a6e9d8; font-size: 0.8125rem; font-weight: 500; }
.about-screen img { display: block; width: 100%; height: auto; }
.about-screen-main { margin-right: 14px; }
.about-screen-web { width: 87%; margin: -18px 0 0 auto; border-color: rgba(37, 214, 173, 0.55); }
.about-solutions-note { margin: 24px 0 0; color: #d4e4e9; font-size: 1rem; line-height: 1.5; }
@media (max-width: 480px) {
  .about-screen-main { margin-right: 0; }
  .about-screen-web { width: 100%; margin-top: 18px; }
}
.about-frame { position: relative; overflow: hidden; border-radius: 30px 30px 120px 30px; background: var(--paper-deep); }
.about-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(7, 28, 44, 0.76), transparent 52%); }
.about-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 28%; }
.about-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: grid; gap: 5px; color: var(--white); }
.about-caption span { color: var(--mint); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.about-caption strong { font-size: 1.05rem; }
.experience-stamp { position: absolute; z-index: 4; right: -45px; top: 44px; width: 138px; height: 138px; display: flex; align-items: center; justify-content: center; gap: 7px; border: 9px solid var(--white); border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 16px 40px rgba(7, 28, 44, 0.16); }
.experience-stamp strong { font-size: 2.35rem; line-height: 1; letter-spacing: -0.08em; }
.experience-stamp span { font-size: 0.66rem; line-height: 1.3; font-weight: 800; text-transform: uppercase; }
.about-copy .about-lead { margin: 28px 0 18px; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.72; }
.about-copy > p:not(.section-label):not(.about-lead) { margin: 0; color: var(--muted); line-height: 1.75; }
.principles-list { display: grid; gap: 14px; margin: 30px 0; }
.principles-list > div { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.principles-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(37, 214, 173, 0.13); color: var(--mint-dark); font-size: 0.72rem; font-weight: 900; }
.principles-list p { margin: 1px 0 0; color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.principles-list strong { color: var(--ink); }
.about-actions { display: flex; align-items: center; gap: 24px; }
.profile-link { padding-block: 8px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 0.83rem; font-weight: 800; }

/* Process */
.process-section { background: var(--paper-deep); }
.process-heading { margin-inline: auto; text-align: center; }
.process-heading .section-label { justify-content: center; }
.process-heading > p:last-child { max-width: 570px; margin: 20px auto 0; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 58px; left: 12%; right: 12%; height: 1px; background: var(--line); }
.process-list li { position: relative; display: flex; align-items: center; flex-direction: column; padding: 0 22px; text-align: center; }
.process-number { color: var(--mint-dark); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.12em; }
.process-icon { position: relative; z-index: 2; width: 82px; height: 82px; display: grid; place-items: center; margin: 18px 0 28px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 1.4rem; box-shadow: 0 10px 26px rgba(7, 28, 44, 0.07); }
.process-list li:hover .process-icon { background: var(--ink); border-color: var(--ink); color: var(--lime); }
.process-list h3 { margin: 0 0 11px; font-size: 1.12rem; letter-spacing: -0.025em; }
.process-list p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.62; }

/* Projects */
.projects-section { background: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.project-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.35fr 0.65fr; }
.project-image { position: relative; min-height: 320px; overflow: hidden; background: var(--ink); }
.project-card-wide .project-image { min-height: 450px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; object-position: top left; transition: transform 0.5s ease; }
.project-image:hover img { transform: scale(1.025); }
.project-open { position: absolute; right: 19px; top: 19px; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 1.1rem; box-shadow: 0 10px 24px rgba(7, 28, 44, 0.2); }
.project-body { display: flex; flex-direction: column; padding: 29px; }
.project-card:not(.project-card-wide) { display: flex; flex-direction: column; }
.project-card:not(.project-card-wide) .project-image { display: block; min-height: 0; aspect-ratio: 16 / 9; }
.project-card:not(.project-card-wide) .project-body { flex: 1; }
.project-card.project-card-cyd .project-image { aspect-ratio: 1696 / 837; background: #2a1e18; }
.project-card-cyd .project-image img { object-fit: contain; object-position: center; }
.project-card-wide .project-body { justify-content: center; padding: 42px; }
.project-type { color: var(--mint-dark); font-size: 0.67rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.project-body h3 { margin: 9px 0 0; font-size: clamp(1.7rem, 2.6vw, 2.6rem); line-height: 1; letter-spacing: -0.05em; }
.project-body > p { margin: 22px 0; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.project-tags span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 99px; background: var(--white); color: var(--ink-soft); font-size: 0.65rem; font-weight: 750; }

/* Applications */
.apps-section { background: var(--paper-deep); }
.app-showcase-list { display: grid; gap: 24px; }
.app-showcase { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr); gap: 38px; align-items: center; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.app-showcase-dark { border-color: var(--ink); background: var(--ink); color: var(--white); }
.app-showcase-copy { max-width: 570px; }
.app-showcase-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 19px; color: var(--mint-dark); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.app-showcase-dark .app-showcase-kicker { color: var(--mint); }
.app-showcase-kicker span { color: var(--ink); font-size: 0.64rem; }
.app-showcase-dark .app-showcase-kicker span { color: var(--lime); }
.app-showcase h3 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 0.94; letter-spacing: -0.065em; }
.app-showcase-copy > p { margin: 23px 0 22px; color: var(--muted); font-size: 0.94rem; line-height: 1.75; }
.app-showcase-dark .app-showcase-copy > p { color: rgba(255, 255, 255, 0.66); }
.app-feature-list { display: grid; gap: 10px; margin: 0 0 29px; padding: 0; list-style: none; }
.app-feature-list li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 0.8rem; line-height: 1.52; }
.app-feature-list li::before { content: ""; position: absolute; left: 0; top: 0.54em; width: 7px; height: 7px; border: 2px solid var(--mint-dark); border-radius: 50%; }
.app-showcase-dark .app-feature-list li { color: rgba(255, 255, 255, 0.76); }
.app-showcase-dark .app-feature-list li::before { border-color: var(--mint); }
.manual-inline-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 13px; padding-bottom: 5px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.75rem; font-weight: 760; }
.manual-inline-link:hover,
.manual-inline-link:focus-visible { color: var(--mint-dark); border-color: var(--mint-dark); }
.app-showcase-dark .manual-inline-link { border-color: rgba(255, 255, 255, 0.28); color: var(--mint); }
.app-showcase-dark .manual-inline-link:hover,
.app-showcase-dark .manual-inline-link:focus-visible { border-color: var(--lime); color: var(--lime); }
.app-showcase-screen { position: relative; display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--ink); box-shadow: 0 18px 45px rgba(7, 28, 44, 0.12); }
.app-showcase-dark .app-showcase-screen { border-color: rgba(255, 255, 255, 0.15); }
.app-showcase-screen img { display: block; width: 100%; aspect-ratio: 1910 / 890; object-fit: cover; object-position: top left; transition: transform 0.45s ease; }
.app-showcase-screen:hover img { transform: scale(1.025); }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro > p { margin: 24px 0 30px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 40px 1fr 26px; gap: 14px; align-items: center; padding: 24px 0; color: var(--ink); font-size: 1rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--mint-dark); font-size: 0.64rem; letter-spacing: 0.1em; }
.faq-list summary i { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; transition: transform 0.25s ease, background 0.25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); background: var(--lime); border-color: var(--lime); }
.faq-list details > p { margin: -5px 40px 25px 54px; color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

/* CTA and contact */
.cta-band { padding: 82px 0; background: var(--mint-dark); color: var(--white); }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.cta-band h2 { max-width: 850px; margin: 0; font-size: clamp(2.2rem, 4.2vw, 4.15rem); line-height: 1.02; letter-spacing: -0.055em; }
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(65px, 9vw, 125px); align-items: start; }
.contact-copy > p { max-width: 480px; margin: 25px 0 0; }
.contact-channels { display: grid; gap: 10px; margin: 35px 0 30px; }
.contact-channel { display: grid; grid-template-columns: 46px 1fr auto; gap: 14px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); transition: border-color 0.2s ease, transform 0.2s ease; }
.contact-channel:hover { transform: translateX(4px); border-color: var(--mint-dark); }
.channel-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: var(--white); font-weight: 900; }
.channel-icon img { width: 24px; height: 24px; object-fit: contain; }
.channel-icon-whatsapp { background: #128c62; }
.contact-channel > span:nth-child(2) { display: grid; gap: 4px; min-width: 0; }
.contact-channel small { color: var(--muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-channel strong { overflow-wrap: anywhere; font-size: 0.83rem; }
.contact-channel > i { color: var(--mint-dark); font-style: normal; }
.availability-note { display: flex; align-items: flex-start; gap: 14px; padding-top: 25px; border-top: 1px solid var(--line); }
.availability-note .live-dot { flex: 0 0 auto; margin: 7px 5px 0; }
.availability-note p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.6; }
.availability-note strong { color: var(--ink); }
.contact-form { padding: 37px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: 0 24px 65px rgba(7, 28, 44, 0.09); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 33px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.form-heading span:last-child { color: var(--mint-dark); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { color: var(--ink-soft); font-size: 0.73rem; font-weight: 800; }
.field input,
.field select,
.field textarea { width: 100%; border: 1px solid rgba(7, 28, 44, 0.16); border-radius: 11px; background: var(--white); color: var(--ink); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field input,
.field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 130px; padding: 14px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8a9aa1; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--mint-dark); box-shadow: 0 0 0 3px rgba(37, 214, 173, 0.13); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--danger); }
.field-error { min-height: 14px; color: var(--danger); font-size: 0.67rem; line-height: 1.25; }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.checkbox-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--mint-dark); }
.checkbox-field label { color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.checkbox-error { display: block; margin: 6px 0 15px 28px; }
.form-submit { width: 100%; border: 0; }
.form-helper { margin: 12px 0 0; color: var(--muted); font-size: 0.66rem; line-height: 1.5; text-align: center; }
.form-status { display: none; margin: 15px 0 0; padding: 11px 13px; border-radius: 9px; font-size: 0.75rem; line-height: 1.5; }
.form-status.is-success { display: block; background: rgba(13, 141, 115, 0.1); color: #08715c; }
.form-status.is-error { display: block; background: rgba(180, 35, 24, 0.08); color: var(--danger); }

/* Footer */
.site-footer { padding-top: 75px; background: #04131f; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 0.72fr); gap: 60px; padding-bottom: 65px; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand p { max-width: 310px; margin: 0; color: rgba(255, 255, 255, 0.54); font-size: 0.84rem; line-height: 1.65; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.footer-column strong { margin-bottom: 8px; color: var(--mint); font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-column a,
.footer-column span { color: rgba(255, 255, 255, 0.58); font-size: 0.78rem; transition: color 0.2s ease; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, 0.11); }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.4); font-size: 0.68rem; }
.whatsapp-float,
.back-to-top { position: fixed; z-index: 20; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 14px 34px rgba(7, 28, 44, 0.23); }
.whatsapp-float { right: 22px; bottom: 22px; background: #18c77c; color: var(--white); font-size: 0; font-weight: 900; }
.whatsapp-float img { width: 27px; height: 27px; object-fit: contain; }
.back-to-top { right: 30px; bottom: 82px; width: 34px; height: 34px; background: var(--white); color: var(--ink); font-size: 0.84rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: 0.2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(3.15rem, 5.8vw, 5rem); }
  .service-card { padding: 25px; }
  .growth-grid { grid-template-columns: 0.65fr 1.35fr; gap: 52px; }
  .growth-flow article { padding: 18px; }
  .app-showcase { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 92px 0; }
  .site-header { position: absolute; }
  .site-header.is-scrolled { position: fixed; }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(7, 28, 44, 0.98);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a,
  .site-header.is-scrolled .main-nav a { padding: 13px 14px; color: rgba(255, 255, 255, 0.75); }
  .main-nav a::after { display: none; }
  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active,
  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-scrolled .main-nav a:focus-visible,
  .site-header.is-scrolled .main-nav a.is-active { color: var(--white); background: rgba(255, 255, 255, 0.06); border-radius: 9px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 126px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow,
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero h1,
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(600px, 100%); margin-inline: auto; }
  .challenge-grid { grid-template-columns: 1fr 1fr; }
  .challenge-grid > * { min-height: 130px; }
  .challenge-grid > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .challenge-grid > *:nth-child(odd) { border-left: 1px solid var(--line); }
  .challenge-title { border-left: 0 !important; }
  .section-heading-split { grid-template-columns: 1fr; gap: 22px; }
  .section-heading-split > p { max-width: 650px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-symbol { margin: 35px 0 25px; }
  .service-card ul { grid-template-columns: 1fr 1fr; }
  .growth-grid { grid-template-columns: 1fr; }
  .growth-copy { max-width: 650px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(460px, 90%); margin-inline: auto; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 50px 0; }
  .process-list::before { display: none; }
  .project-card-wide { grid-template-columns: 1fr; }
  .project-card-wide .project-image { min-height: 360px; }
  .project-card.project-card-ferremetales .project-image { display: block; min-height: 0; background: #faf9f6; }
  .project-card-ferremetales .project-image img { display: block; width: 100%; height: auto; object-fit: contain; object-position: center; }
  .project-card-ferremetales .project-image:hover img { transform: none; }
  .project-card-ferremetales .project-open { position: static; width: 40px; height: 40px; margin: 10px 14px 10px auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; max-width: 650px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 35px; }
  .cta-band-inner .button { justify-self: start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 650px; }
  .footer-main { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .about-copy h2,
  .growth-copy h2,
  .faq-intro h2,
  .contact-copy h2 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.7rem, 13.2vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .text-link { align-self: center; }
  .hero-proof { width: max-content; max-width: 100%; display: grid; justify-content: start; margin-inline: auto; text-align: left; }
  .hero-visual { min-height: 430px; border-radius: 22px; }
  .avatar-stage { height: 310px; }
  .avatar-stage img { max-height: 296px; }
  .avatar-halo { width: 235px; height: 235px; }
  .floating-pill { font-size: 0.64rem; }
  .pill-one { left: 10px; top: 34px; }
  .pill-two { right: 8px; top: 123px; }
  .pill-three { left: 13px; bottom: 15px; }
  .trust-row { grid-template-columns: 1fr; margin-top: 52px; }
  .trust-row div,
  .trust-row div + div { padding: 17px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .trust-row div:first-child { border-top: 0; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-grid > *,
  .challenge-grid > *:nth-child(odd) { min-height: 0; padding: 25px 0; border-left: 0; border-top: 1px solid var(--line); }
  .challenge-title { padding-top: 34px !important; }
  .service-card { padding: 24px; border-radius: 19px; }
  .service-card ul { grid-template-columns: 1fr; }
  .growth-section { padding: 82px 0; }
  .growth-flow { grid-template-columns: 1fr; gap: 9px; }
  .growth-flow article { min-height: 220px; }
  .growth-flow article:nth-of-type(2) { transform: none; }
  .flow-arrow { width: auto; height: 25px; transform: rotate(90deg); }
  .experience-stamp { right: -18px; width: 118px; height: 118px; border-width: 7px; }
  .experience-stamp strong { font-size: 2rem; }
  .about-actions { align-items: flex-start; flex-direction: column; }
  .process-list { grid-template-columns: 1fr; gap: 42px; }
  .process-list li { padding: 0 15px; }
  .process-icon { margin-bottom: 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; }
  .project-image,
  .project-card-wide .project-image { min-height: 270px; }
  .project-card-wide .project-body,
  .project-body { padding: 25px; }
  .app-showcase { padding: 24px; border-radius: 19px; }
  .app-showcase h3 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .faq-list summary { grid-template-columns: 30px 1fr 26px; font-size: 0.9rem; }
  .faq-list details > p { margin-left: 44px; }
  .cta-band { padding: 65px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; border-radius: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

@media (max-width: 420px) {
  .hero h1 { letter-spacing: -0.055em; }
  .visual-topline { padding-inline: 15px; }
  .floating-pill { padding: 8px 9px; }
  .about-visual { width: 100%; }
  .experience-stamp { right: -7px; top: 22px; }
  .contact-channel { grid-template-columns: 42px 1fr auto; padding: 12px; }
  .channel-icon { width: 42px; height: 42px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  body.js-ready .reveal { opacity: 1; transform: none; }
}
