@font-face {
  font-family: 'Orbitron-Bold';
  src: url('/css/fonts/Orbitron-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
.brand-name,
.brand-tagline {
  font-family: 'Orbitron-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #07a8dd;
}
.gradient-primary {
  background: linear-gradient(135deg,#00d4ff,#0099ff);
}
.transition-smooth {
  transition: all 0.3s ease;
}
.transition-medium {
  transition: all 0.4s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #001322;
  color: #ffffff;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}
.menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,19,34,0.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: all 0.4s ease;
}
.menu-backdrop.active {
  display: block;
  opacity: 1;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(0,19,34,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.logo {
  height: 135px;
  width: auto;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1003;
}
body:not(.at-top) .logo {
  height: 45px;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-main > ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-main > ul > li {
  position: relative;
}
.nav-main > ul > li > a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 0.5rem 0;
}
.nav-main > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#00d4ff,#0099ff);
  transition: all 0.3s ease;
}
.nav-main > ul > li > a:hover {
  color: #ffffff;
}
.nav-main > ul > li > a:hover::after {
  width: 100%;
}
.nav-main > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(0,19,34,0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-main > ul > li > ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.nav-main > ul > li > ul li a:hover {
  background: rgba(0,212,255,0.1);
  color: #00d4ff;
}
.nav-main > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-main > ul > li:last-child > a {
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  color: #001322;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,212,255,0.3);
}
.nav-main > ul > li:last-child > a::after {
  display: none;
}
.nav-main > ul > li:last-child > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,212,255,0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1003;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #00d4ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px,8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px,-7px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: rgba(0,19,34,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  overflow: hidden;
  z-index: 1001;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu ul ul {
  display: none;
}
.mobile-menu li {
  margin-bottom: 1.5rem;
}
.mobile-menu li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.mobile-menu li a .arrow {
  font-size: 1.5rem;
  color: #00d4ff;
}
.mobile-menu li:last-child {
  margin-top: 1rem;
}
.mobile-menu li:last-child a {
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  color: #001322;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,212,255,0.3);
  justify-content: center;
}
.mobile-menu-main {
  transition: all 0.4s ease;
}
.mobile-menu-main.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}
.mobile-submenu {
  position: absolute;
  top: 2rem;
  left: 100%;
  right: 0;
  padding: 0 2rem;
  transition: all 0.4s ease;
  opacity: 0;
}
.mobile-submenu.active {
  left: 0;
  opacity: 1;
}
.submenu-back {
  color: #00d4ff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.submenu-back .arrow {
  font-size: 1.5rem;
}
.submenu-back:hover {
  color: #ffffff;
}
main {
  margin-top: 275px;
  min-height: calc(-425vh);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
main > *:not(section) {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
main p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}
main ul,
main ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
body:not(.at-top) main {
  margin-top: 185px;
  min-height: calc(-335vh);
}
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg,#ffffff 0%,#00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
}
.primary-btn {
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  color: #001322;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,212,255,0.4);
}
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,212,255,0.6);
}
.secondary-btn {
  background: transparent;
  color: #00d4ff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid #00d4ff;
  transition: all 0.3s ease;
}
.secondary-btn:hover {
  background: rgba(0,212,255,0.1);
  transform: translateY(-3px);
}
.hero-visual {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.process-step {
  background: rgba(255,255,255,0.03);
  border-left: 4px solid #00d4ff;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}
.process-step:hover {
  background: rgba(0,212,255,0.05);
  border-left-width: 6px;
  transform: translateX(8px);
}
.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.process-step p {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.process-number {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: 700;
  color: #001322;
  margin-bottom: 1rem;
}
.features {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 4rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.section-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}
.feature-card {
  background: linear-gradient(135deg,rgba(0,212,255,0.05) 0%,rgba(0,153,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
}
.feature-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.15);
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.feature-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem 2rem;
  margin-top: 6rem;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-section h4 {
  color: #00d4ff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-section p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-section p a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section p a:hover {
  color: #00d4ff;
}
.footer-nav ul {
  list-style: none;
}
.footer-nav li {
  margin-bottom: 0.8rem;
}
.footer-nav li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer-nav li a:hover {
  color: #00d4ff;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}
.page-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.page-hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg,#ffffff 0%,#00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumb {
  margin-bottom: 1.25rem;
}
.breadcrumb ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.breadcrumb li {
  color: rgba(255,255,255,0.4);
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.4rem;
  color: rgba(255,255,255,0.25);
}
.breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #00d4ff;
}
.breadcrumb .current {
  color: rgba(255,255,255,0.7);
}
.page-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.page-content p {
  color: rgba(255,255,255,0.75);
}
.page-content a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-content a:hover {
  text-decoration: underline;
}
.solutions-grid {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}
.solution-card {
  display: block;
  background: linear-gradient(135deg,rgba(0,212,255,0.05) 0%,rgba(0,153,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
}
.solution-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.15);
}
.solution-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.solution-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.quote-form {
  max-width: 600px;
}
.quote-form .quote-success {
  color: #00d4ff;
  font-size: 1.1rem;
}
.quote-form .quote-error {
  color: #ff6b6b;
  margin-bottom: 1rem;
}
.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form select,
.quote-form textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  transition: all 0.3s ease;
}
.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
}
.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}
.quote-form input[type="submit"] {
  background: linear-gradient(135deg,#00d4ff,#0099ff);
  color: #001322;
  border: none;
  border-radius: 8px;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.quote-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,212,255,0.6);
}
.insights-grid {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 2rem;
}
.insights-card {
  display: block;
  background: linear-gradient(135deg,rgba(0,212,255,0.05) 0%,rgba(0,153,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s ease;
}
.insights-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,212,255,0.15);
}
.insights-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin: 0.5rem 0 1rem;
}
.insights-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.insights-meta {
  color: #00d4ff !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.insights-post {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}
.insights-post img {
  max-width: 100%;
  border-radius: 12px;
}
.insights-post a {
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.insights-post a:hover {
  text-decoration: underline;
}
.gallery-images {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
}
.gallery-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.gallery-image img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-image figcaption {
  padding: 1rem 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
@media (max-width: 968px) {
  .nav-main {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    top: 110px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-visual {
    height: auto;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .logo {
    height: 90px;
  }
  body:not(.at-top) .logo {
    height: 40px;
  }
  main {
    margin-top: 160px;
  }
  body:not(.at-top) main {
    margin-top: 110px;
  }
}
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
}
