:root {
  color-scheme: light dark;
  --bg: #0b1c28;
  --bg-alt: #102433;
  --bg-panel: rgba(17, 43, 62, 0.82);
  --fg: #f4fbff;
  --muted: rgba(215, 231, 239, 0.74);
  --accent: #58b8ff;
  --accent-strong: #00d5c5;
  --warning: #f3b97d;
  --shadow: 0 28px 60px rgba(3, 18, 30, 0.6);
  font-size: clamp(15px, 1.1vw, 17px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(160% 120% at 80% -10%, rgba(18, 61, 94, 0.65), transparent),
    linear-gradient(180deg, #08131b 0%, #102433 100%);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1.2em;
  color: var(--muted);
}

.tech-container {
  width: min(1140px, calc(100% - 3.5rem));
  margin: 0 auto;
}

.tech-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(8, 19, 27, 0.78);
  border-bottom: 1px solid rgba(88, 184, 255, 0.18);
}

.tech-topbar .tech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}

.tech-brand img {
  width: 150px;
  height: auto;
}

.tech-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.45rem;
  cursor: pointer;
  color: var(--fg);
}

.tech-nav__icon,
.tech-nav__icon::before,
.tech-nav__icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.tech-nav__icon::before,
.tech-nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.tech-nav__icon::before {
  top: -6px;
}

.tech-nav__icon::after {
  top: 6px;
}

.tech-nav__toggle[aria-expanded="true"] .tech-nav__icon {
  background: transparent;
}

