:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --cardFadeBg: #f6f8fc;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, .70);
  --border: rgba(15, 23, 42, .10);
  --brand: #2f6bff;
  --brand-2: #14b8a6;
  --shadow-sm: 0 8px 24px rgba(2, 6, 23, .08);
  --shadow-md: 0 14px 40px rgba(2, 6, 23, .12);
  --radius: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(980px 560px at 18% -10%, rgba(47, 107, 255, .09), transparent 60%),
    radial-gradient(860px 520px at 90% 10%, rgba(20, 184, 166, .08), transparent 60%),
    var(--bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

.container { width: min(var(--container), 100% - 40px); margin: 0 auto; }
.narrow { width: min(860px, 100% - 40px); margin: 0 auto; }
.section { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, rgba(246, 248, 252, .65), rgba(246, 248, 252, .35)); }
.section.alt { background: linear-gradient(180deg, rgba(246, 248, 252, .68), rgba(246, 248, 252, .42)); }
.surface { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.section-title { margin: 0 0 16px; line-height: 1.15; letter-spacing: -.02em; font-size: clamp(1.7rem, 3.1vw, 2.4rem); }

.page-head {
  padding-top: 34px;
  padding-bottom: 20px;
}
.page-head h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  font-size: 1.04rem;
}
.page-head + .section {
  padding-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(47, 107, 255, .24); }
.btn-primary:hover { background: #1e4fd6; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-soft); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand-logo { width: auto; max-height: 62px; }
.nav-menu { display: flex; justify-content: center; gap: 14px; }
.nav-link { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 10px; font-weight: 600; }
.nav-link:hover, .nav-link.is-active { color: var(--text); background: rgba(15, 23, 42, .05); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .35);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 45;
}
.menu-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 86vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 46;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: right .2s ease;
}
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-nav { display: grid; gap: 8px; }
.drawer-nav a { text-decoration: none; color: var(--text); padding: 10px 12px; border-radius: 10px; }
.drawer-nav a:hover { background: var(--bg-soft); }
body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
body.menu-open .menu-drawer { right: 0; }
body.menu-open { overflow: hidden; }

.hero {
  padding: 52px 0 20px;
  background:
    radial-gradient(1000px 600px at 20% 0%, rgba(47, 107, 255, .14), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(20, 184, 166, .12), transparent 60%),
    #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(47, 107, 255, .07);
  color: var(--brand);
  font-weight: 600;
  font-size: .85rem;
}
.hero h1 { margin: 10px 0 12px; font-size: clamp(2.1rem, 4.8vw, 3.6rem); line-height: 1.04; letter-spacing: -.03em; max-width: none; }
.hero p { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 50ch; }
.hero-actions { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero-media-wrap {
  position: relative;
  margin-left: -42px;
}
.hero-tech{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:12px;
  margin-top:0;
}
.hero-tech--full { width: 100%; }
.hero-cap-strip { padding: 16px 0 26px; }
.home-deliverables-section { padding-top: 56px; }
.tech-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 14px;
  min-height: 46px;
  font-size:13px;
  font-weight:600;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(148, 163, 184, .35);
  color:#2f3a4a;
  backdrop-filter:blur(6px);
  box-shadow:0 8px 18px rgba(2, 6, 23, .05);
  transition:all .2s ease;
}
.tech-chip svg{
  width:14px;
  height:14px;
  opacity:.7;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.tech-chip:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.tech-chip--highlight{
  background:linear-gradient(135deg, rgba(47,107,255,.16), rgba(20,184,166,.14));
  border-color:rgba(47,107,255,.32);
  color:#1f47d2;
  font-weight:600;
}
.hero-image-container{
  width:100%;
  height:420px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  isolation: isolate;
  background: linear-gradient(135deg, #f4f7fb 0%, #edf2f8 100%);
  border: 0;
  box-shadow: 0 14px 36px rgba(2, 6, 23, .12);
}
.hero-carousel-track{
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}
.hero-carousel-slide.is-active{
  opacity: 1;
}
.hero-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(8, 20, 40, .34);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease, background .2s ease;
}
.hero-carousel-btn--prev{ left: 12px; }
.hero-carousel-btn--next{ right: 12px; }
.hero-carousel:hover .hero-carousel-btn,
.hero-carousel:focus-within .hero-carousel-btn{
  opacity: 1;
  visibility: visible;
}
.hero-carousel-dots{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.65);
  cursor: pointer;
  padding: 0;
}
.hero-carousel-dot.is-active{
  width: 20px;
  background: #fff;
}

