/* WordPress page styles: layout, cards, hero visuals, animation polish, and responsive rules. */
.technology-page {
  background: #f7f9ff;
  color: #09124a;
}

.technology-page .site-header .nav-shell {
  max-width: 1360px;
}

.technology-page main .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: var(--section-badge-height);
  margin: 0 0 18px;
  border: 1px solid var(--qode-logo-blue);
  border-radius: var(--qode-pill);
  background: var(--qode-logo-blue);
  color: #fff;
  padding: 8px 18px;
  box-shadow: 0 10px 24px rgba(22, 65, 125, .18);
  font-size: var(--section-badge-font);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

/* Shared technology hero: reusable banner frame for all technology service pages. */
.tech-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px 0 56px;
  background:
    radial-gradient(circle at 78% 22%, rgba(134, 79, 254, .16), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(47, 128, 255, .12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(238, 245, 255, .96)),
    url("../images/banner/hero-light-wave-bg.png") center bottom / cover no-repeat;
}

.tech-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 104, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 104, 255, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .78), transparent 82%);
  animation: techGridDrift 22s linear infinite;
}

.tech-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
}

.tech-hero h1,
.tech-section h2 {
  margin: 0;
  color: #07114b;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line);
  letter-spacing: 0;
}

.tech-hero h1 span,
.tech-section h2 span {
  background: var(--qode-deon-fill-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tech-hero__copy > p:not(.eyebrow),
.tech-section__intro p,
.tech-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(18, 27, 72, .72);
  font-size: var(--section-copy-size);
  font-weight: 400;
  line-height: var(--section-copy-line);
}

.tech-hero__copy > p:not(.eyebrow)::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ff, #864ffe);
}

.tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tech-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.tech-proof-row span {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid rgba(209, 219, 241, .76);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 42px rgba(22, 65, 125, .08);
  padding: 14px;
  backdrop-filter: blur(16px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.tech-proof-row span:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 104, 255, .28);
  box-shadow: 0 22px 52px rgba(22, 65, 125, .13);
}

.tech-proof-row strong {
  display: block;
  color: #07114b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.tech-proof-row small {
  display: block;
  margin-top: 8px;
  color: rgba(18, 27, 72, .66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

/* Hero visual: temporary technology dashboard with page-specific background image support. */
.tech-hero__visual {
  position: relative;
  min-width: 0;
}

.tech-visual-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(209, 219, 241, .8);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .2)),
    var(--tech-hero-image) right center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(22, 65, 125, .16);
  transform: translateZ(0);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.tech-visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px dashed rgba(47, 104, 255, .34);
  border-radius: 24px;
  pointer-events: none;
}

.tech-visual-card::after {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .72), transparent 18%),
    linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, .34) 48%, transparent 62%);
  mix-blend-mode: screen;
  opacity: .5;
  transform: translate3d(-6%, -4%, 0);
  animation: techVisualGlow 8s ease-in-out infinite;
}

.tech-visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 104, 255, .26);
  box-shadow: 0 36px 100px rgba(22, 65, 125, .2);
}

.tech-visual-card--banner {
  aspect-ratio: 1693 / 929;
  min-height: 0;
  background: var(--tech-hero-image) center / cover no-repeat;
}

.tech-visual-card--banner::before {
  inset: 14px;
  border-color: rgba(255, 255, 255, .58);
  opacity: .62;
}

.tech-visual-card--banner .tech-dashboard,
.tech-visual-card--banner .tech-floating-card {
  display: none;
}

.tech-dashboard,
.tech-floating-card {
  z-index: 3;
  border: 1px solid rgba(209, 219, 241, .86);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 58px rgba(22, 65, 125, .14);
  backdrop-filter: blur(18px);
}

.tech-dashboard {
  position: absolute;
  left: 28px;
  bottom: 26px;
  width: min(68%, 430px);
  border-radius: 18px;
  padding: 18px;
}

.tech-dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tech-dashboard__head strong {
  color: #07114b;
  font-size: 15px;
  line-height: 1.1;
}

.tech-dashboard__head span {
  color: #0aa36e;
  font-size: 12px;
  font-weight: 800;
}

.tech-dashboard__bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
  margin-top: 18px;
}

.tech-dashboard__bars i {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #2f80ff, #864ffe);
}

.tech-dashboard__bars i:nth-child(1) { height: 38%; }
.tech-dashboard__bars i:nth-child(2) { height: 58%; }
.tech-dashboard__bars i:nth-child(3) { height: 48%; }
.tech-dashboard__bars i:nth-child(4) { height: 76%; }
.tech-dashboard__bars i:nth-child(5) { height: 92%; }

