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

:root {
  --primary-color: #283593;
  --text-primary: #111827;
  --text-secondary: #5f6673;
  --border-soft: rgba(17, 24, 39, 0.08);
  --background-main: #f5f4f1;
  --container-width: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background-main);
  background-image: radial-gradient(
    rgba(17, 24, 39, 0.03) 0.7px,
    transparent 0.7px
  );
  background-size: 6px 6px;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  padding-inline: 6px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 96px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-menu a {
  text-decoration: none;
  color: #1f2937;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.nav-arrow {
  margin-left: 3px;
  font-size: 10px;
}

.btn-primary {
  width: 107px;
  height: 44px;
  border-radius: 10px;
  background: #2b3990;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(43, 57, 144, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #243082;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .site-header .container {
    width: calc(100% - 32px);
  }

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

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    width: 108px;
    display: block;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    color: #111827;
    flex-shrink: 0;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-soft);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .btn-primary {
    display: none;
  }
}

/* HERO */

.hero-section {
  padding-top: 28px;
  padding-bottom: 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* HERO LAYOUT */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* PRODUCT GALLERY */
.product-gallery {
  width: 100%;
}

/* MAIN IMAGE */
.main-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.06);
  isolation: isolate;
  cursor: zoom-in;
}

.main-product-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98);
  transition: transform 0.25s ease;
}

.image-zoom {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  transition: opacity 0.2s ease;
}

/* GALLERY BUTTONS */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  z-index: 5;
}

.gallery-btn:hover {
  transform: translateY(-50%) scale(1.04);
}

.prev-btn {
  left: 18px;
}

.next-btn {
  right: 18px;
}

/* THUMBNAILS */
.thumbnail-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.thumbnail {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.thumbnail:hover {
  transform: translateY(-2px);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active-thumb {
  border: 2px solid #2b3990;
}

/* HERO CONTENT */

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* CERTIFICATIONS */

.certification-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}

.certification-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.certification-badge {
  height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e1e3e8;
  background: #f7f8f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.certification-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.certification-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1;
}

@media (max-width: 768px) {
  .certification-badges {
    gap: 8px;
  }

  .certification-badge {
    height: 32px;
    padding: 6px 10px;
  }

  .certification-badge span {
    font-size: 12px;
  }
}
/* HEADING */

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 650;
  color: #111827;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: #374151;
  font-size: 16px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2b3990;
}

.price-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.price-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 38px;
  margin-bottom: 18px;
}

.price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.price-tags span {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f4e7b6;
  font-size: 13px;
}

.price-card p {
  color: #6b7280;

  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#quote-btn {
  width: 189px;
  height: 52px;
  border-radius: 14px;
  background: #2b3990;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(43, 57, 144, 0.16);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-secondary {
  height: 52px;
  padding-inline: 24px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.65);
}

