/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
:root {
  --ink: #08111b;
  --muted: #5c6978;
  --line: rgba(12, 27, 43, 0.12);
  --blue: #0a78b5;
  --cyan: #47c7d9;
  --green: #20b486;
  --amber: #ffb84d;
  --paper: #f7fbfd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 58, 88, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(71, 199, 217, 0.18), transparent 28rem),
    linear-gradient(180deg, #eef9fc 0%, #ffffff 34%, #f8fbfa 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.load-in {
  animation: pageRise 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-load {
  animation-delay: 160ms;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.product-grid > .reveal,
.service-list > .reveal,
.industry-grid > .reveal,
.process-grid > .reveal,
.process-showcase > .reveal {
  height: 100%;
}

.product-grid > .reveal > *,
.process-grid > .reveal > *,
.process-showcase > .reveal > * {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(247, 251, 253, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.footer-brand span {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 180px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #314153;
  font-size: 0.95rem;
  font-weight: 650;
}

.desktop-nav a {
  padding: 10px 0;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.primary-button {
  color: white;
  background: linear-gradient(135deg, #086ea9, #24b6c7);
  box-shadow: 0 14px 32px rgba(10, 120, 181, 0.26);
}

.header-cta {
  padding: 0 18px;
  white-space: nowrap;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.secondary-button {
  color: #0d3149;
  background: white;
  border: 1px solid var(--line);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-nav {
  position: fixed;
  inset: 82px 16px auto 16px;
  z-index: 30;
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  color: #243448;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  align-items: center;
  grid-gap: clamp(32px, 6vw, 88px);
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100vh - 82px);
  padding: clamp(38px, 6vw, 88px) clamp(18px, 4vw, 64px) 42px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  color: #334457;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
  max-width: 650px;
}

.stats-grid div {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(10, 58, 88, 0.08);
  opacity: 0;
  animation: statPop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stats-grid strong {
  display: block;
  color: #0a6a9f;
  font-size: 1.8rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(62vw, 610px);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 7%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(10, 120, 181, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(219, 249, 252, 0.74)),
    radial-gradient(circle, rgba(71, 199, 217, 0.18), transparent 65%);
  box-shadow: var(--shadow);
  animation: softPulse 4.5s ease-in-out infinite;
}

.dashboard-frame {
  position: relative;
  width: min(96%, 720px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 28px 82px rgba(8, 17, 27, 0.18);
  animation: floatPanel 5.8s ease-in-out infinite;
}

.dashboard-frame img,
.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel {
  isolation: isolate;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08) translateX(22px);
  transition:
    opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-image.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.hero-slide-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: white;
  background: rgba(5, 24, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  font-weight: 900;
}

.metric-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 15px;
  color: #0c344f;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(10, 58, 88, 0.14);
  font-size: 0.92rem;
  font-weight: 850;
  animation: floatBadge 4.8s ease-in-out infinite;
}

.metric-card svg {
  color: var(--green);
}

.card-1,
.card-a {
  top: 15%;
  left: 0;
  animation-delay: 0ms;
}

.card-2,
.card-b {
  right: 1%;
  top: 34%;
  animation-delay: 480ms;
}

.card-3,
.card-c {
  bottom: 15%;
  left: 6%;
  animation-delay: 920ms;
}

.hero-carousel-dots {
  position: absolute;
  right: 13%;
  bottom: 9%;
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(10, 58, 88, 0.14);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.hero-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  min-height: 10px;
  background: rgba(10, 120, 181, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 200ms ease,
    background 200ms ease;
}

.hero-carousel-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.section,
.process-section,
.contact-section,
.edobiz-band {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.edobiz-band p,
.contact-section p,
.process-grid p,
.process-card p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.product-card,
.process-grid article {
  min-height: 280px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(8, 17, 27, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover,
.process-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 120, 181, 0.25);
  box-shadow: 0 26px 70px rgba(8, 17, 27, 0.12);
}

.product-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
}

.product-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3,
.process-grid h3 {
  margin: 10px 0 12px;
  font-size: 1.45rem;
}

.edobiz-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.95fr);
  grid-gap: 30px;
  gap: 30px;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 17, 27, 0.92), rgba(7, 101, 146, 0.9)),
    url("/abslogo_png.png") right 8% center / min(460px, 60vw) no-repeat;
}

.edobiz-band p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 710px;
}

.edobiz-band .label {
  color: #7fe3e6;
}

.edobiz-logo-row {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 18px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.edobiz-logo-row img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.edobiz-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.edobiz-media img,
.service-media img,
.contact-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-stack {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.feature-stack > .reveal > div,
.service-list > .reveal > div,
.industry-grid > .reveal > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.feature-stack > .reveal > div {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  transition:
    transform 200ms ease,
    background 200ms ease;
}

.feature-stack > .reveal > div:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.18);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  grid-gap: clamp(28px, 6vw, 72px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.service-copy {
  display: grid;
  grid-gap: 24px;
  gap: 24px;
}

.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.service-list > .reveal > div,
.industry-grid > .reveal > div {
  background: white;
  border: 1px solid var(--line);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.service-list > .reveal > div:hover,
.industry-grid > .reveal > div:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 180, 134, 0.28);
  box-shadow: 0 18px 44px rgba(8, 17, 27, 0.08);
}

.service-list svg {
  flex: none;
  color: var(--green);
}

.industries {
  background: #eef7f7;
}

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

.industry-grid > .reveal > div {
  justify-content: center;
  min-height: 112px;
  flex-direction: column;
  color: #17344b;
}

.industry-grid svg {
  color: var(--amber);
}

.testimonials-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 184, 77, 0.14), transparent 22rem),
    radial-gradient(circle at 85% 14%, rgba(71, 199, 217, 0.16), transparent 24rem),
    #ffffff;
}

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

.testimonial-grid > .reveal {
  height: 100%;
}

.testimonial-card {
  position: relative;
  min-height: 300px;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 120, 181, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(8, 17, 27, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.testimonial-card::before {
  position: absolute;
  top: -44px;
  right: -36px;
  width: 132px;
  height: 132px;
  content: "";
  background: radial-gradient(circle, rgba(32, 180, 134, 0.18), transparent 68%);
}

.testimonial-card:hover {
  border-color: rgba(10, 120, 181, 0.28);
  box-shadow: 0 30px 78px rgba(8, 17, 27, 0.13);
  transform: translateY(-8px);
}

.rating-row {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
  color: #ffb84d;
}

.testimonial-card p {
  color: #3c4b5c;
  font-size: 1.02rem;
  line-height: 1.75;
}

.client-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
}

.client-row > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  font-weight: 900;
}

.client-row strong,
.client-row small {
  display: block;
}

.client-row small {
  color: var(--muted);
  line-height: 1.4;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(32, 180, 134, 0.14), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(10, 120, 181, 0.16), transparent 30rem),
    linear-gradient(180deg, #ffffff, #f4fbfb);
}

/* About section styles */
.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 251, 253, 0.8));
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 0.6fr);
  grid-gap: clamp(24px, 3vw, 36px);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.about-logo img,