.tech-floating-card {
  position: absolute;
  right: 24px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  width: min(46%, 270px);
  border-radius: 18px;
  padding: 14px;
}

.tech-floating-card--top { top: 28px; }
.tech-floating-card--middle { top: 142px; right: 64px; }
.tech-floating-card--bottom { right: 38px; bottom: 30px; }

.tech-floating-card strong {
  display: block;
  color: #07114b;
  font-size: 13px;
  line-height: 1.18;
}

.tech-floating-card small {
  display: block;
  margin-top: 4px;
  color: rgba(18, 27, 72, .6);
  font-size: 11px;
  font-weight: 700;
}

.tech-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background:
    var(--tech-icon-url) center / 25px 25px no-repeat,
    linear-gradient(135deg, rgba(47, 128, 255, .14), rgba(134, 79, 254, .12));
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.tech-icon--cloud { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H7a5 5 0 1 1 1.1-9.88A7 7 0 0 1 21 12a3.5 3.5 0 0 1-3.5 7Z'/%3E%3C/svg%3E"); }
.tech-icon--flow { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='18' cy='6' r='3'/%3E%3Ccircle cx='12' cy='18' r='3'/%3E%3Cpath d='M8.6 7.6 10.8 15'/%3E%3Cpath d='M15.4 7.6 13.2 15'/%3E%3C/svg%3E"); }
.tech-icon--agent { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='8' width='14' height='10' rx='3'/%3E%3Cpath d='M12 4v4'/%3E%3Ccircle cx='9' cy='13' r='1'/%3E%3Ccircle cx='15' cy='13' r='1'/%3E%3Cpath d='M9.5 17h5'/%3E%3C/svg%3E"); }
.tech-icon--shield { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-5'/%3E%3C/svg%3E"); }
.tech-icon--chart { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 20h18'/%3E%3Cpath d='M6 16v-4'/%3E%3Cpath d='M11 16V8'/%3E%3Cpath d='M16 16v-6'/%3E%3Cpath d='m5 10 5-5 4 4 5-7'/%3E%3Cpath d='M19 2v5h-5'/%3E%3C/svg%3E"); }
.tech-icon--settings { --tech-icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 24 24' fill='none' stroke='%232f68ff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 15.5A3.5 3.5 0 1 0 12 8a3.5 3.5 0 0 0 0 7.5Z'/%3E%3Cpath d='M19.4 15a1.7 1.7 0 0 0 .34 1.88l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06A1.7 1.7 0 0 0 15 19.4a1.7 1.7 0 0 0-1 .6 1.7 1.7 0 0 0-.4 1.1V21a2 2 0 0 1-4 0v-.09A1.7 1.7 0 0 0 8.6 19.4a1.7 1.7 0 0 0-1.88.34l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06A1.7 1.7 0 0 0 4.6 15a1.7 1.7 0 0 0-.6-1 1.7 1.7 0 0 0-1.1-.4H3a2 2 0 0 1 0-4h.09A1.7 1.7 0 0 0 4.6 8.6a1.7 1.7 0 0 0-.34-1.88l-.06-.06A2 2 0 1 1 7.03 3.83l.06.06A1.7 1.7 0 0 0 9 4.6a1.7 1.7 0 0 0 1-.6 1.7 1.7 0 0 0 .4-1.1V3a2 2 0 0 1 4 0v.09A1.7 1.7 0 0 0 15.4 4.6a1.7 1.7 0 0 0 1.88-.34l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06A1.7 1.7 0 0 0 19.4 9c.38.1.72.3 1 .6.3.3.5.65.6 1H21a2 2 0 0 1 0 4h-.09A1.7 1.7 0 0 0 19.4 15Z'/%3E%3C/svg%3E"); }

/* Content sections: compact cards and split layouts shared across technology pages. */
.tech-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 5vw, 78px) 0;
}

.tech-section > .container {
  position: relative;
  z-index: 1;
}

.tech-section--white { background: #fff; }

.tech-section--soft {
  background:
    radial-gradient(circle at 84% 16%, rgba(47, 128, 255, .1), transparent 26%),
    linear-gradient(180deg, #f5f8ff, #eef5ff);
}

.tech-section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .72), transparent 22%),
    radial-gradient(circle at 86% 76%, rgba(87, 184, 224, .12), transparent 28%);
  opacity: .7;
  animation: techSectionBreath 10s ease-in-out infinite;
}

.tech-section--dark {
  background:
    radial-gradient(circle at 84% 14%, rgba(47, 128, 255, .18), transparent 32%),
    linear-gradient(180deg, #071e45, #041634);
  color: #fff;
}

.tech-section--dark .eyebrow {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .12);
}

.tech-section--dark h2,
.tech-section--dark .tech-card h3,
.tech-section--dark .tech-step strong {
  color: #fff;
}

.tech-section--dark .tech-section__intro p,
.tech-section--dark .tech-card p,
.tech-section--dark .tech-step p {
  color: rgba(255, 255, 255, .76);
}

.tech-section__intro {
  max-width: 100%;
  margin-bottom: 28px;
}

.tech-section__intro p {
  max-width: 100%;
}

.tech-split {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.tech-leader-section {
  background:
    linear-gradient(135deg, rgba(6, 20, 58, .96), rgba(4, 18, 48, .98)),
    linear-gradient(45deg, transparent 24%, rgba(0, 188, 242, .22) 25%, transparent 26%),
    linear-gradient(135deg, transparent 44%, rgba(47, 128, 255, .18) 45%, transparent 46%);
}

.tech-leader-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 440px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.tech-leader-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line);
}

.tech-client-strip {
  max-width: 720px;
  margin-top: 34px;
  border-top: 1px solid rgba(87, 184, 224, .45);
  padding-top: 28px;
}

.tech-client-strip strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.tech-client-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.tech-client-logos span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.tech-client-logos img {
  display: block;
  width: 100%;
  max-width: 118px;
  max-height: 52px;
  object-fit: contain;
}

.tech-consult-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .25);
  padding: 22px;
}