.tech-download {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.download-btn {
  height: 54px;
  padding-inline: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.trusted-section {
  margin-top: 72px;
  text-align: center;
}

.trusted-section p {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 150px;
  opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 24px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .main-product-image {
    height: 420px;
  }

  .thumbnail {
    width: 72px;
    height: 72px;
  }

  .trusted-logos {
    justify-content: center;
  }

  .price-card h3 {
    font-size: 28px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .technical-section {
    padding: 84px 0;
  }

  .technical-table th,
  .technical-table td {
    padding: 16px;
  }

  .features-section {
    padding: 84px 0;
  }

  .features-heading h2 {
    font-size: 34px;
  }

  .features-heading p {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 20px;
  }
}

.feature-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.quote-btn {
  height: 54px;
  padding-inline: 28px;
  border: none;
  border-radius: 14px;
  background: #2b3990;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(43, 57, 144, 0.16);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  background: #243082;
  box-shadow: 0 18px 32px rgba(43, 57, 144, 0.22);
}

/* TECHNICAL SECTION */

.technical-section {
  background: #07152f;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.technical-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04),
    transparent 45%
  );
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: -1.4px;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.technical-table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.technical-table thead {
  background: rgba(255, 255, 255, 0.06);
}

.technical-table th {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 18px 22px;
  text-align: left;
  letter-spacing: 0.08em;
}

.technical-table td {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  transition: background 0.2s ease;
}

.technical-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.technical-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.technical-btn {
  height: 52px;
  padding-inline: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.technical-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.technical-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.technical-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

/* FEATURES SECTION */

.features-section {
  padding: 110px 0;
}

.features-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.features-heading h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
  margin-bottom: 18px;
  letter-spacing: -1.3px;
}

.features-heading p {
  color: #6a7077;
  font-size: 18px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d9dde4;
  border-radius: 18px;
  padding: 24px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 57, 144, 0.2);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.feature-card:hover .feature-icon {
  background: #2b3990;
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(43, 57, 144, 0.08);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.feature-icon i {
  font-size: 20px;
  color: #2b3990;
}

.feature-card h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.feature-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.75;
}

.features-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.feature-btn {
  width: 180px;
}

.feature-card {
  opacity: 0;
  transform: translateY(20px);
  animation: featureFade 0.6s ease forwards;
}

.feature-card:nth-child(2) {
  animation-delay: 0.08s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.16s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.24s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.32s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.4s;
}

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

/* FAQ SECTION */

.faq-section {
  padding: 120px 0;
}

.faq-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.faq-heading h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #111827;
}

.faq-heading h2 span {
  color: #2b3990;
}

.faq-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  text-align: left;
}

.faq-question i {
  color: #2b3990;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding: 0 30px 28px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* CATALOG BOX */

.catalog-box {
  margin-top: 42px;
  padding: 34px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalog-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111827;
}

.catalog-content p {
  color: #6b7280;
  line-height: 1.7;
}

.catalog-btn {
  border: none;
  background: #2b3990;
  color: white;
  height: 54px;
  padding-inline: 34px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.catalog-btn:hover {
  transform: translateY(-2px);
  background: #243082;
}

/* MODAL */

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.catalog-modal.active {
  display: flex;
}

.catalog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.catalog-modal-content {
  position: relative;
  width: min(92%, 520px);
  background: white;
  border-radius: 28px;
  padding: 42px;
  z-index: 2;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: rgba(17, 24, 39, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.catalog-modal-content h3 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #111827;
}

.catalog-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-group input {
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  padding-inline: 18px;
  font-size: 15px;
  outline: none;
}

.form-group input:focus {
  border-color: #2b3990;
}

.submit-btn {
  height: 58px;
  border: none;
  border-radius: 16px;
  background: #2b3990;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
}

/* GLOBAL MODAL */

.global-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.global-modal.active {
  display: flex;
}

.global-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
}

.global-modal-content {
  position: relative;
  width: min(92%, 540px);
  background: white;
  border-radius: 28px;
  padding: 42px;
  z-index: 2;
  animation: modalFade 0.3s ease;
}

.close-global-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 24, 39, 0.06);
  cursor: pointer;
}

.global-modal-content h3 {
  font-size: 32px;
  margin-bottom: 28px;
  color: #111827;
}

.global-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.global-form textarea {
  min-height: 120px;
  resize: none;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.global-form textarea:focus {
  border-color: #2b3990;
}

/* TOAST */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111827;
  color: white;
  padding: 16px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast i {
  color: #22c55e;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .faq-section {
    padding: 90px 0;
  }

  .faq-heading h2 {
    font-size: 38px;
  }

  .faq-question {
    padding: 22px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }

  .catalog-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-btn {
    width: 100%;
  }

  .catalog-modal-content {
    padding: 32px 24px;
  }

  .catalog-modal-content h3 {
    font-size: 28px;
  }
}

/* APPLICATIONS SECTION */

.applications-section {
  padding: 120px 0;
  overflow: hidden;
}

.applications-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.applications-heading h2 {
  font-size: 54px;
  line-height: 1.05;
  max-width: 620px;
  margin-bottom: 18px;
}

.applications-heading p {
  max-width: 620px;
  color: #6b7280;
  line-height: 1.7;
}

.applications-arrows {
  display: flex;
  gap: 14px;
}

.applications-arrows button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: white;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.applications-arrows button:hover {
  transform: translateY(-2px);
  background: #f3f4f6;
}

.industry-slider {
  overflow: hidden;
  position: relative;
}

.industry-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollIndustries 28s linear infinite;
}

.industry-slider:hover .industry-track {
  animation-play-state: paused;
}

.industry-card {
  width: 320px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1));
}

.industry-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: white;
}

.industry-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.industry-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

@keyframes scrollIndustries {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .applications-section {
    padding: 80px 0;
  }

  .applications-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .applications-heading h2 {
    font-size: 38px;
  }

  .industry-card {
    width: 260px;
    height: 360px;
  }
}

/* PROCESS SECTION */

.process-section {
  padding: 120px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: 52px;
  color: #0d0d0d;
  line-height: 1.08;
  margin-bottom: 18px;
}

.section-heading p {
  color: #6b7280;
  line-height: 1.8;
}

.process-wrapper {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.process-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.process-tabs::-webkit-scrollbar {
  display: none;
}

.process-tab {
  height: 44px;
  padding-inline: 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f8fafc;
  color: #4b5563;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.process-tab:hover {
  transform: translateY(-2px);
}

.process-tab.active {
  background: #2b3990;
  color: white;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.process-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(43, 57, 144, 0.08);
  color: #2b3990;
  font-size: 13px;
  font-weight: 600;
}

.process-title {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.process-description {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 24px;
}

.process-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.process-points li {
  position: relative;
  padding-left: 24px;
  color: #111827;
}

.process-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2b3990;
  position: absolute;
  left: 0;
  top: 8px;
}

.process-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.process-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

.process-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .process-content {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 40px;
  }
}

