:root {
  --bg: #f7f9fc;
  --bg-grad: #eef3fb;
  --text: #0f2237;
  --muted: #5a6e85;
  --navy: #112d4e;
  --line: #d7e2ee;
  --card: #ffffff;
  --surface-soft: #f2f6fb;
  --accent: #9e6a45;
  --teal: #128f9a;
  --header-bg: rgba(247, 249, 252, 0.92);
  --banner-bg: #133a60;
  --banner-border: rgba(255, 255, 255, 0.22);
  --banner-shadow: 0 12px 28px rgba(16, 44, 76, 0.28);
  --hero-panel-bg: linear-gradient(155deg, #0f2d4d 0%, #14365a 100%);
  --hero-panel-text: #f3f8ff;
  --hero-panel-muted: #bad3ed;
  --proof-bg: #ffffff;
  --alt-bg: linear-gradient(180deg, #f1f5fb 0%, #edf3fa 100%);
  --contact-bg: linear-gradient(145deg, #edf4fc 0%, #e4effb 100%);
  --contact-text: #123454;
  --contact-muted: #486b8a;
  --contact-label: #2a5479;
  --contact-link: #133a60;
  --contact-panel-border: rgba(33, 85, 129, 0.22);
  --contact-panel-bg: rgba(255, 255, 255, 0.72);
  --contact-input-border: rgba(67, 112, 150, 0.34);
  --contact-input-bg: #ffffff;
  --contact-input-focus: rgba(47, 126, 197, 0.4);
  --contact-active-cta: rgba(19, 58, 96, 0.18);
  --contact-shadow: 0 18px 34px rgba(19, 58, 96, 0.12);
  --shadow: 0 16px 40px rgba(16, 44, 76, 0.08);
}

html[data-theme="dark"] {
  --bg: #060f1b;
  --bg-grad: #0f243b;
  --text: #e8f1fb;
  --muted: #a7bcd3;
  --navy: #d7e9ff;
  --line: rgba(137, 170, 204, 0.3);
  --card: #0d1f33;
  --surface-soft: #13283f;
  --accent: #c69064;
  --teal: #58c9d3;
  --header-bg: rgba(6, 15, 27, 0.9);
  --banner-bg: #0f3256;
  --banner-border: rgba(179, 210, 242, 0.3);
  --banner-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  --hero-panel-bg: linear-gradient(155deg, #0f3356 0%, #17446f 100%);
  --hero-panel-text: #f1f7ff;
  --hero-panel-muted: #d1e1f2;
  --proof-bg: #09192b;
  --alt-bg: linear-gradient(180deg, #0a1a2d 0%, #102439 100%);
  --contact-bg: linear-gradient(145deg, #0e3152 0%, #194972 100%);
  --contact-text: #f0f7ff;
  --contact-muted: #d2e4f7;
  --contact-label: #b6d0ea;
  --contact-link: #ffffff;
  --contact-panel-border: rgba(183, 212, 240, 0.35);
  --contact-panel-bg: rgba(8, 27, 45, 0.22);
  --contact-input-border: rgba(183, 212, 240, 0.35);
  --contact-input-bg: rgba(8, 27, 45, 0.32);
  --contact-input-focus: rgba(117, 186, 240, 0.55);
  --contact-active-cta: rgba(255, 255, 255, 0.16);
  --contact-shadow: 0 20px 46px rgba(9, 30, 52, 0.3);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, var(--bg-grad) 0%, var(--bg) 42%);
  line-height: 1.6;
  transition: background 250ms ease, color 250ms ease;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  margin-bottom: 0.75rem;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, rgba(9, 28, 47, 0.96) 0%, rgba(15, 50, 83, 0.96) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(179, 210, 242, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.brand-logo {
  width: clamp(210px, 22vw, 320px);
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: #cfe0f2;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  border-bottom-color: #c69064;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn,
.lang-select,
.icon-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.btn {
  white-space: nowrap;
}

.btn:hover,
.lang-select:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #133a60 0%, #1b4e7e 100%);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 45, 78, 0.2);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface-soft);
}

.lang-select,
.icon-btn {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface-soft);
}

.lang-select {
  width: auto;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  text-align-last: center;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) calc(1em + 2px),
    calc(100% - 0.72rem) calc(1em + 2px);
  background-size: 0.3rem 0.3rem, 0.3rem 0.3rem;
  background-repeat: no-repeat;
  padding: 0.44rem 1.5rem 0.44rem 0.9rem;
}

.site-header .lang-select,
.site-header .icon-btn {
  border-color: rgba(179, 210, 242, 0.34);
  color: #e8f1fb;
  background: rgba(8, 27, 45, 0.34);
}

.site-header .lang-select:hover,
.site-header .icon-btn:hover {
  border-color: rgba(198, 144, 100, 0.75);
  background: rgba(16, 52, 84, 0.6);
}

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.icon-btn.is-dark {
  color: #ffd16a;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 3.5rem 0 2.3rem;
}

.hero-single {
  grid-template-columns: 1fr;
}

.hero-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 63ch;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.hero-panel {
  background: var(--hero-panel-bg);
  border-radius: 24px;
  color: var(--hero-panel-text);
  padding: 1.4rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 20px 44px rgba(8, 32, 56, 0.35);
}

.hero-symbol {
  width: min(290px, 100%);
  margin: 0 auto;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric-grid article {
  border: 1px solid rgba(225, 237, 252, 0.25);
  border-radius: 14px;
  padding: 0.75rem;
  background: rgba(5, 24, 43, 0.35);
}

.metric-grid strong {
  display: block;
  font-size: 1.2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.metric-grid span {
  font-size: 0.8rem;
  color: var(--hero-panel-muted);
}

.pipeline-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(17, 45, 78, 0.06) 0%, rgba(18, 143, 154, 0.08) 100%);
}

html[data-theme="dark"] .pipeline-band {
  background: linear-gradient(135deg, rgba(16, 60, 98, 0.3) 0%, rgba(21, 96, 126, 0.23) 100%);
}

.pipeline-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.1rem 0;
}

.pipeline-head h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.pipeline-head .eyebrow {
  color: var(--teal);
}

.pipeline-head p {
  margin: 0;
  color: var(--muted);
}

.elt-canvas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  background: linear-gradient(160deg, rgba(17, 45, 78, 0.14) 0%, rgba(17, 45, 78, 0.04) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .elt-canvas {
  background: linear-gradient(160deg, rgba(10, 44, 74, 0.4) 0%, rgba(10, 44, 74, 0.14) 100%);
}

.elt-canvas::before {
  content: "";
  position: absolute;
  inset: auto -14% -58% auto;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(18, 143, 154, 0.25) 0%, rgba(18, 143, 154, 0) 72%);
  pointer-events: none;
}

.elt-stage {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
  min-height: 120px;
  padding: 0.8rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
}

.elt-stage h3 {
  margin: 0;
  font-size: 1rem;
}

.elt-stage p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--muted);
}

.elt-stage-extract {
  border-color: rgba(18, 143, 154, 0.45);
}

.elt-stage-load {
  border-color: rgba(158, 106, 69, 0.45);
}

.elt-stage-transform {
  border-color: rgba(27, 78, 126, 0.45);
}

.elt-connector {
  position: relative;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 45, 78, 0.2) 0%, rgba(18, 143, 154, 0.65) 100%);
  border-radius: 999px;
}

