:root {
  --primary: #0d2f70;
  --secondary: #74b4da;
  --zinc-500: #71717a;
  --zinc-200: #e4e4e7;
  --white: #ffffff;
  --black: #000000;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

body p {
  letter-spacing: -0.01em !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 76px; /* tinggi navbar agar konten tidak tertutup */
  background: linear-gradient(107.54deg, #0d2f70 0%, #4172a5 50%, #0d2f70 100%);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Grid Pattern Overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1.4px, transparent 1.4px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1.4px, transparent 1.4px);
  background-size: 50px 50px;
  opacity: 1;
  pointer-events: none;
}

/* Navbar */
.navbar {
  background: transparent;
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar.navbar-scrolled,
.navbar.navbar-menu-open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 6px 20px rgba(13, 47, 112, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  max-width: min(100%, 440px);
  text-decoration: none;
}

.navbar-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  color: var(--white) !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.015em;
  min-height: 36px;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #ffffff1a;
  color: var(--white) !important;
}

.navbar.navbar-scrolled .nav-link,
.navbar.navbar-menu-open .nav-link {
  color: var(--primary) !important;
}

.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active,
.navbar.navbar-menu-open .nav-link:hover,
.navbar.navbar-menu-open .nav-link.active {
  background: #eef3fb;
  color: var(--primary) !important;
}

.navbar-toggler {
  border: 2px solid var(--white);
  padding: 0.5rem 0.75rem;
}

.navbar.navbar-scrolled .navbar-toggler,
.navbar.navbar-menu-open .navbar-toggler {
  border-color: var(--primary);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  transition: opacity 0.2s ease;
}

/* Hamburger icon (default) */
.navbar-toggler .icon-hamburger {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-size: 100%;
}

/* Close (X) icon - hidden by default, ukuran sama dengan hamburger (1.5em) */
.navbar-toggler .icon-close {
  display: none;
  background: none;
  width: 1.5em;
  height: 1.5em;
  font-size: 1em;
  color: var(--white);
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.navbar.navbar-scrolled .navbar-toggler .icon-hamburger,
.navbar.navbar-menu-open .navbar-toggler .icon-hamburger {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813, 47, 112, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.navbar-scrolled .navbar-toggler .icon-close,
.navbar.navbar-menu-open .navbar-toggler .icon-close {
  color: var(--primary);
}

.navbar-toggler .icon-close i {
  font-size: 1em;
  line-height: 1;
}

/* Saat menu terbuka (expanded): tampilkan X, sembunyikan hamburger */
.navbar-toggler[aria-expanded="true"] .icon-hamburger {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .icon-close {
  display: inline-flex;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 4rem 0;
}

.hero-content .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Intro Pill */
.intro-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  text-align: center;
}

/* Main Heading */
.hero-heading {
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-heading-line1 {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  display: block;
}

.hero-heading-line2 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  display: block;
}

/* Description */
.hero-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.27px;
  color: var(--white);
  text-align: center;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-learn-more,
.btn-about-learn {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 44px;
  gap: 8px;
  background-color: var(--secondary);
  color: var(--white) !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 16px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.btn-icon-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn-learn-more:hover,
.btn-about-learn:hover {
  background-color: #5fa0c4;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47, 121, 173, 0.2);
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.3s ease;
}

.hero-contact-link:hover {
  color: #eaf4ff;
  opacity: 1;
}

/* About Us Section */
.about-section {
  width: 100%;
  color: var(--primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.about-section .row {
  --bs-gutter-x: clamp(1.25rem, 3vw, 2.5rem);
}

.about-image-wrap {
  width: 100%;
  max-width: 547px;
  aspect-ratio: 547 / 576;
  margin-inline: auto;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 47, 112, 0.12);
}

.about-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-content {
  width: 100%;
  max-width: 547px;
  min-height: 576px;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 48px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .about-section .row {
    justify-content: center;
  }

  .about-image-wrap {
    margin-inline: auto;
  }

  .about-content {
    margin-inline: auto;
  }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: #74b4da33;
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  gap: 10px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  opacity: 1;
}

.about-heading {
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-heading-accent {
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--secondary);
}

.about-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: var(--zinc-500);
  margin-bottom: 1rem;
}

.about-text:last-of-type {
  margin-bottom: 1.75rem;
}

.btn-learn-more i,
.btn-about-learn i {
  font-size: 1.1em;
}

/* Our Products Section */
.products-section {
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  min-height: 100vh;
}

.products-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 12px 20px;
  gap: 10px;
  border-radius: 100px;
  background: rgba(116, 180, 218, 0.2);
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 1;
}

.products-heading {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal; /* SemiBold is not a valid CSS value; 600 corresponds to SemiBold */
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  /* leading-trim: CAP_HEIGHT; Not widely supported; left as comment for future */
  /* leading-trim: cap; */
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.products-heading-accent {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal; /* SemiBold corresponds to 600 */
  font-size: 40px;
  /* leading-trim: CAP_HEIGHT; Not widely supported */
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--secondary);
}

.products-description {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  /* leading-trim: none; Not supported in CSS, left as a comment for clarity */
  letter-spacing: -0.018em; /* -1.5% of 18px is -0.27px; using relative em for clarity */
  text-align: center;
  color: var(--zinc-500);
}

.products-grid {
  margin-top: 2.5rem;
}

/* _products */

.product-card {
  box-sizing: border-box;

  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 32px;

  width: 100%;
  min-height: 272px;
  height: auto;

  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 24px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 6;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card .product-icon-wrap {
  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 10px;

  width: 56px;
  height: 56px;

  background: rgba(116, 180, 218, 0.1);
  border-radius: 16px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
  color: var(--primary);
  font-size: 1.25rem;
  position: relative;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.product-icon-default,
.product-icon-hover {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.product-icon-hover {
  display: none;
}

.product-card:hover {
  transform: scale(0.98);
  box-shadow: 0 10px 24px rgba(13, 47, 112, 0.14);
}

.product-card:hover .product-icon-default {
  display: none;
}

.product-card:hover .product-icon-hover {
  display: block;
}

.product-card:hover .product-icon-wrap {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0px 8px 32px 0px #0d2f7080;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card .product-icon-wrap:hover {
  transform: scale(0.94);
}

.product-icon-wrap .computer {
  width: 28px;
  height: 28px;

  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.product-icon-wrap .vector1 {
  position: absolute;
  left: 33.33%;
  right: 33.33%;
  top: 70.83%;
  bottom: 12.5%;

  border: 1.75px solid #0d2f70;
}

.product-icon-wrap .vector2 {
  position: absolute;
  left: 8.33%;
  right: 8.33%;
  top: 12.5%;
  bottom: 29.17%;

  background: #74b4da;
  border: 1.75px solid #0d2f70;
}

/* text area */
.product-text-wrap {
  /* Auto layout */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;

  width: 100%;
  height: auto;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.product-title {
  width: 100%;
  min-height: 12px;
  height: auto;
  overflow-wrap: anywhere;

  font-family: "Sora", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  /* or 19px */
  /* leading-trim and text-edge are draft CSS properties.
  Read more: https://drafts.csswg.org/css-inline-3/#leading-trim
  */
  letter-spacing: -0.03em;

  color: #0d2f70;

  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin-bottom: -1.5rem;
}

.product-text {
  width: 100%;
  min-height: 80px;
  height: auto;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  /* or 143% */
  letter-spacing: -0.015em;

  color: #71717a;

  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin-bottom: 0;
}

.products-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* Our Clients */
.clients-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  color: var(--primary);
  overflow: hidden;
}

.clients-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  background: #74b4da33;
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
}

.clients-heading {
  margin: 1.1rem 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.clients-heading-accent {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--secondary);
}

.clients-description {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: var(--zinc-500, #71717a);
}

.clients-marquee {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.client-logo-card {
  width: 200px;
  height: 100px;
  transform: rotate(0deg);
  opacity: 1;
  mix-blend-mode: saturation;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.client-logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #7a7a7a;
}

.client-logo-img {
  width: 124px;
  height: 38px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease;
}

.client-logo-card:hover .client-logo-img {
  filter: grayscale(0);
  opacity: 1;
}

.clients-marquee-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade kiri/kanan agar logo yang masuk/keluar pojok terlihat halus */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.clients-marquee-track {
  display: flex;
  width: max-content;
  animation: clients-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.clients-marquee-row.reverse .clients-marquee-track {
  animation-direction: reverse;
}

.clients-marquee-row:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-logo-group {
  display: flex;
  gap: 20px;
  padding-right: 0.85rem;
  flex-shrink: 0;
}

@keyframes clients-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Testimonials */
.testimonials-section {
  padding: clamp(3.5rem, 8vw, 5.75rem) 0;
  color: var(--white);
}

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

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  background: #74b4da33;
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
}

.testimonials-heading {
  margin: 1rem 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--primary);
}

.testimonials-heading-accent {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal; /* CSS does not support 'SemiBold', use normal with font-weight 600 */
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--secondary);
}

.testimonials-description {
  margin: 0;
  color: var(--zinc-500, #71717a);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.015em;
  text-align: center;
}

.testimonials-carousel {
  --testimonial-edge-pad: clamp(1rem, 7vw, 5rem);
  margin-top: 2rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  width: 100%;
  margin-left: 0;
  transform: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--testimonial-edge-pad);
  padding: 0.45rem var(--testimonial-edge-pad) 1.05rem;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonials-track.is-dragging {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 min(860px, calc(100% - (var(--testimonial-edge-pad) * 2)));
  scroll-snap-align: center;
  background: #ffffff;
  color: #171717;
  border-radius: 24px;
  border: 1px solid var(--zinc-200, #e4e4e7);
  padding: 2rem 2.4rem 1.8rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.82;
  transition:
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  box-shadow:
    0 4px 16px 0 rgba(82, 82, 82, 0.1),
    0 2px 4px 0 rgba(53, 54, 56, 0.06);
  /* Lebih tipis & fokus, efek timbul lembut tidak terlalu menyebar */
  transform: translateY(-1px);
  border-color: #d6e4f2;
  transition:
    opacity 0.25s cubic-bezier(0.4, 0.2, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0.2, 0.2, 1);
  z-index: 2;
}

.testimonial-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.015em; /* -1.5% of font-size */
  color: #2a2a2a;
  text-align: center;
}

.testimonial-author {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow:
    0 4px 18px 0 rgba(40, 64, 135, 0.13),
    0 1.5px 4px 0 rgba(40, 64, 135, 0.06); /* Shadow timbul, lembut & tidak terlalu besar */
  border: 1px solid var(--zinc-200, #e4e4e7);
}

.testimonial-name {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  /* CSS does not support 'SemiBold' directly; using font-weight: 600 as closest equivalent */
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  /* leading-trim: NONE; not supported in CSS, omitted */
  letter-spacing: -0.015em; /* -1.5% of font-size */
  color: #000000;
}

.testimonial-role {
  margin: 0.1rem 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  /* leading-trim: NONE; not supported in CSS, omitted */
  line-height: 20px;
  letter-spacing: -0.015em; /* -1.5% of font-size */
  color: var(--zinc-500, #71717a);
}

.testimonials-dots {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--zinc-200, #e5e7eb);
}

.testimonial-dot.is-active {
  background: #8dc9e7;
}

/* FAQ */
.faq-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.faq-section .container {
  width: min(90%, 600px);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 1.1rem;
  border-radius: 100px;
  background: #74b4da33;
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
}

.faq-heading {
  margin: 0.95rem 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-style: normal; /* SemiBold is not a valid CSS value, use normal with correct weight */
  font-size: 40px;
  /* leading-trim: cap; -- CSS draft property, uncomment when supported */
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--primary);
}

.faq-heading-accent {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  /* SemiBold is not a valid font-style, use normal with correct weight */
  font-style: normal;
  font-size: 40px;
  /* leading-trim: cap; -- CSS draft property, use when supported */
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: #74b4da;
}

.faq-description {
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--zinc-500, #71717a);
  max-width: 760px;
}

.faq-list {
  max-width: 900px;
  margin: clamp(2rem, 4vw, 2.7rem) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(168, 196, 226, 0.45);
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-bottom: 1.5px solid var(--zinc-200, #e4e4e7);
}

.faq-question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2rem 1.05rem 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #000000;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary, #0d2f70);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.6rem 1.15rem 0;
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
  will-change: grid-template-rows, opacity;
}

.faq-answer > p {
  overflow: hidden;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  /* leading-trim is a draft property and not widely supported */
  /* leading-trim: none; */
  line-height: 20px;
  letter-spacing: -0.015em;
  color: #71717a; /* zinc-500 */
}

/* CTA After Products */
.project-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 409px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 1;
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: 0;
  padding-right: 0;
  background: linear-gradient(107.54deg, #0d2f70 0%, #4172a5 100%);
}

.project-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1.4px, transparent 1.4px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1.4px, transparent 1.4px);
  background-size: 48px 48px;
  opacity: 1;
  pointer-events: none;
}

.project-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.project-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding-top: 12px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-left: 20px;
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  color: #ffffff;
  /* angle: 0deg; - Not a valid CSS property */
  background: #ffffff33;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  border: none;
  white-space: nowrap;
}

.project-cta-heading {
  margin: 1.35rem 0 0.7rem;
  font-family: Sora, sans-serif;
  font-weight: 600;
  font-style: normal; /* SemiBold is 600, normal style */
  font-size: 40px;
  /* leading-trim is not widely supported, kept for reference */
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: #ffffff;
}

.project-cta-description {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  /* leading-trim: none; leading-trim is not widely supported in CSS */
  letter-spacing: -0.015em;
  text-align: center;
  color: #ffffff;
}

.project-cta-button {
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background: var(--white);
  padding: 1rem 0;
}

.site-footer-text {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.015em;
  color: var(--zinc-500);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-image-wrap,
  .about-content {
    max-width: 100%;
    min-height: unset;
    margin-inline: auto;
  }

  .products-section {
    min-height: unset;
  }

  .project-cta-inner {
    max-width: 700px;
  }

  .client-logo-card {
    flex-basis: 160px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
  }

  .navbar-collapse .nav-link {
    color: var(--primary) !important;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    background: #eef3fb;
    color: var(--primary) !important;
  }

  .nav-link {
    width: 100%;
    padding: 0.65rem 0.9rem !important;
  }

  .hero-heading,
  .hero-heading-line1,
  .hero-heading-line2 {
    font-size: clamp(2.1rem, 6vw, 3rem);
  }

  .hero-heading-line2 {
    margin-top: -0.15em;
  }

  .about-heading,
  .about-heading-accent,
  .products-heading,
  .products-heading-accent,
  .clients-heading,
  .clients-heading-accent,
  .testimonials-heading,
  .testimonials-heading-accent,
  .faq-heading,
  .faq-heading-accent,
  .project-cta-heading {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
  }

  .about-badge {
    width: auto;
  }

  .product-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .navbar-brand {
    max-width: min(100%, 300px);
  }

  .navbar-logo {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-top: 72px;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-collapse {
    width: 100%;
  }

  .hero-content {
    padding: 2.5rem 0;
  }

  .hero-inner {
    padding: 0 0rem;
  }

  .hero-heading {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-heading-line1,
  .hero-heading-line2 {
    font-size: inherit;
    line-height: inherit;
    margin-top: 0;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
    max-width: 95vw;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    padding: 0 1rem;
  }

  .btn-learn-more,
  .btn-about-learn {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

  .hero-buttons .btn-learn-more,
  .about-content .btn-about-learn {
    width: 100%;
    min-width: 144px;
    align-self: center;
  }

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

  .about-section {
    padding: 2rem 0;
  }

  .about-image-wrap {
    border-radius: 24px;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .about-content {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
    min-height: unset;
  }

  .about-heading {
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
    line-height: 1.25;
  }

  .about-heading-accent {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-heading,
  .about-heading-accent,
  .products-heading,
  .products-heading-accent {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .products-description {
    font-size: 0.95rem;
  }

  .product-card {
    min-height: 0;
    border-radius: 16px;
    padding: 1.25rem;
    gap: 1rem;
  }

  .product-title {
    font-size: 1.05rem;
    margin-bottom: -0.5rem;
  }

  .product-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .products-cta .btn-about-learn {
    width: 100%;
    min-width: 180px;
  }

  .client-logo-card {
    flex-basis: 140px;
    min-height: 70px;
    padding: 0.75rem;
    border-radius: 12px;
  }

  .client-logo-img {
    width: 102px;
    height: 32px;
  }

  .clients-marquee-track {
    animation-duration: 30s;
  }

  .testimonials-carousel {
    --testimonial-edge-pad: 0.9rem;
  }

  .testimonials-track {
    width: 100%;
    margin-left: 0;
    transform: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    scroll-padding-inline: var(--testimonial-edge-pad);
    padding: 0.35rem var(--testimonial-edge-pad) 0.85rem;
  }

  .testimonial-card,
  .testimonial-card.is-active {
    flex: 0 0 calc(100% - (var(--testimonial-edge-pad) * 2));
    min-height: 0;
    scroll-snap-align: center;
    border-radius: 18px;
    padding: 1.35rem 1.2rem;
    transform: none;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-author {
    margin-top: 0.95rem;
  }

  .faq-section {
    padding: 3rem 0;
  }

  .faq-list {
    margin-top: 1.6rem;
  }

  .faq-question {
    padding: 0.95rem 1.8rem 0.95rem 0;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding-right: 0.8rem;
    padding-bottom: 0.95rem;
  }

  .project-cta-section {
    min-height: 0;
    padding: 3.2rem 0;
  }

  .project-cta-inner {
    padding: 0 1rem;
  }

  .project-cta-heading {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .project-cta-description {
    font-size: 0.95rem;
  }

  .project-cta-button {
    margin-top: 1.6rem;
    width: 100%;
    min-width: 164px;
  }

  .site-footer {
    padding: 0.9rem 0;
  }

  .site-footer-text {
    font-size: 0.85rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-brand {
    max-width: min(100%, 220px);
  }

  .intro-pill,
  .about-badge,
  .products-badge,
  .clients-badge,
  .testimonials-badge,
  .faq-badge,
  .project-cta-badge {
    font-size: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0.06em;
    padding: 0.45rem 1rem;
  }

  .hero-heading {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .about-heading,
  .about-heading-accent,
  .products-heading,
  .products-heading-accent,
  .clients-heading,
  .clients-heading-accent,
  .testimonials-heading,
  .testimonials-heading-accent,
  .faq-heading,
  .faq-heading-accent,
  .project-cta-heading {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  /* .about-heading {
    font-size: 1.1rem;
  }

  .about-heading-accent {
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  } */

  .about-image-wrap {
    border-radius: 12px;
  }

  .product-card .product-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .hero-content,
  .about-section,
  .products-section {
    padding-left: 0;
    padding-right: 0;
  }

  .project-cta-section {
    padding: 2.6rem 0;
  }

  /* .clients-heading {
    margin-top: 0.95rem;
    font-size: 1.65rem;
    line-height: 1.25;
  } */

  .clients-description {
    font-size: 0.9rem;
  }

  .clients-marquee-row {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 5%,
      #000 95%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      #000 5%,
      #000 95%,
      transparent 100%
    );
  }

  .client-logo-card {
    flex-basis: 128px;
    min-height: 64px;
  }

  .client-logo-img {
    width: 92px;
    height: 28px;
  }

  .clients-logo-group {
    gap: 0.6rem;
    padding-right: 0.6rem;
  }

  .clients-marquee-track {
    animation-duration: 24s;
  }

  .testimonials-carousel {
    --testimonial-edge-pad: 0.7rem;
  }

  /* .testimonials-heading {
    font-size: 1.65rem;
    line-height: 1.25;
  } */

  .testimonials-description {
    font-size: 0.9rem;
  }

  .testimonial-card,
  .testimonial-card.is-active {
    flex-basis: calc(100% - (var(--testimonial-edge-pad) * 2));
    border-radius: 16px;
    padding: 1.15rem 1rem;
    transform: none;
  }

  .testimonials-track {
    gap: 0.7rem;
    padding-top: 0.3rem;
    padding-bottom: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
  }

  .faq-section {
    padding: 2.5rem 0;
  }

  /* .faq-heading {
    font-size: 1.65rem;
    line-height: 1.25;
  } */

  .faq-description {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 0.85rem 1.5rem 0.85rem 0;
  }

  .faq-question::after {
    font-size: 1.2rem;
  }

  .faq-answer {
    padding-bottom: 0.85rem;
  }

  .faq-answer p {
    font-size: 0.87rem;
    line-height: 1.55;
  }

  .project-cta-badge {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .project-cta-heading {
    margin-top: 1rem;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .site-footer-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* About Page */
body.about-page {
  color: var(--primary);
  background: #ffffff;
}

body.products-page,
body.contact-page {
  color: var(--primary);
  background: #ffffff;
}

.about-page .navbar,
.products-page .navbar,
.contact-page .navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.about-page .navbar.navbar-scrolled,
.about-page .navbar.navbar-menu-open,
.products-page .navbar.navbar-scrolled,
.products-page .navbar.navbar-menu-open,
.contact-page .navbar.navbar-scrolled,
.contact-page .navbar.navbar-menu-open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(13, 47, 112, 0.08);
}

.about-page .nav-link,
.products-page .nav-link,
.contact-page .nav-link {
  color: var(--primary) !important;
}

.about-page .nav-link:hover,
.about-page .nav-link.active,
.products-page .nav-link:hover,
.products-page .nav-link.active,
.contact-page .nav-link:hover,
.contact-page .nav-link.active {
  background: #eef3fb;
  color: var(--primary) !important;
}

.about-page .navbar-toggler,
.products-page .navbar-toggler,
.contact-page .navbar-toggler {
  border-color: var(--primary);
}

.about-page .navbar-toggler .icon-hamburger,
.products-page .navbar-toggler .icon-hamburger,
.contact-page .navbar-toggler .icon-hamburger {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813, 47, 112, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.about-page .navbar-toggler .icon-close,
.products-page .navbar-toggler .icon-close,
.contact-page .navbar-toggler .icon-close {
  color: var(--primary);
}

.about-page-main {
  padding-top: 92px;
}

.products-page-main {
  padding-top: 92px;
}

.contact-page-main {
  padding-top: 92px;
}

.products-page-main .products-section {
  color: var(--primary);
  min-height: unset;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.contact-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}

.contact-content {
  max-width: 540px;
}

.contact-heading {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-page .about-text {
  color: #000000;
}

.contact-heading-accent {
  color: var(--secondary);
}

.contact-description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--zinc-500);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item + .contact-item {
  margin-top: 1.5rem;
}

.contact-item-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(116, 180, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-item-title {
  margin: 0 0 0.25rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--primary);
}

.contact-item-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--zinc-500);
}

.contact-map-wrap {
  width: 100%;
  max-width: 547px;
  aspect-ratio: 547 / 452;
  margin-inline: auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(13, 47, 112, 0.08);
  background: #e8edf5;
}

.contact-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 5vw, 3rem);
}

.about-page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-page-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-page-description {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--zinc-500);
}

.about-first {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-first .about-image-wrap {
  border-radius: 36px;
}

.about-first .about-content {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.about-first .about-heading {
  margin-bottom: 1.25rem;
}

.about-first .about-text {
  margin-bottom: 1.5rem;
}

.about-first .about-text:last-of-type {
  margin-bottom: 2rem;
}

.about-second {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-second-content {
  width: 100%;
  max-width: 547px;
  margin-inline: auto;
}

.about-point + .about-point {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.about-point-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-point-accent {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-second .about-text {
  margin-bottom: 0;
}

.about-second-image-wrap {
  width: 100%;
  max-width: 547px;
  aspect-ratio: 547 / 576;
  margin-inline: auto;
  border-radius: 32px;
  background: #eceef3;
  box-shadow: 0 14px 35px rgba(13, 47, 112, 0.08);
  padding: 0;
  overflow: hidden;
}

.about-second-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-second-image-wrap,
  .about-second-content {
    max-width: 100%;
    min-height: unset;
    margin-inline: auto;
  }

}

@media (min-width: 992px) {
  .about-first .row.align-items-center {
    align-items: stretch !important;
  }

  .about-first .col-lg-6 {
    display: flex;
  }

  .about-first .about-content {
    width: 100%;
    height: 100%;
  }

  .about-second .row.align-items-center {
    align-items: center !important;
  }

  .about-second .col-lg-6 {
    display: flex;
  }

  .about-point-title,
  .about-point-accent,
  .contact-heading {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
  }

  .contact-section .col-lg-6 {
    display: flex;
  }

  .contact-content {
    margin-block: auto;
  }
}

@media (max-width: 768px) {
  .about-page-main,
  .products-page-main,
  .contact-page-main {
    padding-top: 84px;
  }

  .about-page-hero {
    padding-top: 2rem;
  }

  .about-first {
    padding-top: 1.5rem;
    padding-bottom: 2.25rem;
  }

  .about-first .about-content .btn-about-learn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }

  .about-second-content {
    max-width: 100%;
  }

  .about-heading, */
  .about-point-title,
  .about-point-accent {
    font-size: clamp(1.8rem, 4vw, 2.25rem);
  }

  /* .about-second-image-wrap {
    max-width: 100%;
    border-radius: 24px;
  } */

  .about-point-title,
  .about-point-accent,
  .contact-heading {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .contact-section {
    padding-top: 1.75rem;
  }

  .contact-description,
  .contact-item-text {
    font-size: 0.95rem;
  }

  .contact-item-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .contact-item-icon {
    width: 24px;
    height: 24px;
  }

  .contact-map-wrap {
    max-width: 100%;
    border-radius: 24px;
  }
  
}