.tech-consult-card h3 {
  margin: 0 0 18px;
  color: #06143a;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.tech-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tech-consult-card label {
  display: grid;
  gap: 0;
}

.tech-consult-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tech-consult-card input,
.tech-consult-card textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 75, .22);
  border-radius: 12px;
  background: #fff;
  color: #07114b;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.tech-consult-card textarea {
  min-height: 96px;
  margin-top: 12px;
  resize: vertical;
}

.tech-consult-card input:focus,
.tech-consult-card textarea:focus {
  border-color: rgba(47, 128, 255, .62);
  box-shadow: 0 0 0 4px rgba(47, 128, 255, .12);
}

.tech-consult-card .btn {
  width: min(190px, 100%);
  margin: 16px 0 0 auto;
}

.tech-consult-card .form-status {
  margin: 10px 0 0;
  color: #07114b;
  font-size: 12px;
  font-weight: 700;
}

.tech-media-panel {
  position: relative;
  overflow: hidden;
  justify-self: center;
  width: min(100%, 500px);
  border: 1px solid rgba(209, 219, 241, .8);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(22, 65, 125, .12);
  transform: translateZ(0);
  transition: transform .38s var(--ease), border-color .38s var(--ease), box-shadow .38s var(--ease);
}

.tech-media-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 104, 255, .24);
  box-shadow: 0 30px 82px rgba(22, 65, 125, .16);
}

.tech-media-panel img {
  display: block;
  width: 100%;
  height: clamp(240px, 26vw, 330px);
  object-fit: contain;
  background: #fff;
  transform: scale(1);
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.tech-media-panel:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.tech-media-panel--woocommerce-capabilities {
  width: min(100%, 430px);
  border-radius: 18px;
}

.tech-media-panel--woocommerce-capabilities img {
  height: auto;
  object-fit: contain;
}

.tech-media-panel--logo {
  background: #fff;
}

.tech-media-panel--logo img {
  height: clamp(220px, 24vw, 300px);
  object-fit: contain;
  padding: 24px;
}

.shopify-partner-section .tech-section__intro {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.shopify-partner-section .tech-section__intro p:not(.eyebrow) {
  max-width: 100%;
}

.shopify-partner-panel {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 620px;
  margin: 10px auto 0;
  border: 1px solid rgba(209, 219, 241, .78);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(22, 65, 125, .1);
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  transition: transform .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}

.shopify-partner-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 104, 255, .24);
  box-shadow: 0 30px 82px rgba(22, 65, 125, .15);
}

.shopify-partner-panel img {
  display: block;
  width: min(100%, 300px);
  max-height: 96px;
  object-fit: contain;
}

.shopify-partner-panel .btn {
  min-height: 42px;
  padding-inline: 22px;
}

