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

:root {
  --primary: #003153;
  --primary-dark: #001a2b;
  --accent: #007BA7;
  --accent-hover: #005a7a;
  --bg-primary: #E5E4E2;
  --bg-secondary: #DBD7D2;
  --bg-card: #FFFFF0;
  --text-primary: #003153;
  --text-secondary: #4a4a4a;
  --border-color: #c0c0c0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 18px;
}

.kz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mq-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(229, 228, 226, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mq-header.scrolled {
  background: rgba(229, 228, 226, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dw-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.vn-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.qr-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.qr-nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.qr-nav-menu a:hover {
  color: var(--accent);
}

.bp-cta-phone {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.bp-cta-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.nx-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nx-hamburger span {
  width: 24px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nx-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nx-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nx-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.ck-main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.ht-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 49, 83, 0.9), rgba(0, 123, 167, 0.8)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover fixed;
  color: white;
  position: relative;
  overflow: hidden;
}

.ht-hero-content {
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.ht-hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ht-hero-subtitle {
  font-size: 22px;
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 400;
}

.jm-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.jm-btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 123, 167, 0.3);
}

.rk-section {
  padding: 80px 0;
}

.rk-section:nth-child(even) {
  background: var(--bg-secondary);
}

.rk-section:nth-child(odd) {
  background: var(--bg-primary);
}

.wp-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.wp-section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.tm-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 49, 83, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tm-card:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 49, 83, 0.2);
}

.tm-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}

.tm-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.tm-card-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.bz-stats-section {
  background: var(--primary);
  color: white;
  text-align: center;
}

.bz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.bz-stat-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.bz-stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.bz-stat-label {
  font-size: 18px;
  margin-top: 8px;
  opacity: 0.9;
}

.lp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.lp-team-member {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 49, 83, 0.1);
  transition: all 0.3s ease;
}

.lp-team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 49, 83, 0.2);
}

.lp-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.lp-member-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.lp-member-role {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 16px;
}

.lp-member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

.ys-contact-form {
  background: var(--bg-card);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0, 49, 83, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.ys-form-group {
  margin-bottom: 24px;
}

.ys-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
}

.ys-form-input,
.ys-form-textarea,
.ys-form-select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: white;
}

.ys-form-input:focus,
.ys-form-textarea:focus,
.ys-form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 123, 167, 0.1);
}

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

.xf-testimonial {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 49, 83, 0.1);
}

.xf-testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.xf-testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
}

.xf-testimonial-company {
  color: var(--accent);
  font-size: 16px;
  margin-top: 4px;
}

.mk-footer {
  background: var(--primary);
  color: white;
  padding: 64px 0 32px;
}

.mk-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.mk-footer-section h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent);
}

.mk-footer-section p,
.mk-footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.mk-footer-section a:hover {
  color: var(--accent);
}

.mk-footer-links {
  list-style: none;
}

.mk-footer-links li {
  margin-bottom: 12px;
}

.mk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.vz-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 16px 0;
  z-index: 9998;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.vz-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vz-cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.vz-cookie-actions {
  display: flex;
  gap: 16px;
}

.vz-btn-small {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.vz-btn-accept {
  background: var(--accent);
  color: white;
}

.vz-btn-accept:hover {
  background: var(--accent-hover);
}

.vz-btn-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.vz-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.po-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.po-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 123, 167, 0.1);
  animation: float 6s ease-in-out infinite;
}

.po-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.po-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.po-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  right: 20%;
  animation-delay: 4s;
}

.fd-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.fd-content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin: 48px 0 24px;
  color: var(--primary);
}

.fd-content-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--primary);
}

.fd-content-wrapper p {
  margin-bottom: 20px;
}

.fd-content-wrapper ul,
.fd-content-wrapper ol {
  margin: 20px 0;
  padding-left: 32px;
}

.fd-content-wrapper li {
  margin-bottom: 8px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .qr-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .qr-nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nx-hamburger {
    display: flex;
  }

  .bp-cta-phone {
    display: none;
  }

  .ht-hero-title {
    font-size: 32px;
  }

  .ht-hero-subtitle {
    font-size: 18px;
  }

  .wp-section-title {
    font-size: 28px;
  }

  .kz-container {
    padding: 0 16px;
  }

  .rk-section {
    padding: 48px 0;
  }

  .gv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ys-contact-form {
    padding: 32px 24px;
  }

  .vz-cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .vz-cookie-actions {
    justify-content: center;
  }
}