.hero-industria{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position: 56% center;
  transform: scale(1.00);
}
.hero-carousel-slide.is-mockup .hero-industria{
  transform: scale(0.92);
}

.hero-image-container::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events: none;
  background: none;
}

.hero-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.hero-fallback { padding: 16px; display: grid; gap: 12px; }
.mini-card { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.mini-icon { width: 32px; height: 32px; border-radius: 10px; background: rgba(47, 107, 255, .12); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; }

.card-grid { display: grid; gap: 16px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }
.card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f6fb;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  margin-bottom: 14px;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  filter: saturate(.82) contrast(1.04) brightness(.97);
  transition: transform .28s ease, filter .28s ease;
}
.card:hover .card__media img {
  transform: scale(1.06);
  filter: saturate(.88) contrast(1.05) brightness(.98);
}
.deliverables-grid .card .card__media img {
  transform: scale(1.08);
}
.deliverables-grid .card:hover .card__media img {
  transform: scale(1.00);
}
.card__media.fade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(246,248,252,0.92) 0%,
      rgba(246,248,252,0.00) 18%,
      rgba(246,248,252,0.00) 82%,
      rgba(246,248,252,0.92) 100%),
    linear-gradient(180deg,
      rgba(246,248,252,0.35) 0%,
      rgba(246,248,252,0.00) 22%,
      rgba(246,248,252,0.00) 78%,
      rgba(246,248,252,0.35) 100%);
}
.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  margin-bottom: 12px;
  background: rgba(47, 107, 255, .12);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 20px; height: 20px; }
.solutions-grid .card {
  padding: 24px;
}
.solutions-grid .card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.52rem, 2.1vw, 1.82rem);
  line-height: 1.14;
  letter-spacing: -.015em;
}
.solutions-grid .card p {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.52;
}
.solutions-grid .card a {
  color: #2a57df;
  font-weight: 600;
  text-decoration: none;
}
.solutions-grid .card a:hover {
  text-decoration: underline;
}

.industries-head {
  padding-bottom: 26px;
}
.industries-insights {
  padding-top: 14px;
}
.industries-insight-card {
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
}
.industries-insight-card--gain {
  border-color: rgba(20, 184, 166, .22);
}
.industries-insight-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.industries-insight-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.industries-insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #2452dd;
  background: linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(20, 184, 166, .14));
  border: 1px solid rgba(47, 107, 255, .24);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .09);
}
.industries-insight-icon svg {
  width: 22px;
  height: 22px;
}
.industries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.industries-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.02rem;
  line-height: 1.42;
}
.industries-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6bff, #14b8a6);
}

.industries-segments .section-title {
  margin-bottom: 14px;
}
.industries-segment-card {
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .8));
}
.industries-segment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.industries-segment-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #2452dd;
  background: rgba(47, 107, 255, .12);
  border: 1px solid rgba(47, 107, 255, .2);
}
.industries-segment-icon svg {
  width: 21px;
  height: 21px;
}
.industries-segment-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.8vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -.015em;
}
.industries-segment-card p {
  margin: 0;
}

.stack-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.stack-chips span {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
}

.stack-lead {
  margin: -4px 0 14px;
  color: var(--muted);
  max-width: 70ch;
}

.stack-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.stack-logo-card {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 12px;
  padding: 12px 12px 13px;
  box-shadow: 0 8px 22px rgba(2, 6, 23, .06);
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 132px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.stack-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, .10);
  border-color: rgba(47, 107, 255, .24);
}
.stack-logo-wrap {
  height: 44px;
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: start;
  border-radius: 10px;
  background: rgba(246, 248, 252, .86);
  border: 1px solid rgba(15, 23, 42, .06);
  padding: 6px 10px;
}
.stack-logo-img {
  max-height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(.88) contrast(1.06);
}
.stack-logo-img--oracle {
  max-height: 31px;
}