.tech-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tech-module-card {
  border: 1px solid rgba(209, 219, 241, .78);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(22, 65, 125, .08);
  padding: 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.tech-module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 104, 255, .22);
  box-shadow: 0 26px 70px rgba(22, 65, 125, .14);
}

.tech-module-card h3 {
  margin: 16px 0 0;
  color: #07114b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
}

.tech-module-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ff, #864ffe);
}

.tech-module-card p {
  margin: 14px 0 0;
  color: rgba(18, 27, 72, .7);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.tech-feature-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tech-feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(18, 27, 72, .66);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
}

.tech-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f80ff, #864ffe);
}

.tech-support-card-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.tech-support-card-list .tech-card {
  min-height: auto;
}

.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tech-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(209, 219, 241, .78);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 48px rgba(22, 65, 125, .08);
  padding: 20px;
  transform: translateZ(0);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease);
}

.tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(87, 184, 224, .12), transparent 34%),
    linear-gradient(135deg, rgba(47, 128, 255, .08), transparent 38%);
  opacity: 0;
  transition: opacity .32s var(--ease);
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 104, 255, .22);
  box-shadow: 0 26px 70px rgba(22, 65, 125, .14);
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-app-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.tech-card h3 {
  margin: 16px 0 0;
  color: #07114b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
}

.tech-card__media {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 138px;
  margin: -6px -6px 16px;
  border-radius: 12px;
  background: #f4f8ff;
  border: 1px solid rgba(209, 219, 241, .72);
}

.tech-card__media img {
  display: block;
  width: 100%;
  height: 138px;
  object-fit: cover;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.tech-card:hover .tech-card__media img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.tech-card__image-icon,
.tech-step__image-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--qode-logo-blue), #1f66c9);
  border: 1px solid rgba(87, 184, 224, .34);
  box-shadow: 0 12px 28px rgba(22, 65, 125, .18);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.tech-card__image-icon img,
.tech-step__image-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tech-card:hover .tech-card__image-icon,
.tech-step:hover .tech-step__image-icon,
.tech-module-card:hover .tech-icon,
.tech-floating-card:hover .tech-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(22, 65, 125, .22);
}

.tech-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ff, #864ffe);
}

.tech-card p,
.tech-step p {
  margin: 14px 0 0;
  color: rgba(18, 27, 72, .68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.tech-app-card__cta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 16px;
  border: 1px solid rgba(22, 65, 125, .2);
  border-radius: 999px;
  background: rgba(22, 65, 125, .06);
  color: var(--qode-logo-blue);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.tech-app-card:hover .tech-app-card__cta {
  border-color: var(--qode-logo-blue);
  background: var(--qode-logo-blue);
  color: #fff;
}

.woocommerce-benefit-grid {
  gap: 18px;
}

.woocommerce-benefit-grid .tech-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(87, 184, 224, .13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92));
}

.woocommerce-benefit-grid .tech-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #2f80ff, #864ffe);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.woocommerce-benefit-grid .tech-card:hover::before {
  opacity: 1;
}

.woocommerce-benefit-grid .tech-card__image-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.woocommerce-benefit-grid .tech-card h3 {
  margin-top: 16px;
}

.woocommerce-benefit-grid .tech-card p {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
}

.tech-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tech-step {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  padding: 20px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.tech-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

.tech-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.tech-step .tech-step__image-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, .82));
  color: inherit;
}

.tech-step strong {
  display: block;
  margin-top: 18px;
  color: #07114b;
  font-size: 16px;
  line-height: 1.2;
}

.tech-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tech-payment-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid rgba(209, 219, 241, .78);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(22, 65, 125, .08);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.tech-payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 104, 255, .22);
  box-shadow: 0 24px 58px rgba(22, 65, 125, .13);
}

.tech-payment-card img {
  display: block;
  max-width: 132px;
  max-height: 44px;
  object-fit: contain;
  transition: transform .28s var(--ease);
}

.tech-payment-card:hover img {
  transform: scale(1.035);
}

.tech-cta {
  padding: 42px 0;
}

@keyframes techGridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 54px 54px, 54px 54px; }
}

@keyframes techVisualGlow {
  0%, 100% {
    opacity: .36;
    transform: translate3d(-8%, -5%, 0) rotate(0deg);
  }

  50% {
    opacity: .58;
    transform: translate3d(7%, 5%, 0) rotate(2deg);
  }
}