/* TESTIMONIALS SECTION */

.testimonials-section {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.testimonials-heading h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.testimonials-heading p {
  color: #6b7280;
  line-height: 1.8;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slider::before,
.testimonials-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-slider::before {
  left: 0;
  background: linear-gradient(to right, #f5f4f1, transparent);
}

.testimonials-slider::after {
  right: 0;
  background: linear-gradient(to left, #f5f4f1, transparent);
}

.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: testimonialsScroll 34s linear infinite;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 420px;
  min-height: 320px;
  padding: 34px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
}

.quote-icon {
  font-size: 34px;
  color: #2b3990;
  margin-bottom: 24px;
}

.testimonial-card h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #111827;
}

.testimonial-user h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-user span {
  color: #6b7280;
  font-size: 14px;
}

@keyframes testimonialsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-heading h2 {
    font-size: 38px;
  }

  .testimonial-card {
    width: 300px;
    min-height: auto;
    padding: 26px;
  }

  .testimonial-card h3 {
    font-size: 24px;
  }

  .testimonials-slider::before,
  .testimonials-slider::after {
    width: 60px;
  }
}

/* PORTFOLIO SECTION */

.portfolio-section {
  padding: 120px 0;
}

.portfolio-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.portfolio-heading h2 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.portfolio-heading p {
  color: #6b7280;
  line-height: 1.8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.portfolio-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 22px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.portfolio-content {
  margin-bottom: 22px;
}

.portfolio-content h3 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.portfolio-content p {
  color: #6b7280;
  line-height: 1.8;
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

.portfolio-btn {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(43, 57, 144, 0.12);
  background: #f8f9ff;
  color: #2b3990;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.portfolio-btn:hover {
  background: #eef1ff;
  transform: translateY(-2px);
}

.portfolio-cta {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.portfolio-cta h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.portfolio-cta p {
  color: #6b7280;
}

.expert-btn {
  height: 56px;
  padding-inline: 24px;
  border: none;
  border-radius: 14px;
  background: #2b3990;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.expert-btn:hover {
  transform: translateY(-2px);
  background: #243082;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-heading h2 {
    font-size: 40px;
  }

  .portfolio-content h3 {
    font-size: 28px;
  }

  .portfolio-cta h3 {
    font-size: 30px;
  }

  .expert-btn {
    width: 100%;
    justify-content: center;
  }
}

/* RESOURCES SECTION */

.resources-section {
  padding: 100px 0;
}

.resources-heading {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 54px;
}

.resources-heading h2 {
  font-size: 54px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
}

.resources-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
}

.resources-box {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  overflow: hidden;
}

.resource-item {
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item span {
  font-size: 16px;
  color: #111827;
  font-weight: 500;
}

.resource-download-btn {
  border: none;
  background: transparent;
  color: #2b3990;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.resource-download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .resources-section {
    padding: 70px 0;
  }

  .resources-heading h2 {
    font-size: 38px;
  }

  .resources-heading p {
    font-size: 16px;
  }

  .resource-item {
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CTA SECTION */

.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: #2b3990;
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 64px;
  line-height: 1.1;
  color: white;
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 680px;
}

.cta-content p {
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 720px;
}

.cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 26px;
}

.cta-content span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
}

.cta-content span a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.cta-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.cta-form {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: 28px;
  padding: 32px;
}

.cta-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #111827;
}

.cta-form input,
.cta-form select {
  width: 100%;
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding-inline: 18px;
  font-size: 15px;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s ease;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: #2b3990;
}

.phone-group {
  display: flex;
  gap: 12px;
}

.phone-group select {
  width: 100px;
}

.cta-form button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #1f2937;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  background: #111827;
}

/* RESPONSIVE CTA */

@media (max-width: 1100px) {
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-form-wrapper {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-box {
    padding: 28px;
    border-radius: 26px;
    gap: 36px;
  }

  .cta-content h2 {
    font-size: 42px;
  }

  .cta-content p {
    font-size: 17px;
  }

  .cta-form {
    padding: 24px;
  }
}

/* FOOTER */

.site-footer {
  padding: 90px 0 24px;
}

.footer-top {
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.footer-brand img {
  width: 120px;
  display: block;
}

.footer-top h3 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  text-align: right;
}

.footer-top h3 span {
  color: #2b3990;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 15px;
  margin-bottom: 22px;
  color: #111827;
}

.footer-column a,
.footer-column p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #2b3990;
}

.footer-column i {
  color: #2b3990;
  margin-top: 5px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: white;
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.footer-socials a:hover {
  background: #2b3990;
}

.footer-socials a:hover i {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2b3990;
}

/* RESPONSIVE FOOTER */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top h3 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-top {
    padding: 24px;
  }

  .footer-top h3 {
    font-size: 26px;
  }
}