.stack-logo-card small {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.stack-logo-card:nth-child(1) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(10,126,216,.10), rgba(255,255,255,.85));
}
.stack-logo-card:nth-child(2) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(0,120,212,.11), rgba(255,255,255,.85));
}
.stack-logo-card:nth-child(3) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(236,28,36,.10), rgba(255,255,255,.86));
}
.stack-logo-card:nth-child(4) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(255,153,0,.12), rgba(255,255,255,.86));
}
.stack-logo-card:nth-child(5) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(5,98,196,.10), rgba(255,255,255,.86));
}
.stack-logo-card:nth-child(6) .stack-logo-wrap {
  background: linear-gradient(135deg, rgba(0,120,212,.11), rgba(255,255,255,.86));
}

.process-section {
  padding-top: 72px;
  padding-bottom: 54px;
}
.process-section .section-title {
  margin-bottom: 18px;
}
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.process-step {
  position: relative;
  padding-top: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(50% + 31px);
  width: calc(100% - 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 255, .26), rgba(20, 184, 166, .2));
}
.process-step:last-child::after {
  display: none;
}
.process-step__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.process-step__icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #1f47d2;
  border: 1px solid rgba(47, 107, 255, .28);
  background: linear-gradient(135deg, #e7efff, #dff4f1);
  box-shadow: 0 14px 32px rgba(2, 6, 23, .11);
  z-index: 1;
}
.process-step__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.95;
}
.process-step__number {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(47, 107, 255, .68);
  line-height: 1;
}
.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.15;
  letter-spacing: -.015em;
}
.process-step p {
  margin: 0;
  line-height: 1.48;
  color: var(--muted);
  max-width: 28ch;
}

.process-banner-section {
  padding-top: 20px;
  padding-bottom: 34px;
}
.process-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .36);
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(7, 16, 33, .78) 0%, rgba(7, 16, 33, .64) 38%, rgba(7, 16, 33, .34) 62%, rgba(7, 16, 33, .24) 100%);
  box-shadow: 0 16px 40px rgba(2, 6, 23, .18);
}
.process-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero/processos.png") 70% center / cover no-repeat;
  z-index: 0;
}
.process-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 440px at 20% 50%, rgba(47, 107, 255, .16), transparent 58%);
  z-index: 1;
}
.process-banner__content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 46px);
  max-width: 680px;
  color: #f8fbff;
  background: linear-gradient(90deg,
    rgba(7, 16, 33, .40) 0%,
    rgba(7, 16, 33, .32) 28%,
    rgba(7, 16, 33, .22) 46%,
    rgba(7, 16, 33, .12) 60%,
    rgba(7, 16, 33, 0) 74%);
  border-radius: 16px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.process-banner__badge {
  margin-bottom: 10px;
  color: #d5e4ff;
  border-color: rgba(201, 221, 255, .35);
  background: rgba(47, 107, 255, .22);
}
.process-banner h2 {
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.process-banner p {
  margin: 0 0 16px;
  max-width: 56ch;
  color: rgba(240, 247, 255, .9);
  font-size: 1.04rem;
}

.final-cta-section {
  padding-top: 48px;
}

.final-cta {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: clamp(22px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(47, 107, 255, .10), rgba(20, 184, 166, .10));
}
.final-cta h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.final-cta p { margin: 0 0 16px; color: var(--muted); }

.differentials {
  padding: 92px 0;
}
.differentials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.diff-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .09);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
  box-shadow: 0 16px 34px rgba(2,6,23,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 107, 255, .26);
  box-shadow: 0 26px 62px rgba(2, 6, 23, .16);
}
.diff-card__media {
  position: relative;
  height: 156px;
  background: #eef3fb;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  overflow: hidden;
}
.diff-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.12) brightness(.9);
  opacity: .96;
  transition: transform .4s ease, filter .4s ease;
}
.diff-card:hover .diff-card__media img {
  transform: scale(1.07);
  filter: saturate(1.02) contrast(1.15) brightness(.88);
}
.diff-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(8, 22, 52, .68) 0%, rgba(15, 48, 105, .48) 44%, rgba(20, 64, 140, .2) 76%, rgba(10, 24, 56, .08) 100%),
    linear-gradient(90deg, rgba(12, 34, 78, .34) 0%, rgba(12, 34, 78, 0) 52%);
}
.diff-card__body {
  padding: 22px 22px 24px;
}
.diff-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(100% 100% at 24% 18%, rgba(255,255,255,.54), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(47,107,255,.30), rgba(20,184,166,.24));
  border: 1px solid rgba(78, 129, 255, .42);
  box-shadow: 0 14px 30px rgba(47,107,255,.24);
  margin-top: -34px;
  position: relative;
}
.diff-card__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
.diff-card__title {
  margin: 14px 0 10px;
  font-size: clamp(1.46rem, 2vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -0.024em;
  color: #0b1220;
  font-weight: 900;
}
.diff-card__text {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.66;
  color: rgba(11,18,32,.76);
}
.diff-card.reveal {
  opacity: 1;
  transform: translateY(0);
}
.diff-card.reveal.is-visible {
  animation: diff-card-in .62s ease both;
}
.differentials__grid .diff-card.reveal:nth-child(2).is-visible {
  animation-delay: .08s;
}
.differentials__grid .diff-card.reveal:nth-child(3).is-visible {
  animation-delay: .16s;
}
@keyframes diff-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .diff-card,
  .diff-card.reveal,
  .diff-card.reveal.is-visible,
  .diff-card__media img {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .7);
  margin-top: 16px;
}
.footer-grid {
  padding: 26px 0 18px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-brand {
  display: block;
}
.footer-brand p { margin: 10px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy {
  padding: 0 0 18px;
  color: var(--muted);
  font-size: .92rem;
}

.contact-head {
  padding-bottom: 22px;
}

.contact-section {
  padding-top: 10px;
}

.contact-wrap { width: min(var(--container), 100% - 40px); margin: 0 auto; }

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: start;
}

.contact-context {
  padding: 24px;
  border-radius: 20px;
  position: sticky;
  top: 96px;
}

.contact-context h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.contact-context p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-points {
  margin-top: 18px;
  display: grid;
  gap: 9px;
}

.contact-points span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(47, 107, 255, .04);
  font-weight: 600;
  color: #1f2a3b;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 600;
  color: var(--text);
}
.field-2 { grid-column: span 1; }
.field-full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
  font-weight: 500;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(47, 107, 255, .45);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, .12);
}
.error-text { color: #b42318; font-size: .85rem; font-weight: 600; }
.alert.error {
  margin: 0 0 12px;
  border: 1px solid rgba(180, 35, 24, .25);
  background: #fff5f5;
  color: #7a271a;
  border-radius: 12px;
  padding: 10px 12px;
}
.hp-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-actions { display: flex; gap: 8px; }

.admin-login-section {
  padding-top: 64px;
}
.admin-login-form {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 28px;
  display: grid;
  gap: 14px;
}
.admin-login-form h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -.02em;
}
.admin-login-subtitle {
  margin: -4px 0 6px;
  color: var(--muted);
}
.admin-login-field {
  display: grid;
  gap: 7px;
  font-weight: 600;
}
.admin-login-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}
.admin-login-field input:focus {
  outline: none;
  border-color: rgba(47, 107, 255, .45);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, .12);
}
.admin-login-actions {
  display: flex;
  justify-content: flex-start;
}