@keyframes techSectionBreath {
  0%, 100% {
    opacity: .55;
    transform: scale(1);
  }

  50% {
    opacity: .82;
    transform: scale(1.02);
  }
}

@media (max-width: 1180px) {
  .tech-hero__grid,
  .tech-split {
    grid-template-columns: 1fr;
  }

  .tech-card-grid,
  .tech-card-grid--four,
  .tech-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 820px) and (min-width: 821px) {
  .tech-hero {
    padding: 92px 0 36px;
  }

  .tech-visual-card {
    min-height: 360px;
  }

  .tech-proof-row span {
    min-height: 72px;
    padding: 12px;
  }
}

@media (max-width: 820px) {
  .tech-hero {
    min-height: auto;
    padding: 112px 0 42px;
  }

  .tech-hero h1,
  .tech-section h2 {
    font-size: 30px;
  }

  .tech-proof-row,
  .tech-card-grid,
  .tech-card-grid--four,
  .tech-payment-grid,
  .tech-module-grid,
  .tech-step-grid {
    grid-template-columns: 1fr;
  }

  .tech-visual-card {
    min-height: 420px;
  }

  .tech-dashboard {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .tech-floating-card {
    right: 16px;
    width: min(72%, 250px);
  }

  .tech-floating-card--middle {
    right: 16px;
  }
}

@media (max-width: 560px) {
  .tech-hero__actions {
    flex-direction: column;
  }

  .tech-hero__actions .btn {
    width: 100%;
  }

  .tech-visual-card {
    min-height: 470px;
    border-radius: 20px;
  }

  .tech-dashboard {
    bottom: 16px;
    padding: 14px;
  }

  .tech-floating-card {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-service-page .tech-hero::before,
  .technology-service-page .tech-visual-card::after,
  .technology-service-page .tech-section--soft::before {
    animation: none;
  }

  .technology-service-page .tech-proof-row span,
  .technology-service-page .tech-visual-card,
  .technology-service-page .tech-media-panel,
  .technology-service-page .shopify-partner-panel,
  .technology-service-page .tech-card,
  .technology-service-page .tech-card__media img,
  .technology-service-page .tech-card__image-icon,
  .technology-service-page .tech-step,
  .technology-service-page .tech-step__image-icon,
  .technology-service-page .tech-payment-card,
  .technology-service-page .tech-payment-card img {
    transition: none;
  }
}

.technology-page .site-header {
  background: transparent;
}

.technology-page .tech-hero {
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 118px 0 38px;
  background:
    radial-gradient(circle at 52% 26%, rgba(117, 153, 255, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(134, 79, 254, .12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(240, 246, 255, .96)),
    url("../images/banner/hero-light-wave-bg.png") center top / cover no-repeat;
}

.technology-page .tech-hero__grid {
  min-height: calc(100vh - 156px);
}

@media (max-width: 820px) {
  .technology-page .tech-hero {
    min-height: 100vh;
    padding-top: 104px;
    padding-bottom: 34px;
  }
}

/* First viewport parity with the index banner. */
.technology-page .tech-hero {
  box-sizing: border-box;
  min-height: 100vh !important;
  height: 100vh !important;
  overflow: hidden;
}

.technology-page .tech-hero__grid,
.wp-ai-hero__inner {
  min-height: calc(100vh - 156px) !important;
}

@media (max-width: 900px) {
  .technology-page .tech-hero {
    min-height: 100svh !important;
    height: 100svh !important;
  }

  .technology-page .tech-hero__grid,
  .wp-ai-hero__inner {
    min-height: calc(100svh - 138px) !important;
  }
}

.wordpress-page .tech-hero.wp-ai-hero {
  min-height: 100vh;
  padding: 118px 0 34px;
  background: transparent;
}

.wordpress-page .wp-ai-hero::before {
  content: none;
}

.wp-ai-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 152px);
}

.wp-ai-hero__copy,
.wp-ai-hero__visual {
  position: relative;
  z-index: 1;
}

.wp-ai-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--qode-logo-blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(22, 65, 125, .18);
}

.wp-ai-hero__badge i {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wp-ai-hero__badge i svg {
  width: 18px;
  height: 18px;
}

.wordpress-page .wp-ai-hero .wp-ai-hero__copy h1 {
  max-width: 600px;
  margin: 26px 0 0;
  color: #07114b;
 font-size: clamp(30px, 2.65vw, 40px) !important;
  font-weight: 800;
  line-height: 1.08;
}

.wordpress-page .wp-ai-hero .wp-ai-hero__copy h1 span {
  background: linear-gradient(135deg, #1269ff 0%, #2f6fed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.wp-ai-hero__tagline {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(7, 17, 75, .72);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.wp-ai-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 540px;
  margin-top: 32px;
}

.wp-ai-hero__points article {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(209, 219, 241, .8);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 65, 125, .07);
  padding: 14px 16px;
}

.wp-ai-hero__point-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(22, 65, 125, .08);
  color: #16417d;
}

.wp-ai-hero__point-icon--purple {
  background: rgba(124, 58, 237, .1);
  color: #7c3aed;
}

.wp-ai-hero__point-icon--green {
  background: rgba(16, 185, 129, .1);
  color: #10b981;
}

.wp-ai-hero__point-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wp-ai-hero__points strong {
  color: #07114b;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.3;
}

.wp-ai-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.wp-ai-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  background: var(--qode-logo-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(22, 65, 125, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wp-ai-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(22, 65, 125, .28);
}

.wp-ai-hero__cta svg {
  width: 18px;
  height: 18px;
}

.wp-ai-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wp-ai-hero__trust-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, .12);
  color: #10b981;
}

