* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #f5f9fd;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 6px 2.2%;
  background: linear-gradient(135deg, rgba(240, 248, 251, .98), rgba(214, 235, 244, .95));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 65, 101, .14);
  box-shadow: 0 14px 38px rgba(4, 32, 57, .13);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 60px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 7px 8px rgba(5, 31, 61, .28));
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
  min-width: 0;
}

.brand-copy strong {
  background: linear-gradient(180deg, #8ec7df 0%, #2e78a5 42%, #07345d 68%, #031c37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: .7px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .9)) drop-shadow(0 4px 5px rgba(4, 31, 55, .28));
}

.brand-copy small {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1px;
  white-space: normal;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #07111f;
  font-size: 17px;
  font-weight: 900;
}

.nav a:hover {
  color: #087ea4;
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f5b8f, #22c1ff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f5b8f, #22c1ff);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(14, 116, 144, .24);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 91, 143, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  color: #07345d;
  box-shadow: 0 10px 24px rgba(4, 32, 57, .12);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  left: 0;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(7px);
}

.nav-toggle:focus-visible + .menu-toggle {
  outline: 3px solid rgba(34, 193, 255, .45);
  outline-offset: 3px;
}

.nav-toggle:checked + .menu-toggle span {
  transform: rotate(45deg);
}

.nav-toggle:checked + .menu-toggle span::before {
  transform: rotate(90deg);
}

.nav-toggle:checked + .menu-toggle span::after {
  opacity: 0;
  transform: rotate(90deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 38px);
  padding: 96px 7% 34px;
  overflow: hidden;
  color: #12324d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92) 0, rgba(255, 255, 255, .65) 118px),
    linear-gradient(90deg, rgba(248, 252, 255, .98) 0%, rgba(237, 248, 253, .92) 44%, rgba(255, 255, 255, .64) 100%),
    url("assets/images/hero-dashboard.jpg") right center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  flex: 1 1 55%;
  min-width: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: clamp(340px, 38vw, 520px);
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(15, 65, 101, .14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 255, .88) 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(223, 244, 252, .88));
  box-shadow: 0 30px 90px rgba(15, 65, 101, .16), inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
}

.visual-top,
.visual-kpis,
.visual-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-top {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 65, 101, .10);
}

.visual-top span,
.visual-kpis span {
  color: #07345d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.visual-top strong {
  position: relative;
  padding: 6px 10px 6px 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .12);
  color: #15803d;
  font-size: 12px;
}

.visual-top strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
  transform: translateY(-50%);
}

.visual-kpis {
  margin-bottom: 14px;
}