.about-logo picture,
.about-logo :global(img) {
  width: min(100%, 280px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(8, 17, 27, 0.06);
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-copy p {
  color: #354752;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.about-copy .secondary-button {
  align-self: flex-start;
}

.team-block {
  margin-top: 8px;
  text-align: left;
}

.team-block h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.team-slider-wrapper {
  margin-top: 18px;
}

.team-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(8, 17, 27, 0.06);
}

.team-card-media img,
.team-card-media :global(img) {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.team-card-info strong {
  display: block;
  font-size: 1.02rem;
}

.team-card-info small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.team-card-info p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

  .about-logo {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .about-grid {
    text-align: left;
  }

  .about-logo {
    justify-content: center;
    margin-bottom: 6px;
  }

  .about-copy .secondary-button {
    align-self: stretch;
    justify-content: center;
  }

  .team-block {
    text-align: left;
  }

  .team-slide {
    grid-template-columns: 1fr;
  }
}

.process-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 18px;
  gap: 18px;
  perspective: 1200px;
}

.process-line {
  position: absolute;
  top: 54px;
  left: 9%;
  right: 9%;
  height: 3px;
  overflow: hidden;
  background: rgba(10, 120, 181, 0.12);
  border-radius: 999px;
}

.process-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue), var(--amber));
  animation: processFlow 4.2s ease-in-out infinite;
}

.process-orbit {
  position: absolute;
  inset: -56px 0 auto;
  height: 180px;
  pointer-events: none;
}

.process-orbit span {
  position: absolute;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(71, 199, 217, 0.26);
  border-radius: 50%;
  animation: orbitFloat 8s ease-in-out infinite;
}

.process-orbit span:nth-child(1) {
  left: 8%;
  top: 24px;
}

.process-orbit span:nth-child(2) {
  left: 48%;
  top: 0;
  animation-delay: 800ms;
}

.process-orbit span:nth-child(3) {
  right: 9%;
  top: 34px;
  animation-delay: 1500ms;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 251, 252, 0.9)),
    white;
  border: 1px solid rgba(10, 120, 181, 0.13);
  border-radius: 8px;
  box-shadow:
    0 28px 70px rgba(8, 17, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.process-card::before {
  position: absolute;
  inset: -40% -30% auto auto;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle, rgba(71, 199, 217, 0.28), transparent 65%);
  transform: translateZ(-1px);
}

