@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #030712;
  --bg-gradient: radial-gradient(circle at top right, #0d1a3a, #030712 60%);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent-1: #00f2fe;
  --accent-2: #4facfe;
  --accent-gradient: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection {
  background: var(--accent-2);
  color: #fff;
}

a {
  color: var(--accent-1);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--text-main);
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
}
.brand img {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
}
.brand:hover img {
  transform: scale(1.05);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-main);
}
.nav-links {
  display: flex;
  gap: clamp(0.75rem, 1.3vw, 1.5rem);
  align-items: center;
}
.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links .btn {
  color: #fff;
}
.nav-links .btn::after {
  display: none;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 0.5rem;
}
.btn--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}
.btn--ghost:hover {
  background: var(--glass-bg);
  border-color: var(--accent-1);
  color: var(--accent-1);
}

/* === Hero Section === */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(60px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero__cta {
  display: flex;
  gap: 1rem;
}
.badges {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.75rem;
  margin-top: 3rem;
  list-style: none;
}
.badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--glass-bg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  white-space: nowrap;
}
.badges svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-1);
  fill: none;
}
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
}
.hero__art:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1280px) {
  .badges {
    grid-template-columns: 1fr;
    width: min(100%, 250px);
  }
}

/* === Sections & Cards === */
.section {
  padding: 5rem 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.01);
  border-block: 1px solid var(--glass-border);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}
.section-header p,
.cta-box p {
  color: var(--text-muted);
  font-size: 1.08rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.cards--compact {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.solutions-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-inline: auto;
  align-items: stretch;
}
.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
}
.solution-card__logo {
  display: flex;
  align-items: center;
  height: 58px;
  margin-bottom: 1.35rem;
}
.solution-card__logo img {
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}
.solution-card__logo--insert {
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
}
.solution-card__logo--insert img {
  max-width: 145px;
  max-height: 44px;
}
.solutions-actions,
.services-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.software-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.software-card__mark {
  width: fit-content;
  margin-bottom: 1.4rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--accent-1);
  color: var(--accent-1);
  font-size: 0.82rem;
  font-weight: 700;
}
.software-card__logo {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  margin-bottom: 1.2rem;
}
.software-card__logo img {
  width: auto;
  max-width: 210px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}
.software-card__logo--insert {
  width: fit-content;
  height: 64px;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
}
.software-card__logo--insert img {
  max-width: 165px;
  max-height: 48px;
}
.software-card h2 {
  font-size: 1.65rem;
}
.software-card h2 small {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.software-card .checklist {
  margin: 1.25rem 0 2rem;
}
.software-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  color: var(--accent-1);
  font-weight: 700;
}
.software-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.software-card__link:hover::after {
  transform: translateX(4px);
}
.license-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: 5rem;
  padding: 4rem 0;
  border-block: 1px solid var(--glass-border);
}
.license-section__intro h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}
.license-section__intro p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.license-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.license-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.license-steps li:first-child {
  padding-top: 0;
}
.license-steps li:last-child {
  border-bottom: 0;
}
.license-steps li > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 242, 254, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.08);
  color: var(--accent-1);
  font-weight: 700;
}
.license-steps strong {
  color: var(--text-main);
}
.license-steps p {
  margin-top: 0.25rem;
  color: var(--text-muted);
}
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  border-color: rgba(255, 255, 255, 0.15);
}
.card:hover::before {
  opacity: 1;
}
.card .icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 242, 254, 0.2);
}
.card .icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-1);
  fill: none;
}
.card p {
  color: var(--text-muted);
}