.visual-kpis div {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(15, 65, 101, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.visual-kpis strong {
  display: block;
  margin-top: 4px;
  color: #07345d;
  font-size: 21px;
  line-height: 1.1;
}

.visual-kpis small {
  display: inline-block;
  margin-top: 8px;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
}

.visual-chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 13px;
  padding: 20px 18px 28px;
  border: 1px solid rgba(15, 65, 101, .10);
  border-radius: 8px;
  background:
    linear-gradient(rgba(14, 116, 144, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 116, 144, .10) 1px, transparent 1px),
    rgba(248, 252, 255, .90);
  background-size: 100% 25%, 25% 100%, auto;
}

.visual-chart span {
  position: relative;
  flex: 1;
  min-width: 20px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #55d9ff, #2dd47f);
  box-shadow: 0 12px 26px rgba(34, 193, 255, .24);
}

.visual-chart span::after {
  content: attr(data-month);
  position: absolute;
  right: 50%;
  bottom: -22px;
  color: #334155;
  font-size: 10px;
  font-weight: 800;
  transform: translateX(50%);
}

.visual-activity {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.visual-activity div {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(15, 65, 101, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
}

.visual-activity span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
}

.visual-activity p {
  color: #172033;
  font-size: 12px;
  font-weight: 700;
}

.visual-activity strong {
  color: #334155;
  font-size: 11px;
}

.visual-flow {
  margin-top: 12px;
}

.visual-flow span {
  flex: 1;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, .10);
  color: #07345d;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.visual-flow i {
  width: 26px;
  height: 2px;
  background: #22d3ee;
}

.badge,
.section-heading span,
.image-copy span,
.contact-info span,
.cta-section span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(14, 116, 144, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, #0f5b8f 0%, #0ea5e9 52%, #22c1ff 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 116, 144, .26), inset 0 1px 0 rgba(255, 255, 255, .34);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .9px;
  text-shadow: 0 1px 1px rgba(7, 52, 93, .28);
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  background: linear-gradient(135deg, #07345d 0%, #0f5b8f 48%, #0891b2 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 760px;
  color: #172033;
  font-size: 20px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #2dd47f, #23c5ff);
  color: #061220;
  box-shadow: 0 18px 46px rgba(34, 193, 255, .28);
}

.secondary {
  border: 1px solid rgba(15, 65, 101, .18);
  background: rgba(255, 255, 255, .72);
  color: #0f4165;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats div {
  min-width: 135px;
  padding: 16px;
  border: 1px solid rgba(15, 65, 101, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
}

.hero-stats strong {
  display: block;
  font-size: 25px;
}

.hero-stats span {
  color: #334155;
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 7%;
  background: linear-gradient(135deg, #ffffff, #edf8fc);
  color: #172033;
  box-shadow: 0 16px 40px rgba(15, 65, 101, .08);
}

.trust-strip span {
  color: #334155;
  font-weight: 700;
}

.trust-strip strong {
  color: #0f172a;
  position: relative;
  padding-left: 16px;
}

.trust-strip strong::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b8d7;
  transform: translateY(-50%);
}

.section {
  padding: 64px 7%;
  background: linear-gradient(180deg, #f7fbff, #eef6fb);
}

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

.section-heading h2,
.image-copy h2,
.contact-info h2,
.cta-section h2 {
  margin: 12px 0;
  color: #07111f;
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.1;
}

.section-heading p,
.image-copy p,
.contact-info p,
.cta-section p {
  color: #172033;
  font-size: 18px;
  font-weight: 600;
}

.services-pro {
  position: relative;
  isolation: isolate;
  padding: 68px 7%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34, 193, 255, .16), transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #f3faff 48%, #e8f6fb 100%);
  color: #0f172a;
}

.services-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(14, 116, 144, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 116, 144, .07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 82%);
}

.section-head {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  box-shadow: 0 14px 34px rgba(37, 99, 235, .28);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 14px 0 12px;
  color: #07345d;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 950;
  line-height: 1.04;
}

.section-head h2 span {
  background: linear-gradient(90deg, #60a5fa, #22d3ee, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  max-width: 760px;
  margin: auto;
  color: #172033;
  font-size: 18px;
  font-weight: 600;
}

.services-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.service-pro-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  padding: 24px 22px;
  border: 1px solid rgba(15, 65, 101, .12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 248, 252, .94));
  box-shadow: 0 24px 70px rgba(15, 65, 101, .12), inset 0 1px 0 rgba(255, 255, 255, .82);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, currentColor, transparent 44%);
  opacity: .16;
}

.service-pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 116, 144, .28);
  box-shadow: 0 30px 90px rgba(15, 65, 101, .18), 0 0 0 1px rgba(255, 255, 255, .82) inset;
}

.service-pro-card > * {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(224, 242, 254, .74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .90), 0 18px 38px rgba(15, 65, 101, .12), 0 0 20px rgba(14, 116, 144, .18);
}

.service-icon span {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
}

.icon-code span::before {
  content: "</>";
  position: absolute;
  top: 1px;
  left: 0;
  color: currentColor;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -3px;
}

.icon-web span {
  border: 4px solid currentColor;
  border-radius: 50%;
}

.icon-web span::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 6px;
  bottom: -4px;
  left: 6px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-radius: 50%;
}

.icon-web span::after {
  content: "";
  position: absolute;
  top: 17px;
  right: -4px;
  left: -4px;
  border-top: 3px solid currentColor;
  box-shadow: 0 -12px 0 currentColor, 0 12px 0 currentColor;
}

.icon-mobile span {
  width: 27px;
  height: 38px;
  border: 4px solid currentColor;
  border-radius: 9px;
}

.icon-mobile span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 8px;
  height: 3px;
  border-radius: 4px;
  background: currentColor;
  transform: translateX(-50%);
}

.icon-cloud span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 24px;
  border-radius: 22px;
  background: currentColor;
}

.icon-cloud span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 17px 6px 0 -3px currentColor;
}

.icon-ai span {
  border: 4px solid currentColor;
  border-radius: 11px;
}

.icon-ai span::before {
  content: "AI";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  font-size: 15px;
  font-weight: 950;
}

.icon-ai span::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -9px;
  left: -9px;
  height: 4px;
  background: currentColor;
  box-shadow: 0 20px 0 currentColor;
}

.icon-security span {
  width: 36px;
  height: 40px;
  background: currentColor;
  clip-path: polygon(50% 0, 90% 14%, 84% 68%, 50% 100%, 16% 68%, 10% 14%);
}

.service-pro-card h3 {
  max-width: 310px;
  margin-bottom: 12px;
  color: #052d4f;
  font-size: 24px;
  line-height: 1.14;
}

.service-pro-card p {
  margin-bottom: 18px;
  color: #172033;
  font-weight: 600;
  line-height: 1.65;
}

.service-pro-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-pro-card li {
  margin: 8px 0;
  color: #172033;
  font-size: 14px;
  font-weight: 700;
}

