.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14.5px;
  font-weight: 780;
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

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

.button-primary {
  background: #1f5fe8;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.button-primary:hover {
  background: #174bc4;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28), 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.button-secondary {
  border-color: rgba(192, 207, 229, 0.82);
  background: rgba(255, 255, 255, 0.9);
  color: #17233a;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.1);
}

.arrow {
  display: inline-block;
  margin-right: -2px;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.button:hover .arrow {
  transform: translateX(3px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Keep eyebrow labels as text-only brand marks, without decorative lead-in lines. */
.eyebrow::before,
.section-eyebrow::before,
.page-eyebrow::before,
.hero-kicker::before,
.section-label::before,
.easyjob-showcase__eyebrow::before,
[class*="eyebrow"]::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: none !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

/* Level 1: clean solid premium cards (default). Readability first, no heavy glass. */
.card {
  position: relative;
  border: 1px solid rgba(214, 226, 244, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 32%);
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.card > * {
  position: relative;
}

/* Level 2: soft glass for medium highlight elements (pills, process cards, about highlights). */
.glass-soft {
  border: 1px solid rgba(185, 208, 246, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 255, 0.58));
  box-shadow:
    0 16px 44px rgba(24, 61, 125, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

/* Level 3: full liquid glass, reserved for the strongest showcase panels. */
.glass-strong {
  border: 1px solid rgba(180, 205, 255, 0.5);
  background:
    radial-gradient(circle at 86% 16%, rgba(139, 220, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(241, 247, 255, 0.6));
  box-shadow:
    0 28px 80px rgba(15, 40, 90, 0.12),
    0 0 30px rgba(96, 150, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.card-pad {
  padding: 26px;
}

.service-card,
.solution-card,
.project-card,
.website-card,
.process-card,
.price-card,
.info-card {
  min-height: 100%;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.service-card:hover,
.solution-card:hover,
.project-card:hover,
.website-card:hover,
.process-card:hover,
.price-card:hover,
.info-card:hover {
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.icon-chip {
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.service-card:hover .icon-chip,
.solution-card:hover .icon-chip,
.website-card:hover .icon-chip,
.info-card:hover .icon-chip,
.about-value-card:hover .icon-chip {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.16), 0 0 0 4px rgba(37, 99, 235, 0.06);
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 20%, rgba(139, 220, 255, 0.24), transparent 58%),
    #f8fbff;
  border: 1px solid rgba(203, 218, 242, 0.9);
  box-shadow: 0 14px 34px rgba(24, 61, 125, 0.08);
}

.icon-box {
  margin-bottom: 18px;
}

.icon-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 72px);
  align-items: center;
  width: 100%;
  padding: 0 clamp(8px, 2vw, 24px);
}

.value-row article {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  min-height: 58px;
  padding: 10px 18px;
  border: 1px solid rgba(185, 208, 246, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 255, 0.58));
  box-shadow:
    0 12px 30px rgba(24, 61, 125, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--navy);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 850;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-18px);
  animation: featureSlideIn 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

.value-row article:hover {
  transform: translateX(0);
}

.value-row .value-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0;
  box-shadow: none;
}

.value-row .value-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(97%) saturate(2354%) hue-rotate(217deg) brightness(95%) contrast(93%);
}

.mockup-stage {
  position: relative;
  min-height: 488px;
  animation: floatStage 7s ease-in-out infinite;
}

.desktop-device {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(96%, 590px);
  border: 1px solid rgba(207, 218, 236, 0.8);
  border-radius: 22px 22px 18px 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(22px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  background: #101827;
  color: #cbd5e1;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.browser-bar span:nth-child(1) { background: #ff6b72; }
.browser-bar span:nth-child(2) { background: #ffd166; }
.browser-bar span:nth-child(3) { background: #4ade80; }

.browser-bar strong {
  margin-left: 10px;
  font-size: 12px;
}

.dashboard {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  min-height: 348px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 16%, rgba(139, 220, 255, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.88));
}

.dash-sidebar,
.chart-card,
.metric-grid article {
  border: 1px solid rgba(218, 227, 241, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.dash-sidebar i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.dash-sidebar span {
  width: 34px;
  height: 8px;
  border-radius: 99px;
  background: #dce6f5;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dash-top p,
.metric-grid span,
.chart-card span {
  margin: 0 0 5px;
  color: #6b7b91;
  font-size: 12px;
  font-weight: 800;
}

.dash-top h3 {
  margin: 0;
  font-size: 26px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.metric-grid article {
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}

.metric-grid strong {
  display: block;
  color: #14213a;
  font-size: 23px;
}

.metric-grid em {
  display: block;
  margin-top: 7px;
  color: #0c9f6c;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.chart-card {
  margin-top: 12px;
  padding: 18px 18px 10px;
}

.chart-line {
  height: 118px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 360 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 92 C42 76 58 54 90 62 C126 72 134 24 168 34 C206 45 214 84 254 68 C292 52 314 28 360 18' fill='none' stroke='%232563eb' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.phone-device {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 182px;
  min-height: 362px;
  padding: 11px;
  border: 7px solid #0b1222;
  border-radius: 38px;
  background: #0b1222;
  box-shadow: 0 30px 70px rgba(10, 18, 34, 0.22);
}

.phone-screen {
  min-height: 328px;
  padding: 14px 12px;
  border-radius: 27px;
  background: #fbfdff;
}

.phone-screen h3 {
  margin: 8px 0 12px;
  font-size: 17px;
}

.phone-pill,
.phone-task {
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
}

.phone-pill {
  padding: 10px 12px;
  color: #8ca0bb;
  font-size: 10px;
  font-weight: 750;
}

.phone-task {
  margin-top: 8px;
  padding: 10px;
  font-size: 11px;
  font-weight: 850;
}

.float-card {
  position: absolute;
  z-index: 4;
  padding: 14px 17px;
  border: 1px solid rgba(218, 227, 241, 0.84);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-crisp);
  backdrop-filter: blur(20px);
}

.float-card.top {
  top: 30px;
  right: 54px;
}

.float-card.bottom {
  right: 8px;
  bottom: 6px;
  text-align: center;
}

.contact-form {
  padding: clamp(24px, 3vw, 36px);
}

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

.contact-form .field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid rgba(170, 195, 235, 0.65);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  padding-right: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5c7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(75, 92, 122, 0.62);
  font-weight: 500;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.75);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 12px 32px rgba(15, 40, 90, 0.08);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 28px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
}

.contact-summary { padding: 12px 16px; border-left: 3px solid var(--blue-700); background: rgba(226, 236, 252, 0.58); color: var(--navy); font-size: 14px; }
.contact-form [hidden] { display: none !important; }
.contact-summary strong { font-weight: 800; }
.contact-form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
.contact-form-trap input { min-height: 0; padding: 0; border: 0; }
.contact-form .iti { width: 100%; }
.contact-form .iti__dropdown-content { z-index: 20; }
.required-marker { margin-left: 3px; color: var(--blue-700); font-weight: 900; }
.contact-form .iti__search-input { width: calc(100% - 24px); min-height: 44px; margin: 10px 12px 8px; padding: 10px 12px; border: 1px solid rgba(170, 195, 235, 0.75); border-radius: 10px; font: inherit; }
.contact-form button:disabled { cursor: wait; opacity: 0.62; }
.form-status.is-success { color: #17643b; }