.wp-ai-hero__trust-icon svg {
  width: 20px;
  height: 20px;
}

.wp-ai-hero__trust strong {
  display: block;
  color: #07114b;
  font-size: .92rem;
  font-weight: 800;
}

.wp-ai-hero__trust small {
  display: block;
  margin-top: 2px;
  color: rgba(7, 17, 75, .6);
  font-size: .8rem;
  font-weight: 600;
}

.wp-ai-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.wp-ai-hero__visual img {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 34px 58px rgba(22, 65, 125, .16));
}

@media (max-width: 1180px) {
  .wp-ai-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    justify-items: center;
  }

  .wp-ai-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
  }

  .wp-ai-hero__tagline,
  .wp-ai-hero__points {
    margin-left: auto;
    margin-right: auto;
  }

  .wp-ai-hero__actions {
    justify-content: center;
  }

  .wp-ai-hero__visual {
    /* order: -1; */
    min-height: auto;
  }

  .wp-ai-hero__visual img {
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .wordpress-page .tech-hero.wp-ai-hero {
    padding-top: 104px;
  }

  .wordpress-page .wp-ai-hero .wp-ai-hero__copy h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .wp-ai-hero__tagline {
    font-size: .98rem;
  }

  .wp-ai-hero__points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .wp-ai-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .wp-ai-hero__visual img {
    max-width: 340px;
  }
}

.wp-company-section__inner {
  align-items: center;
}

.wp-company-section__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
    background: #16417d;
    color: #fff;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.wp-company-section__badge i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
}

.wp-company-section__badge i svg {
  width: 16px;
  height: 16px;
}

.wp-company-section .wp-company-section__copy h2 {
  max-width: 580px;
  margin: 24px 0 0;
  color: #07114b;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
}

.wp-company-section .wp-company-section__copy h2 span {
  color: #2563eb;
}

.wp-company-section__copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(7, 17, 75, .72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.wp-company-section__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 560px;
  margin-top: 30px;
}

.wp-company-section__features article {
  display: flex;
  flex: 1 1 120px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(209, 219, 241, .8);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 65, 125, .07);
  padding: 22px 14px;
  text-align: center;
}

.wp-company-section__feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .1);
  color: #2563eb;
}

.wp-company-section__feature-icon--purple {
  background: rgba(124, 58, 237, .1);
  color: #7c3aed;
}

.wp-company-section__feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wp-company-section__features strong {
  color: #07114b;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
}

.wp-company-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 30px;
  border-radius: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wp-company-section__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, .3);
}

.wp-company-section__cta svg {
  width: 18px;
  height: 18px;
}

.wp-company-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-company-section__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(22, 65, 125, .14));
}

@media (max-width: 1180px) {
  .wp-company-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .wp-company-section__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wp-company-section__copy h2,
  .wp-company-section__copy p,
  .wp-company-section__features {
    margin-left: auto;
    margin-right: auto;
  }

  .wp-company-section__visual {
    /* order: -1; */
  }

  .wp-company-section__visual img {
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .wp-company-section .wp-company-section__copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .wp-company-section__features {
    gap: 12px;
  }

  .wp-company-section__features article {
    flex: 1 1 45%;
    padding: 18px 10px;
  }

  .wp-company-section__visual img {
    max-width: 340px;
  }
}