.service-pro-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.service-pro-card.blue {
  color: #2563eb;
}

.service-pro-card.purple {
  color: #9333ea;
}

.service-pro-card.cyan {
  color: #06b6d4;
}

.service-pro-card.pink {
  color: #db2777;
}

.image-section {
  padding: 66px 7%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(236, 248, 253, .88)),
    url("assets/images/products-team.jpg") center/cover no-repeat;
  color: #0f172a;
}

.image-copy {
  max-width: 900px;
  margin-bottom: 30px;
}

.image-copy h2,
.case-section .section-heading h2,
.case-section .section-heading p,
.cta-section h2,
.cta-section p {
  color: #052d4f;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: #07111f;
  box-shadow: 0 24px 70px rgba(15, 65, 101, .12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(15, 65, 101, .18);
}

.product-card img {
  width: 100%;
  height: clamp(180px, 16vw, 220px);
  object-fit: cover;
}

.product-card div {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #052d4f;
}

.product-card p {
  color: #172033;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .18);
}

.portfolio-card.large {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: clamp(220px, 20vw, 270px);
  object-fit: cover;
}

.portfolio-card.large img {
  height: clamp(460px, 43vw, 584px);
}

.portfolio-body {
  position: relative;
  padding: 18px;
}

.portfolio-card.large .portfolio-body {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  border: 1px solid rgba(15, 65, 101, .14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(226, 246, 252, .88));
  backdrop-filter: blur(14px);
}

.portfolio-body h3 {
  color: #052d4f;
  font-size: 23px;
}

.portfolio-body p {
  color: #172033;
  font-weight: 600;
}

.portfolio-card.large .portfolio-body h3,
.portfolio-card.large .portfolio-body p {
  color: #052d4f;
}

.portfolio-card.large::after {
  content: "Premium Solution";
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #28d17c, #22c1ff);
  color: #061220;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-section {
  background: linear-gradient(90deg, rgba(255, 255, 255, .94), rgba(235, 248, 253, .86)), url("assets/images/case-studies-bg.jpg") center/cover fixed no-repeat;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.case-card {
  padding: 24px;
  border: 1px solid rgba(15, 65, 101, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: #0f172a;
  backdrop-filter: blur(12px);
}

.case-card strong {
  color: #0f5b8f;
  font-size: 38px;
}

.case-card h3 {
  margin: 8px 0;
  color: #052d4f;
  font-size: 22px;
}

.case-card p {
  color: #172033;
  font-weight: 600;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 7%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(230, 247, 252, .88)),
    url("assets/images/contact-team.jpg") center/cover no-repeat;
  color: #0f172a;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 42px;
}

.contact-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(15, 65, 101, .10);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f1fbff);
  box-shadow: 0 22px 58px rgba(15, 23, 42, .09);
}

.contact-box p {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(15, 65, 101, .10);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fcff);
  box-shadow: 0 28px 76px rgba(15, 23, 42, .13);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 15px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #052d4f;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

button:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.form-captcha {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.form-captcha-code {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, #f8fbff 0, #f8fbff 8px, #eef7fc 8px, #eef7fc 16px);
  color: #07345d;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 2px;
  user-select: none;
}

.form-captcha button {
  width: auto;
  min-width: 96px;
  padding: 0 14px;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  color: #0f4165;
  font-size: 14px;
  font-weight: 800;
}

.form-status.success {
  color: #15803d;
}

.form-status.error {
  color: #b91c1c;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  padding: 13px 19px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  font-weight: 900;
}

footer {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 7%;
  border-top: 1px solid rgba(34, 193, 255, .24);
  background:
    linear-gradient(135deg, rgba(240, 248, 251, .98), rgba(214, 235, 244, .94)),
    linear-gradient(135deg, #06101f, #0d253e);
  color: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 -18px 46px rgba(4, 32, 57, .13);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  left: 7%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #22c1ff, #2dd47f, transparent);
}

footer p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding-right: 112px;
  color: #172033;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.footer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 42px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 7px 8px rgba(5, 31, 61, .24));
}

.footer-brand .brand-copy strong {
  background: linear-gradient(180deg, #8ec7df 0%, #2e78a5 42%, #07345d 68%, #031c37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: .7px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .9)) drop-shadow(0 4px 5px rgba(4, 31, 55, .18));
}

.footer-brand .brand-copy small {
  color: #0f172a;
  font-size: 10px;
  font-weight: 700;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(245, 249, 253, .92), rgba(224, 242, 254, .88)),
    url("assets/images/contact-team.jpg") center/cover fixed no-repeat;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  justify-items: center;
  align-items: start;
  padding: 32px;
  padding-top: 42px;
}

.admin-login,
.admin-dashboard {
  width: min(100%, 1120px);
  border: 1px solid rgba(15, 65, 101, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 76px rgba(15, 23, 42, .16);
}

.admin-login {
  max-width: 440px;
  padding: 28px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.admin-brand img {
  width: 58px;
  height: 54px;
  object-fit: contain;
}

.admin-brand strong,
.admin-toolbar h1 {
  display: block;
  color: #07345d;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.admin-brand span,
.admin-toolbar span {
  color: #0f4165;
  font-weight: 800;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-dashboard {
  overflow: hidden;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(15, 65, 101, .10);
  background: linear-gradient(135deg, #fff, #f1fbff);
}

.admin-toolbar button {
  width: auto;
  padding: 12px 18px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #07345d;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table td {
  color: #334155;
  font-size: 14px;
}

.admin-table a {
  color: #0369a1;
  font-weight: 800;
}

.admin-dashboard > .form-status {
  padding: 0 24px 24px;
}

@media (max-width: 1100px) {
  .site-header {
    padding-right: 3.5%;
    padding-left: 3.5%;
  }

  .brand img {
    width: 58px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 26px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .nav {
    gap: 18px;
    font-size: 15px;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .hero {
    padding-right: 5%;
    padding-left: 5%;
  }

  .hero-visual {
    width: clamp(300px, 36vw, 420px);
    padding: 16px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 3.5%;
    left: auto;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(15, 65, 101, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 46px rgba(4, 32, 57, .18);
    color: #07111f;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-toggle:checked ~ .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav a:not(.nav-cta):hover {
    background: #eef8fc;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .case-section,
  .admin-page {
    background-attachment: scroll;
  }

  .product-grid,
  .case-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .portfolio-card.large img {
    height: 320px;
  }

  .portfolio-card.large .portfolio-body {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    border: 0;
    border-radius: 0;
    background: #fff;
    backdrop-filter: none;
  }

  .portfolio-card.large .portfolio-body h3 {
    color: #052d4f;
  }

  .portfolio-card.large .portfolio-body p {
    color: #172033;
  }

  .cta-section,
  footer {
    flex-direction: column;
    text-align: center;
  }

  footer p {
    padding-right: 0;
    text-align: center;
    white-space: normal;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-visual {
    width: min(100%, 640px);
    min-width: 0;
    margin-top: 34px;
  }
}

@media (max-width: 700px) {
  .services-pro {
    padding: 48px 5%;
  }

  .services-grid-pro {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .portfolio-grid,
  .case-grid {
    gap: 16px;
  }

  .service-pro-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .section-head p {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 8px 5%;
  }

  .nav {
    right: 5%;
  }

  .brand img {
    width: 48px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: clamp(17px, 5.2vw, 20px);
  }

  .brand-copy small {
    max-width: 240px;
    font-size: clamp(9px, 2.5vw, 10px);
    line-height: 1.2;
  }

  .hero,
  .section,
  .image-section,
  .contact-section,
  .cta-section {
    padding-right: 5%;
    padding-left: 5%;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 30px;
  }

  .section,
  .image-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cta-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .contact-section {
    padding-top: 40px;
    padding-bottom: 18px;
  }

  .form-captcha {
    grid-template-columns: 1fr;
  }

  .form-captcha button {
    width: 100%;
    min-height: 44px;
  }

  .badge,
  .section-heading span,
  .image-copy span,
  .contact-info span,
  .cta-section span,
  .eyebrow {
    max-width: 100%;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-visual {
    display: block;
    padding: 12px;
  }

  .visual-kpis {
    flex-wrap: wrap;
  }

  .visual-kpis div {
    flex: 1 1 calc(50% - 8px);
  }

  .visual-chart {
    height: 140px;
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .visual-flow {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .visual-flow span {
    flex: 1 1 30%;
  }

  .visual-flow i {
    display: none;
  }

  .hero p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats div {
    min-width: 0;
    flex: 1 1 calc(50% - 7px);
  }

  .trust-strip {
    justify-content: flex-start;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .whatsapp {
    position: static;
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto 10px;
    padding: 12px 16px;
    text-align: center;
  }

  footer {
    padding: 12px 5%;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    width: 38px;
    height: 36px;
  }

  .footer-brand .brand-copy strong {
    font-size: clamp(17px, 5vw, 19px);
  }

  .footer-brand .brand-copy small {
    font-size: clamp(9px, 2.7vw, 10px);
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-right: 4%;
    padding-left: 4%;
  }

  .nav {
    right: 4%;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  .visual-top,
  .visual-activity div {
    align-items: flex-start;
  }

  .visual-top {
    flex-direction: column;
  }

  .visual-kpis div {
    flex-basis: 100%;
  }

  .visual-chart span::after {
    font-size: 9px;
  }

  .hero-stats div {
    flex-basis: 100%;
  }
}