.tech-nav__toggle[aria-expanded="true"] .tech-nav__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.tech-nav__toggle[aria-expanded="true"] .tech-nav__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.tech-nav__list {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.tech-nav__list a {
  position: relative;
  color: rgba(244, 251, 255, 0.85);
}

.tech-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.tech-nav__list a:hover::after,
.tech-nav__list a:focus-visible::after {
  transform: scaleX(1);
}

.tech-cta {
  background: linear-gradient(120deg, #00d5c5, #58b8ff);
  color: #05131b;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0, 213, 197, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tech-cta:hover,
.tech-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(0, 213, 197, 0.34);
  filter: brightness(1.08);
}

.tech-cta--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(88, 184, 255, 0.35);
  box-shadow: none;
}

.tech-cta--outline:hover,
.tech-cta--outline:focus-visible {
  border-color: rgba(0, 213, 197, 0.65);
}

.tech-cta--bright {
  background: linear-gradient(120deg, #58b8ff, #00d5c5);
  color: #03111a;
}

.tech-hero {
  padding: 8rem 0 3.5rem;
}

.tech-hero__content {
  display: grid;
  gap: 3rem;
}

.tech-pill {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(88, 184, 255, 0.12);
  color: rgba(88, 184, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.tech-lead {
  font-size: 1.1rem;
  max-width: 660px;
  color: rgba(215, 231, 239, 0.85);
}

.tech-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}

.tech-stats dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

.tech-stats dd {
  margin: 0.2rem 0 0;
  color: rgba(215, 231, 239, 0.6);
}

.tech-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.tech-hero__grid article {
  background: var(--bg-panel);
  border: 1px solid rgba(88, 184, 255, 0.16);
  border-radius: 22px;
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.tech-hero__grid h2 {
  font-size: 1.2rem;
}

.tech-section__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.6rem;
  text-align: left;
}

.tech-section__header p {
  max-width: 680px;
}

section {
  padding: 3.5rem 0;
  scroll-margin-top: 90px;
}

.tech-segments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.tech-segment {
  background: rgba(8, 19, 27, 0.85);
  border: 1px solid rgba(88, 184, 255, 0.16);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.tech-segment::after {
  content: "";
  position: absolute;
  inset: auto -40% -50%;
  height: 70%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(88, 184, 255, 0.18), transparent);
}

.tech-segment__icon {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(88, 184, 255, 0.7);
}

.tech-segment ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: rgba(215, 231, 239, 0.7);
}

.tech-segment ul li::before {
  content: "▹";
  color: var(--accent);
  margin-right: 0.6rem;
}

.tech-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.tech-products__grid article {
  background: rgba(8, 19, 27, 0.85);
  border: 1px solid rgba(88, 184, 255, 0.16);
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.tech-chip {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(88, 184, 255, 0.16);
  color: rgba(244, 251, 255, 0.76);
}

.tech-partners {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  color: rgba(215, 231, 239, 0.7);
}

.tech-partners ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.tech-service {
  background: rgba(8, 19, 27, 0.6);
}

.tech-service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.tech-list {
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.tech-list li::before {
  content: "✔";
  margin-right: 0.6rem;
  color: var(--accent-strong);
}

.tech-service__card {
  background: rgba(4, 13, 21, 0.82);
  border: 1px solid rgba(0, 213, 197, 0.18);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
}

.tech-service__card dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.tech-service__card dt {
  font-weight: 600;
  color: rgba(244, 251, 255, 0.85);
}

.tech-service__card dd {
  margin: 0.2rem 0 0;
}

.tech-service__card a {
  color: var(--accent);
  font-weight: 600;
}

.tech-service__note {
  color: rgba(215, 231, 239, 0.65);
  font-size: 0.9rem;
}

.tech-process {
  background: linear-gradient(180deg, rgba(10, 33, 48, 0.92), rgba(5, 19, 27, 0.82));
}

.tech-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.4rem;
}

.tech-timeline li {
  position: relative;
  padding: 2rem 2rem 2rem 4rem;
  background: rgba(4, 13, 21, 0.82);
  border-radius: 20px;
  border: 1px solid rgba(88, 184, 255, 0.16);
  box-shadow: var(--shadow);
}

.tech-timeline li::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 2.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(0, 213, 197, 0.2);
}

.tech-timeline span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
}

.tech-cta__inner {
  background: linear-gradient(120deg, rgba(88, 184, 255, 0.15), rgba(0, 213, 197, 0.18));
  border: 1px solid rgba(0, 213, 197, 0.25);
  border-radius: 28px;
  padding: clamp(2.2rem, 4vw, 3.2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tech-contact {
  background: rgba(4, 13, 21, 0.92);
  padding-bottom: 0;
}

.tech-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.tech-contact__info {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.tech-contact__info span {
  display: block;
  color: rgba(244, 251, 255, 0.6);
  font-size: 0.9rem;
}

.tech-contact__info a {
  font-weight: 600;
  color: #ffffff;
}

.tech-hours {
  margin-top: 1.8rem;
}

.tech-hours span {
  display: inline-block;
  color: rgba(244, 251, 255, 0.6);
  font-size: 0.9rem;
}

.tech-hours ul {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: rgba(215, 231, 239, 0.7);
}

.tech-form {
  background: rgba(8, 25, 36, 0.9);
  border: 1px solid rgba(88, 184, 255, 0.2);
  border-radius: 26px;
  padding: 2.4rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}

.tech-form__row {
  display: grid;
  gap: 0.45rem;
}

.tech-form label {
  font-size: 0.95rem;
  color: rgba(244, 251, 255, 0.7);
}

.tech-form input,
.tech-form textarea,
.tech-form select {
  font: inherit;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(88, 184, 255, 0.22);
  background: rgba(4, 13, 21, 0.8);
  color: var(--fg);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.tech-form input:focus,
.tech-form textarea:focus,
.tech-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 184, 255, 0.2);
}

.tech-form__row--inline {
  align-items: center;
}

.tech-form__row--inline label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tech-form__row--inline input {
  width: 1rem;
  height: 1rem;
}

.tech-form__note {
  font-size: 0.85rem;
  color: rgba(215, 231, 239, 0.55);
}

.tech-map {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(88, 184, 255, 0.16);
  padding: 0;
}

.tech-map iframe {
  border: 0;
  width: 100%;
  height: 360px;
}

.tech-footer {
  background: rgba(2, 12, 19, 0.95);
  margin-top: 0;
  padding-top: 3rem;
  color: rgba(244, 251, 255, 0.75);
}

.tech-footer .tech-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tech-footer__col {
  display: grid;
  gap: 0.8rem;
}

.tech-footer__col span {
  font-weight: 600;
  color: rgba(244, 251, 255, 0.9);
}

.tech-footer__col a {
  color: rgba(244, 251, 255, 0.75);
}

.tech-footer__col a:hover,
.tech-footer__col a:focus-visible {
  color: var(--accent);
}

.tech-footer__legal {
  border-top: 1px solid rgba(88, 184, 255, 0.16);
  margin-top: 2.5rem;
  font-size: 0.9rem;
}

.tech-footer__legal .tech-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.tech-back {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .tech-nav__toggle {
    display: inline-block;
  }

  .tech-nav__list {
    position: absolute;
    right: 1.5rem;
    top: 100%;
    background: rgba(8, 19, 27, 0.95);
    border: 1px solid rgba(88, 184, 255, 0.16);
    border-radius: 20px;
    padding: 1.4rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
    min-width: 220px;
    box-shadow: var(--shadow);
  }

  .tech-nav__list[data-expanded="true"] {
    display: flex;
  }

  .tech-topbar .tech-container {
    padding: 1rem 0;
  }

  .tech-hero {
    padding-top: 7rem;
  }
}

@media (max-width: 680px) {
  .tech-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-timeline li {
    padding-left: 3.4rem;
  }

  .tech-timeline li::before {
    left: 1rem;
  }

  .tech-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-map iframe {
    height: 280px;
  }
}

/*
 * Price Guarantee Section
 * --------------------------------------------------
 */
.price-guarantee {
  background: linear-gradient(180deg, rgba(88, 184, 255, 0.08), transparent);
  border-top: 1px solid rgba(88, 184, 255, 0.1);
  border-bottom: 1px solid rgba(88, 184, 255, 0.1);
}

.price-guarantee .tech-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.price-guarantee h2 {
  color: var(--accent-strong);
}

.price-guarantee p {
  max-width: 50ch;
}

.price-guarantee__form {
  background: var(--bg-panel);
  border: 1px solid rgba(0, 213, 197, 0.2);
  border-radius: 26px;
  padding: 2.4rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}

.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  border: 1px solid rgba(88, 184, 255, 0.22);
  border-radius: 14px;
  padding: 0.2rem;
  padding-left: 1rem;
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.file-upload-button {
  background: rgba(88, 184, 255, 0.15);
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}

.file-upload-filename {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 820px) {
  .price-guarantee .tech-container {
    grid-template-columns: 1fr;
  }
}