/* === Layout Grids === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-layout {
  align-items: stretch;
}
.about-layout {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 4.5rem);
}
.about-layout > .card {
  height: auto;
}
.about-benefits-card {
  padding: 1rem 0;
}
.about-benefits-card h2 {
  max-width: none;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.08;
}
.about-benefits-card h2 > span {
  display: block;
}
.about-heading-line {
  white-space: nowrap;
}
.about-benefits {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.3rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-benefits li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1.1rem;
  align-items: start;
  min-height: 42px;
  color: var(--text-main);
  font-size: clamp(1.05rem, 1.65vw, 1.32rem);
  line-height: 1.45;
}
.about-benefits svg {
  width: 38px;
  height: 38px;
  margin-top: 0.05rem;
  stroke: var(--accent-1);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.about-story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 285px;
  padding: clamp(2rem, 3.2vw, 3rem);
  background: rgba(13, 26, 58, 0.32);
}
.about-story-card::before {
  display: block;
}
.about-story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}
.about-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-main) !important;
  font-size: clamp(1.08rem, 1.42vw, 1.38rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  text-align: center;
}
.about-quote span {
  display: block;
  white-space: nowrap;
}
.about-quote-note {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted) !important;
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: center;
}

/* === CTA Section === */
.cta-box {
  background: linear-gradient(135deg, rgba(13, 26, 58, 0.8), rgba(3, 7, 18, 0.9));
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
}
.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.cta-box > * {
  position: relative;
  z-index: 1;
}

/* === Map & Contact === */
.map {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.map--service-area {
  height: clamp(520px, 52vw, 640px);
}
.map--leaflet {
  background: #0b1220;
}
.map .leaflet-tile {
  outline: 1px solid transparent;
}
.map--contact {
  height: 280px;
  background: #dce5e8;
}
.map--contact .leaflet-tile-pane {
  filter: saturate(0.72) contrast(0.94) brightness(0.96);
}
.map--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 500;
  border-radius: inherit;
  box-shadow: inset 0 0 42px rgba(3, 7, 18, 0.16);
  pointer-events: none;
}
.map .leaflet-control-zoom {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.map .leaflet-control-zoom a {
  background: rgba(3, 7, 18, 0.88);
  color: var(--text-main);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.map .leaflet-control-zoom a:hover {
  background: rgba(13, 26, 58, 0.96);
  color: var(--accent-1);
}
.map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.88);
  color: #1f2937;
  border-radius: var(--radius-sm) 0 0 0;
  font-size: 0.72rem;
}
.map-pin {
  position: relative;
}
.map-pin span {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  position: relative;
  transform: rotate(-45deg);
}
.map-pin img {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 32px;
  height: 32px;
  transform: rotate(45deg);
}
.map-town-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(0, 242, 254, 0.36);
  border-radius: 999px;
  background: rgba(3, 7, 18, 0.78);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.map-town-label--above span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(3, 7, 18, 0.9);
}
.page-lead {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.18rem;
}
.checklist,
.steps {
  list-style: none;
}
.checklist {
  display: grid;
  gap: 0.75rem;
  color: var(--text-muted);
}
.checklist li {
  position: relative;
  padding-left: 1.9rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-weight: 700;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: start;
  color: var(--text-muted);
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
}
.download {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.remote-help-layout {
  align-items: stretch;
}
.remote-help-layout > .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(2rem, 3vw, 3rem);
  background: rgba(3, 7, 18, 0.72);
  border-color: rgba(255, 255, 255, 0.07);
}
.remote-help-layout > .card:hover {
  transform: none;
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.12);
}
.remote-help-layout > .card::before {
  display: none;
}
.remote-help-layout > .card > h2 {
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}
.remote-guide-card .steps {
  margin-top: 0.5rem;
}
.remote-download {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
}
.remote-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  min-height: 82px;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 242, 254, 0.28);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
}
.remote-download__button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 242, 254, 0.4);
}
.remote-download__button svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}
.remote-download__note {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.muted {
  color: var(--text-muted);
}
.faq {
  display: grid;
  gap: 0;
  margin-top: 0.25rem;
}
.faq details {
  padding: 1.35rem 0;
  border: 0;
  border-bottom: 1px solid var(--glass-border);
  background: transparent;
}
.faq details:last-child {
  border-bottom: 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  color: var(--accent-1);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq p {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.contact-direct {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.contact-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.contact-panel__header,
.form__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.contact-panel__header h2,
.form__header h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}
.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 0 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.contact-item:last-child {
  border-bottom: 0;
}
.contact-item__icon {
  width: 46px;
  height: 46px;
  padding: 0.72rem;
  border: 1px solid rgba(0, 242, 254, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.08);
  color: var(--accent-1);
}
.contact-item__label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.contact-item__label small {
  display: block;
  margin-top: 0.05rem;
  color: var(--accent-1);
  font-size: 0.78rem;
  font-weight: 600;
}
.contact-email {
  min-width: 0;
}
.contact-email__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}
.contact-email__grid > div {
  min-width: 0;
}
.contact-email__grid > div + div {
  padding-left: 1.25rem;
  border-left: 1px solid var(--glass-border);
}
.contact-email__type {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--accent-1);
  font-size: 0.78rem;
  font-weight: 600;
}
.contact-email__grid a {
  overflow-wrap: anywhere;
}
.contact-item a,
.contact-item span:not(.contact-item__label) {
  color: var(--text-main);
  font-weight: 600;
}
.contact-item small {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}
.form {
  display: grid;
  gap: 1.2rem;
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.contact-panel::before,
.form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}
.contact-panel:hover,
.form:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}
.contact-panel:hover::before,
.form:hover::before {
  opacity: 1;
}
.form__header {
  margin-bottom: 0.3rem;
}
.form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-main);
}
.form input, .form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition-smooth);
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.2);
}