.admin-form {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-form h1 {
  margin: 0 0 6px;
  grid-column: 1 / -1;
  letter-spacing: -.02em;
}
.admin-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  color: var(--text);
}
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}
.admin-form textarea { resize: vertical; min-height: 96px; }
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: rgba(47, 107, 255, .45);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, .12);
}
.admin-form .admin-form-full { grid-column: 1 / -1; }
.admin-form .admin-form-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.admin-form .admin-form-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  box-shadow: none;
}
.admin-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
}
.admin-inline-form {
  padding: 18px;
  display: grid;
  grid-template-columns: 1.6fr repeat(2, minmax(0, .6fr)) auto;
  gap: 10px;
  align-items: end;
}
.admin-inline-form input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
}
.admin-inline-form input:focus {
  outline: none;
  border-color: rgba(47, 107, 255, .45);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, .12);
}
.admin-inline-delete {
  margin: 0;
}
.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.admin-list-head h1 {
  margin: 0;
}
.admin-table-card {
  padding: 0;
  overflow: hidden;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}
.admin-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: rgba(11, 18, 32, .76);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
}
.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  vertical-align: middle;
}
.admin-table tbody tr:hover {
  background: rgba(47, 107, 255, .03);
}
.admin-table .admin-col-id {
  color: rgba(11, 18, 32, .62);
  font-weight: 700;
  width: 56px;
}
.admin-table .admin-col-title {
  font-weight: 600;
  color: #0b1220;
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid transparent;
}
.admin-badge.is-draft {
  color: #475467;
  background: #f2f4f7;
  border-color: #e4e7ec;
}
.admin-badge.is-ok {
  color: #175b34;
  background: #ecfdf3;
  border-color: #abefc6;
}
.admin-table-actions {
  gap: 8px;
  flex-wrap: nowrap;
}
.admin-table-actions .btn {
  padding: 8px 12px;
  min-width: 84px;
}
.admin-table-leads td:last-child {
  min-width: 280px;
  white-space: normal;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stack-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-media-wrap { margin-left: -28px; }
  .hero-tech { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero h1 { max-width: 18ch; }
  .hero-cap-strip { padding-bottom: 18px; }
  .hero-image-container { height: 320px; }
}

@media (min-width: 750px) and (max-width: 1000px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media-wrap { margin-left: 0; }
  .hero h1 { font-size: clamp(2.2rem, 5.1vw, 3.2rem); max-width: 18ch; }
  .hero p { max-width: 62ch; }
  .hero-image-container { height: 360px; }
  .hero-tech { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-deliverables-section .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .differentials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .stack-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 980px) {
  .differentials__grid { grid-template-columns: 1fr; }
  .diff-card__media { height: 178px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-context { position: static; top: auto; }
}

@media (min-width: 750px) and (max-width: 980px) {
  .differentials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .section { padding: 56px 0; }
  .page-head { padding-top: 24px; padding-bottom: 10px; }
  .page-head + .section { padding-top: 18px; }
  .nav-menu, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-block; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-media-wrap { margin-left: 0; }
  .hero-tech { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { max-width: none; }
  .hero-cap-strip { padding: 8px 0 14px; }
  .home-deliverables-section { padding-top: 32px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .stack-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-section { padding-top: 52px; padding-bottom: 26px; }
  .final-cta-section { padding-top: 24px; }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-step {
    padding-left: 0;
    align-items: flex-start;
    text-align: left;
  }
  .process-step::after {
    left: 27px;
    right: auto;
    top: 62px;
    bottom: -18px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(47, 107, 255, .28), rgba(20, 184, 166, .2));
  }
  .process-step:last-child::after {
    display: none;
  }
  .process-step__head {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
  }
  .process-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .process-step__icon svg {
    width: 24px;
    height: 24px;
  }
  .process-step p {
    max-width: 100%;
  }
  .process-banner {
    min-height: 270px;
    background: linear-gradient(180deg, rgba(7, 16, 33, .78) 0%, rgba(7, 16, 33, .56) 45%, rgba(7, 16, 33, .34) 100%);
  }
  .contact-form { grid-template-columns: 1fr; padding: 18px; }
  .field-2, .field-full { grid-column: auto; }
  .admin-login-section { padding-top: 44px; }
  .admin-login-form { padding: 20px; }
  .admin-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .admin-inline-form {
    grid-template-columns: 1fr;
  }
  .admin-list-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-table {
    min-width: 680px;
  }
}

@media (max-width:768px){
  .hero-image-container { height: 260px; }
  .hero-carousel-btn{
    width: 34px;
    height: 34px;
    font-size: 15px;
    opacity: 1;
    visibility: visible;
  }
  .tech-chip{
    font-size:13px;
    padding:6px 12px;
  }
  .process-banner-section {
    padding-top: 8px;
    padding-bottom: 18px;
  }
  .process-banner {
    min-height: 240px;
  }
  .process-banner__content {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .home-deliverables-section .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stack-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stack-logo-card { min-height: 118px; }
  .home-deliverables-section .card { padding: 14px; }
  .home-deliverables-section .card__media { aspect-ratio: 16 / 13; margin-bottom: 10px; border-radius: 10px; }
  .home-deliverables-section .card__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    margin-bottom: 8px;
  }
  .home-deliverables-section .card__icon svg { width: 17px; height: 17px; }
  .home-deliverables-section .card h3 { font-size: 1.14rem; margin-bottom: 6px; }
  .home-deliverables-section .card p { font-size: .98rem; line-height: 1.4; }
  .diff-card__media { height: 142px; }
  .diff-card__media img {
    filter: saturate(.9) contrast(1.08) brightness(.9);
    opacity: .95;
  }
}

@media (max-width: 420px) {
  .home-deliverables-section .grid-4 { grid-template-columns: 1fr; }
  .home-deliverables-section .card__media { aspect-ratio: 16 / 12.6; }
  .stack-logos { grid-template-columns: 1fr; }
}
