:root {
  --primary-blue: #4356d6;
  --hover-blue: #051aa3;
  --bg-light: #fafbff;
  --bg-white: #ffffff;
  --border-light: #e2e7ff;
  --text-dark: #282828;
  --text-gray: #555555;
  --font-family: 'Roboto', sans-serif;
  --transition-speed: 0.3s;
  --blue-filter: invert(28%) sepia(83%) saturate(2984%) hue-rotate(225deg) brightness(96%) contrast(91%);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}

.header {
  width: 100%;
  background-color: var(--bg-light);
  position: relative;
  z-index: 10;
}

.navbar-container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 48px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  transition: color var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary-blue);
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.contact-btn .btn-icon {
  width: 20px;
  height: 20px;
  transition: filter var(--transition-speed) ease;
}

.contact-btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-blue);
}

.contact-btn:hover .btn-icon {
  filter: var(--blue-filter);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
  z-index: 998;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.drawer-header .logo img {
  height: 40px;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.drawer-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  transition: color var(--transition-speed) ease;
}

.drawer-links a:hover {
  color: var(--primary-blue);
}

.drawer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
}

.drawer-contact-btn {
  width: 100%;
}

.hero-section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: var(--bg-light);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 620px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 85px;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 650px;
}

.highlight-underline {
  color: var(--primary-blue);
  position: relative;
  display: inline-block;
}

.underline-vec {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-content p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 24px;
}

.hero-features li .check-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.primary-btn {
  background-color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  color: var(--bg-white);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.primary-btn:hover {
  background-color: var(--bg-white);
  color: var(--primary-blue);
}

.secondary-btn {
  background-color: var(--bg-white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.secondary-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.hero-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.compliance-section {
  width: 100%;
  background-color: var(--bg-white);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.compliance-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.decor-chevrons {
  position: absolute;
  left: 100px;
  bottom: 0px;
  width: 120px;
  height: auto;
  pointer-events: none;
}

.compliance-left {
  flex: 1;
  max-width: 580px;
  position: relative;
}

.heading-wrapper {
  position: relative;
  margin-bottom: 60px;
  display: inline-block;
}

.compliance-left h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 70px;
  color: var(--text-dark);
  max-width: 480px;
}

.color-blue {
  color: var(--primary-blue);
}

.decor-arrow {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 60px;
  height: auto;
  pointer-events: none;
}

.compliance-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
}

.compliance-illustration img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.compliance-right {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
}

.section-desc {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compliance-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px;
  transition: all var(--transition-speed) ease;
}

.card-icon-container {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-info h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
  transition: color var(--transition-speed) ease;
}

.card-info p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-gray);
}

.compliance-card:hover {
  background-color: var(--bg-white);
  border-color: var(--hover-blue);
  box-shadow: 0 10px 30px rgba(67, 86, 214, 0.08);
}

@media (max-width: 1023px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 54px;
    line-height: 75px;
    max-width: 600px;
  }

  .hero-features {
    align-items: flex-start;
    max-width: fit-content;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .compliance-left,
  .compliance-right {
    display: contents;
  }

  .compliance-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .heading-wrapper {
    order: 1;
    text-align: center;
    margin-bottom: 24px;
  }

  .compliance-left h2 {
    font-size: 46px;
    line-height: 60px;
    max-width: 100%;
    text-align: center;
  }

  .decor-arrow {
    right: 10px;
    bottom: -50px;
  }

  .section-desc {
    order: 2;
    text-align: center;
    margin-bottom: 32px;
    max-width: 680px;
  }

  .compliance-illustration {
    order: 3;
    margin-bottom: 40px;
  }

  .cards-list {
    order: 4;
    width: 100%;
    max-width: 680px;
  }

  .decor-chevrons {
    left: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .decor-chevrons {
    left: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar .contact-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 32px;
  }

  .hero-features li {
    font-size: 18px;
    line-height: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .compliance-left h2 {
    font-size: 34px;
    line-height: 48px;
  }

  .decor-arrow {
    width: 40px;
    right: 0px;
    bottom: -40px;
  }

  .section-desc {
    font-size: 18px;
    line-height: 32px;
  }

  .compliance-card {
    padding: 20px;
    gap: 16px;
  }

  .card-info h3 {
    font-size: 19px;
  }

  .card-info p {
    font-size: 18px;
  }

  .decor-chevrons {
    left: 16px;
    width: 80px;
  }
}