/* === Footer === */
.footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  background: #010308;
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
}
.footer-logo {
  height: 64px;
  width: auto;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.list-unstyled {
  list-style: none;
}
.list-unstyled li {
  margin-bottom: 0.8rem;
}
.list-unstyled a {
  color: var(--text-muted);
}
.list-unstyled a:hover {
  color: var(--accent-1);
  padding-left: 5px;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.contact-line strong {
  color: var(--text-main);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.contact-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent-1);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__bottom {
  border-top: 1px solid var(--glass-border);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* === Animations === */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero__grid, .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .software-grid,
  .license-section {
    grid-template-columns: 1fr;
  }
  .license-section {
    margin-top: 3.5rem;
    padding: 3rem 0;
  }
  .map--service-area {
    height: 500px;
  }
  .nav__wrap {
    position: relative;
    padding: 0.4rem 0;
  }
  .brand img {
    height: 56px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(3, 7, 18, 0.96);
    box-shadow: var(--glass-shadow);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 0.85rem 1rem;
  }
  .nav-links .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
  .hero {
    text-align: center;
    padding: 3rem 0;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .badges {
    margin-inline: auto;
  }
  .cta-box {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solutions-actions,
  .services-actions {
    flex-direction: column;
  }
  .solutions-actions .btn,
  .services-actions .btn {
    width: 100%;
  }
  .about-benefits-card {
    padding: 0.5rem 0;
  }
  .about-benefits-card h2 {
    max-width: none;
  }
  .about-heading-line {
    white-space: normal;
  }
  .about-quote span {
    white-space: normal;
  }
  .about-benefits li {
    min-height: 38px;
    grid-template-columns: 34px 1fr;
    gap: 0.85rem;
  }
  .about-benefits svg {
    width: 32px;
    height: 32px;
  }
  .about-story-card {
    min-height: 260px;
    padding: 1.75rem;
  }
  .contact-email__grid {
    grid-template-columns: 1fr;
  }
  .contact-email__grid > div + div {
    padding-top: 0.65rem;
    padding-left: 0;
    border-top: 1px solid var(--glass-border);
    border-left: 0;
  }
  .map--contact {
    height: 240px;
  }
  .contact-panel,
  .form {
    padding: 1.5rem;
  }
  .remote-download__button {
    min-height: 68px;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    font-size: 1.25rem;
  }
  .remote-download__button svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