html[data-theme="dark"] .elt-connector {
  background: linear-gradient(90deg, rgba(138, 176, 212, 0.25) 0%, rgba(88, 201, 211, 0.8) 100%);
}

.elt-pulse {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #58c9d3;
  box-shadow: 0 0 0 5px rgba(88, 201, 211, 0.16);
  transform: translate(-50%, -50%);
  animation: flow-x 2.2s linear infinite;
}

.elt-pulse.pulse-2 {
  animation-delay: 1.1s;
}

@keyframes flow-x {
  0% {
    left: 0%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes flow-y {
  0% {
    top: 0%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.tag-list li {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: 3rem 0;
}

.page-intro {
  padding-bottom: 0.9rem;
}

.compact-top {
  padding-top: 0;
}

.section-alt {
  background: var(--alt-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.blog-intro {
  padding-bottom: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.7rem;
}

.blog-card-feature {
  grid-column: span 2;
  background: linear-gradient(155deg, rgba(17, 45, 78, 0.08) 0%, rgba(18, 143, 154, 0.05) 100%), var(--card);
}

html[data-theme="dark"] .blog-card-feature {
  background: linear-gradient(155deg, rgba(17, 71, 113, 0.26) 0%, rgba(15, 95, 108, 0.18) 100%), var(--card);
}

.blog-card-cover {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-soft);
}

.blog-card-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6.8;
  object-fit: cover;
  object-position: center 6%;
  filter: saturate(0.94) contrast(1.02);
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-title-link {
  color: inherit;
  text-decoration: none;
}

.blog-title-link:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-meta span {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-link {
  justify-self: start;
}

.blog-author-inline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.blog-author-inline img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.blog-author-inline strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
}

.blog-author-link {
  color: inherit;
  text-decoration: none;
}

.blog-author-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.blog-published-date {
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.post-shell {
  padding-top: 2.2rem;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.post-back:hover {
  color: var(--text);
}

.post-header {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.post-header h1 {
  margin-bottom: 0.6rem;
}

.post-cover {
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.post-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.9;
  object-fit: cover;
  object-position: center 6%;
  filter: saturate(0.94) contrast(1.02);
}

.post-author {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-author img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.post-author-name {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.28;
}

.post-author-date {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.post-author-link {
  color: inherit;
  text-decoration: none;
}

.post-author-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.post-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.post-content h2 {
  margin: 1.5rem 0 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.post-content ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.post-content li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.card-grid,
.segment-grid,
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.segment-grid article,
.process-grid article,
.quick-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.quick-card {
  text-decoration: none;
}

.quick-card h3,
.card h3,
.segment-grid h3,
.process-grid h3 {
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 1.03rem;
}

.quick-card p,
.card p,
.segment-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.quick-card:hover {
  border-color: var(--accent);
}

.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-grid span {
  display: inline-block;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-box {
  background: var(--contact-bg);
  color: var(--contact-text);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--contact-shadow);
}

.contact-box h2 {
  margin-bottom: 0.4rem;
}

.contact-box p {
  color: var(--contact-muted);
}

.contact-list {
  display: grid;
  gap: 0.35rem;
}

.contact-list p {
  margin: 0;
}

.contact-list span {
  color: var(--contact-label);
  font-weight: 700;
}

.contact-list a {
  color: var(--contact-link);
}

.contact-actions {
  margin-top: 1rem;
}

.booking-panel {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--contact-panel-border);
  border-radius: 16px;
  background: var(--contact-panel-bg);
}

.booking-intro {
  margin: 0 0 0.8rem;
  color: var(--contact-muted);
}

.form-shell {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  display: grid;
  gap: 0.8rem;
}

.form-shell-compact {
  background: transparent;
  border: 0;
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.contact-box .field label {
  color: var(--contact-text);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  color: var(--text);
  background: var(--surface-soft);
}

.contact-box .field input,
.contact-box .field textarea,
.contact-box .field select {
  border-color: var(--contact-input-border);
  background: var(--contact-input-bg);
  color: var(--contact-text);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(47, 126, 197, 0.4);
  outline-offset: 1px;
}

.contact-box .field input:focus,
.contact-box .field textarea:focus,
.contact-box .field select:focus {
  outline-color: var(--contact-input-focus);
}

.form-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.form-status {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  min-height: 1.2rem;
}

.form-status-light {
  color: var(--contact-muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.active-cta {
  box-shadow: 0 0 0 2px var(--contact-active-cta) inset;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--proof-bg);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  color: var(--muted);
  padding: 1rem 0 1.2rem;
  font-size: 0.9rem;
}

body.has-cookie-banner .footer-wrap {
  padding-bottom: 6.3rem;
}

.footer-primary,
.footer-meta {
  display: grid;
  gap: 0.3rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-primary p,
.footer-meta p {
  margin: 0;
}

.footer-wrap a {
  color: var(--text);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: auto;
  font-size: 0.82rem;
}

.footer-link-btn {
  border: 0;
  background: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
}

.footer-links a,
.footer-link-btn {
  text-underline-offset: 0.14rem;
}

.footer-links a:hover,
.footer-link-btn:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.social-links .social-link-telegram,
.social-links .social-link-whatsapp {
  color: #133a60;
}

html[data-theme="dark"] .social-links .social-link-telegram,
html[data-theme="dark"] .social-links .social-link-whatsapp {
  color: #ffffff;
}

.social-links a:hover {
  border-color: var(--accent);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  display: block;
  object-fit: contain;
}

.social-icon-linkedin {
  width: 1.05rem;
  height: 1.05rem;
}

html[data-theme="dark"] .social-icon-linkedin {
  filter: invert(1) brightness(1.12);
}

.social-link-telegram .social-icon {
  transform: translate(0.022rem, -0.012rem);
}

.social-link-whatsapp .social-icon {
  transform: translate(0.012rem, -0.006rem);
}

.social-link-linkedin .social-icon-linkedin {
  transform: translate(0.008rem, -0.014rem);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 1.5rem));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
}

.cookie-banner[hidden] {
  display: none;
}

@media (max-width: 1150px) {
  .quick-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-feature {
    grid-column: span 1;
  }
}

@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .main-nav {
    order: 3;
    grid-column: span 2;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .pipeline-shell {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  body.has-cookie-banner .footer-wrap {
    padding-bottom: 7.2rem;
  }
}

@media (max-width: 760px) {
  .card-grid,
  .segment-grid,
  .metric-grid,
  .form-grid,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .post-author {
    align-items: flex-start;
  }

  .blog-card-cover img {
    aspect-ratio: 16 / 8.6;
    object-position: center 5%;
  }

  .post-cover img {
    aspect-ratio: 16 / 7.8;
    object-position: center 5%;
  }

  .elt-canvas {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .elt-connector {
    width: 2px;
    height: 54px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(17, 45, 78, 0.2) 0%, rgba(18, 143, 154, 0.65) 100%);
  }

  .elt-pulse {
    left: 50%;
    animation-name: flow-y;
  }

  .elt-pulse.pulse-2 {
    animation-delay: 1.1s;
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .cookie-banner {
    bottom: 0.6rem;
    padding: 0.75rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    text-align: center;
  }
}