.process-card:hover {
  border-color: rgba(32, 180, 134, 0.32);
  box-shadow:
    0 34px 90px rgba(8, 17, 27, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.process-card-top strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(10, 120, 181, 0.28);
}

.process-card-top span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #0c7894;
  background: white;
  border: 1px solid rgba(10, 120, 181, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 17, 27, 0.08);
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.process-progress {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 5px;
  overflow: hidden;
  background: rgba(10, 120, 181, 0.1);
  border-radius: 999px;
}

.process-progress::after {
  display: block;
  width: 48%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: inherit;
  animation: stepPulse 2.4s ease-in-out infinite;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  grid-gap: clamp(26px, 5vw, 64px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 64px);
  color: white;
  background:
    radial-gradient(circle at 16% 20%, rgba(71, 199, 217, 0.22), transparent 24rem),
    linear-gradient(135deg, #061722, #073a4f 58%, #075f78);
}

.support-band .label {
  color: #7fe3e6;
}

.support-band h2 {
  max-width: 760px;
}

.support-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.support-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.support-band-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.support-band-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.support-band-media:hover img {
  transform: scale(1.045);
}

.contact-section {
  display: block;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbfd, #ffffff),
    radial-gradient(circle at 50% 0, rgba(71, 199, 217, 0.18), transparent 34rem);
}

.contact-section > .reveal {
  min-width: 0;
}

.contact-intro {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.12fr);
  grid-gap: clamp(22px, 4vw, 42px);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.contact-info-panel {
  padding: clamp(24px, 4vw, 42px);
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 24, 34, 0.96), rgba(5, 48, 62, 0.96)),
    url("/automation-support.png") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-panel > * {
  position: relative;
  z-index: 1;
}

.contact-detail {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #5fe9f4;
  background: rgba(71, 199, 217, 0.14);
  border: 1px solid rgba(95, 233, 244, 0.12);
  border-radius: 8px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.contact-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.55;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-socials a:hover {
  background: rgba(71, 199, 217, 0.24);
  transform: translateY(-3px);
}

.contact-form-card {
  padding: clamp(22px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 120, 181, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form-card form {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

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

.contact-form-card label {
  position: relative;
  display: block;
}

.contact-form-card label > svg {
  position: absolute;
  top: 19px;
  left: 16px;
  color: #819daf;
  pointer-events: none;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px 0 46px;
  color: #172838;
  background: white;
  border: 1px solid rgba(10, 120, 181, 0.18);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form-card textarea {
  min-height: 150px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(10, 120, 181, 0.5);
  box-shadow: 0 0 0 4px rgba(71, 199, 217, 0.14);
  transform: translateY(-1px);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  color: white;
  background: linear-gradient(135deg, #0793ad, #0a78b5);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(10, 120, 181, 0.24);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(10, 120, 181, 0.3);
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  color: #0b674d;
  background: rgba(32, 180, 134, 0.1);
  border: 1px solid rgba(32, 180, 134, 0.2);
  border-radius: 8px;
}

.site-footer {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 64px) 26px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 16% 0, rgba(71, 199, 217, 0.2), transparent 28rem),
    linear-gradient(135deg, #061722, #082d3c 55%, #063245);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  grid-gap: clamp(28px, 5vw, 76px);
  gap: clamp(28px, 5vw, 76px);
  padding-bottom: 34px;
}

.footer-brand-block p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.site-footer .footer-brand {
  margin-bottom: 16px;
}

.site-footer .footer-brand img {
  width: 58px;
  height: 58px;
}

.site-footer .footer-brand strong {
  display: block;
  color: white;
  font-size: 1.42rem;
}

.site-footer .footer-brand small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 22px;
  gap: 22px;
}

.footer-links div {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.footer-links strong {
  color: white;
  font-size: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: #76edf3;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  gap: 12px;
  color: #76edf3;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes softPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.98;
  }
  50% {
    transform: scale(1.025);
    opacity: 0.86;
  }
}

@keyframes processFlow {
  0% {
    transform: translateX(-100%);
  }
  45%,
  60% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-16px) scale(1.12);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(110%);
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero,
  .split-section,
  .edobiz-band,
  .support-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .dashboard-frame {
    width: min(92%, 680px);
  }

  .product-grid,
  .process-grid,
  .process-showcase,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section {
    padding-inline: clamp(18px, 4vw, 64px);
  }

  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .feature-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 74px;
    padding: 10px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .mobile-nav {
    inset: 76px 12px auto 12px;
  }

  .hero {
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .stats-grid,
  .product-grid,
  .service-list,
  .industry-grid,
  .process-grid,
  .process-showcase,
  .testimonial-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .dashboard-frame {
    width: min(96%, 360px);
    aspect-ratio: 4 / 3;
  }

  .metric-card {
    font-size: 0.82rem;
  }

  .card-1,
  .card-a {
    left: 2%;
    top: 6%;
  }

  .card-2,
  .card-b {
    right: 2%;
    top: 39%;
  }

  .card-3,
  .card-c {
    bottom: 6%;
    left: 3%;
  }

  .product-card,
  .process-grid article,
  .process-card {
    min-height: auto;
  }

  .contact-section {
    padding-inline: 16px;
  }

  .support-band {
    padding-inline: 16px;
  }

  .support-band-actions {
    flex-direction: column;
  }

  .hero-carousel-dots {
    right: 8%;
    bottom: 5%;
  }

  .contact-info-panel,
  .contact-form-card {
    padding: 22px;
  }

  .contact-detail {
    gap: 14px;
  }

  .contact-detail-icon {
    width: 48px;
    height: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

