:root {
  --BRAND_COLOR_ACCENT: #c8a84b;
  --DEEP_NAVY_SECONDARY: #0d1b3e;
  --DEEP_NAVY_RGB: 13, 27, 62;
  --WHITE_BASE: #ffffff;
  --PAGE_TITLE_H1: #0d1b3e;
  --H2_SECTION_TITLE: #1a2d5a;
  --BODY_PARAGRAPH: #374151;
  --SUBTITLE_CAPTION: #6b7280;
  --PLACEHOLDER_HINT: #9ca3af;
  --PAGE_BG: #f5f7fa;
  --BORDER_DIVIDER: #e5e7eb;
}

html {
  /* Removed scroll-behavior: smooth; because it breaks Lenis */
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* --- CONTENT REVEAL ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .content-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
      transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
  }

  .content-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: "Host Grotesk", sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("/image/SMA image/index.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* Subtle gradient overlay to ensure text readability against the image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 5%;
  /* Using percentage for better scaling */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.nav-left {
  display: flex;
  gap: 32px;
  background: rgba(3, 5, 11, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
}

.nav-left a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-left a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(3, 5, 11, 0.3);
  padding: 8px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
}

.login {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--BRAND_COLOR_ACCENT);
  color: var(--WHITE_BASE);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    filter 0.3s ease;
}

.signup:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 5%;
  z-index: 10;
  max-width: 1000px;
}

.hero-content .main-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(42px, 7vw, 60px) !important;
  font-weight: 600 !important;
  color: var(--WHITE_BASE) !important;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: clamp(16px, 4vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
  font-weight: 400;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: var(--DEEP_NAVY_SECONDARY);
}

.btn-primary:hover {
  background-color: #f1f1f1;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--WHITE_BASE);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn svg,
.btn img.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

/* Initial states for animations */
.hero-content .main-title,
.hero-content p,
.hero-buttons,
.navbar {
  opacity: 0;
  transform: translateY(20px);
}

/* Animations will be triggered via JS or simple CSS classes */
.animate-in {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Responsive adjustments */
@media (max-width: 992px) {

  .nav-left,
  .login,
  .signup {
    display: none;
  }

  .nav-center {
    position: static;
    transform: none;
  }

  .nav-right {
    padding: 8px;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    bottom: 8%;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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

.about-section {
  background-color: var(--PAGE_BG);
  padding: clamp(60px, 8vw, 120px) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--DEEP_NAVY_SECONDARY);
  font-family: "Host Grotesk", sans-serif;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--WHITE_BASE);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--DEEP_NAVY_SECONDARY);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  color: var(--H2_SECTION_TITLE);
  margin-bottom: 64px;
  max-width: 900px;
}

.inline-images {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 8px;
}

.inline-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--PAGE_BG);
  margin-left: -15px;
  /* overlap */
  background: #ccc;
}

.inline-img:first-child {
  margin-left: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.about-card {
  background-color: var(--WHITE_BASE);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--BORDER_DIVIDER);
  display: flex;
  flex-direction: column;
}

.card-image {
  padding: 0;
  border: none;
  height: 100%;
  min-height: 400px;
}

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

.card-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-image-overlay h3,
.highlight-text {
  font-family: "Host Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--BRAND_COLOR_ACCENT);
  margin-bottom: 8px;
  line-height: 1;
}

.card-image-overlay p {
  font-size: 14px;
  color: var(--BODY_PARAGRAPH);
  line-height: 1.5;
  font-weight: 600;
}

.card-stats {
  background-color: #eaeff5;
  padding: 32px;
  justify-content: space-between;
  border: none;
}

.stats-top .subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--SUBTITLE_CAPTION);
  display: block;
  margin-bottom: 12px;
}

.stats-bottom {
  margin-top: auto;
}

.avatars {
  display: flex;
  margin-bottom: 16px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ccc;
  border: 2px solid #eaeff5;
  margin-left: -10px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

.stats-bottom p {
  font-size: 14px;
  color: var(--BODY_PARAGRAPH);
  line-height: 1.5;
  font-weight: 500;
}

.about-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-countries {
  background-color: var(--BRAND_COLOR_ACCENT);
  padding: 32px;
  flex: 1;
  color: var(--WHITE_BASE);
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.countries-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-countries .subtitle,
.highlight-text-white {
  position: relative;
  z-index: 2;
}

.card-countries .subtitle {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  display: block;
  margin-bottom: 2px;
}

.highlight-text-white {
  font-family: "Host Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

.card-countries p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.95;
  position: relative;
  margin: 0;
  margin-top: auto;
  z-index: 2;
}

.map-bg {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 280px;
  height: 280px;
  z-index: 1;
}

.card-support {
  background-color: #f1f4f9;
  padding: 24px 32px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: none;
}

.support-text h4 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--DEEP_NAVY_SECONDARY);
  margin-bottom: 4px;
}

.support-text p {
  font-size: 12px;
  color: var(--SUBTITLE_CAPTION);
  line-height: 1.4;
  font-weight: 500;
}

.card-support .highlight-text {
  font-size: 36px;
  margin-bottom: 0;
}

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

  .card-image {
    min-height: 450px;
  }

  .about-section .section-title {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.2;
    margin-bottom: 30px;
  }
}

.solutions-section {
  background-color: #060b14;
  padding: clamp(60px, 8vw, 120px) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
  color: var(--WHITE_BASE);
  font-family: "Host Grotesk", sans-serif;
}

.solutions-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--WHITE_BASE);
  margin-bottom: 16px;
}

.solutions-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 900px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1474px;
  margin-bottom: 0;
}

.solution-card {
  background: linear-gradient(180deg, #0a1120 0%, #060b14 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 18px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 150px;
  width: 100%;
  max-width: 470px;
  height: 435px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.solution-card::before {
  content: "";
  position: absolute;

  width: 120%;
  height: 80%;

  left: -10%;
  bottom: -80%;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath fill='%230C1D45' fill-opacity='0.8' d='M0,15 Q12.5,5 25,15 T50,15 T75,15 T100,15 L100,50 L0,50 Z'/%3E%3Cpath fill='%233A4E7B' fill-opacity='0.85' d='M0,25 Q12.5,35 25,25 T50,25 T75,25 T100,25 L100,50 L0,50 Z'/%3E%3Cpath fill='%2399AEDE' fill-opacity='0.9' d='M0,35 Q12.5,25 25,35 T50,35 T75,35 T100,35 L100,50 L0,50 Z'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  background-repeat: repeat-x;

  filter: blur(35px);

  opacity: 0;

  transition:
    bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;

  pointer-events: none;
  z-index: 1;
}

.solution-card:hover::before {
  bottom: -5%;
  opacity: 1;
  animation: waveSlide 6s linear infinite;
}

@keyframes waveSlide {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 100%;
  }
}

.solution-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: overlay;
}

.solution-icon {
  width: 56px;
  height: 56px;
  background-color: var(--WHITE_BASE);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.solution-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.solution-footer {
  position: relative;
  z-index: 2;
}

.solution-content h3 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--WHITE_BASE);
}

.solution-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.solution-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.solution-footer a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.solutions-cta {
  margin-top: 64px;
}

.solutions-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.solutions-cta a {
  color: var(--WHITE_BASE);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.solutions-cta a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.cta-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--WHITE_BASE);
  border-radius: 50%;
}

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

@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-card {
    padding: 32px;
    height: auto;
    min-height: 435px;
    gap: 100px;
    max-width: 100%;
    /* Reduced gap slightly so it doesn't get too tall on small screens */
  }

  .solutions-cta p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    line-height: 1.5;
  }

  .solutions-cta a {
    margin-left: 0;
  }
}

/* --- BRANDING SECTION --- */
.branding-section {
  background-color: var(--PAGE_BG);
  padding: clamp(60px, 8vw, 120px) 5%;
  display: flex;
  flex-direction: column;
  color: var(--DEEP_NAVY_SECONDARY);
  font-family: "Host Grotesk", sans-serif;
}

.branding-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  gap: 40px;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.branding-header-left {
  flex: 1 0 auto;
  max-width: 750px;
}

.branding-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--WHITE_BASE);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--DEEP_NAVY_SECONDARY);
  margin-bottom: 12px;
  border: 1px solid var(--BORDER_DIVIDER);
}

.branding-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--PAGE_TITLE_H1);
  text-align: left;
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .branding-title {
    white-space: nowrap;
  }
}

.branding-header-right {
  flex: 1;
  max-width: 694px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 20px;
}

.branding-header-right p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--SUBTITLE_CAPTION);
  text-align: right;
  font-weight: 500;
}

@media (min-width: 1025px) {
  .branding-header-right p {
    white-space: nowrap;
  }
}

.btn-dark {
  background-color: var(--DEEP_NAVY_SECONDARY);
  color: var(--WHITE_BASE);
  border: none;
}

.btn-dark:hover {
  background-color: #1a2d5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.branding-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 64px;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.branding-left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.branding-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background-color: var(--WHITE_BASE);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--BORDER_DIVIDER);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.stat-icon {
  width: 56px;
  height: 56px;
  background-color: var(--DEEP_NAVY_SECONDARY);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  color: var(--WHITE_BASE);
}

.stat-card h3 {
  font-size: 48px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 700;
  color: var(--PAGE_TITLE_H1);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card p {
  font-size: 14px;
  color: var(--SUBTITLE_CAPTION);
  line-height: 1.5;
  font-weight: 400;
}

.testimonial-card {
  background-color: #c8a84b;
  border-radius: 24px;
  padding: 20px;
  color: var(--WHITE_BASE);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card .quote {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-style: italic;
  max-width: 100%;
}

.testimonial-card .author {
  position: relative;
  z-index: 2;
}

.testimonial-card .author h4 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-card .author span {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

.testimonial-card .quote-icon {
  position: absolute;
  bottom: -10px;
  right: 0px;
  opacity: 10;
  z-index: 1;
}

.branding-right-column {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  max-width: 828px;
  width: 100%;
  position: relative;
}

.branding-right-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.branding-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.branding-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--WHITE_BASE);
  border: 1px solid var(--BORDER_DIVIDER);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--DEEP_NAVY_SECONDARY);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.branding-cta {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.branding-cta p {
  font-size: 15px;
  color: var(--SUBTITLE_CAPTION);
  font-weight: 500;
}

.branding-cta a {
  color: var(--DEEP_NAVY_SECONDARY);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.branding-cta a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

@media (max-width: 1024px) {
  .branding-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .branding-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .branding-header-right {
    align-items: center;
    text-align: center;
  }

  .branding-header-right p {
    text-align: center;
  }

  .branding-header-right p br {
    display: none;
  }

  .branding-content {
    grid-template-columns: 1fr;
  }

  .branding-right-column {
    min-height: 400px;
  }

  .branding-cta p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    line-height: 1.5;
  }

  .branding-cta a {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .branding-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .branding-header-right p {
    font-size: clamp(14px, 4vw, 16px);
  }

  .stat-card h3 {
    font-size: clamp(36px, 8vw, 48px);
  }

  .stat-card p {
    font-size: clamp(13px, 3vw, 15px);
  }

  .branding-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .branding-tags {
    gap: 8px;
  }

  .branding-tag {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }
}

/* --- SHOWCASE SECTION --- */
.showcase-section {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
}

.showcase-header-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.showcase-pill {
  background-color: #f8f9fa;
  /* Slightly different pill bg if needed, or stick to white */
}

.showcase-desc {
  color: var(--SUBTITLE_CAPTION);
}

.showcase-carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 0 max(5%, calc((100% - 1440px) / 2)) 48px max(5%, calc((100% - 1440px) / 2));
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: none;
}

.showcase-carousel-wrapper.active {
  cursor: none;
}

.drag-custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: rgba(200, 168, 75, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 168, 75, 0.5);
  color: var(--WHITE_BASE);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(200, 168, 75, 0.4);
}

.drag-custom-cursor.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.drag-custom-cursor.dragging {
  transform: translate(-50%, -50%) scale(0.9);
  background-color: rgba(13, 27, 62, 0.5);
  border-color: rgba(13, 27, 62, 0.6);
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.4);
}

.cursor-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.drag-custom-cursor.dragging .cursor-content {
  transform: scale(1.1);
}

.cursor-content span {
  font-size: 14px;
  font-family: "Host Grotesk", sans-serif;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.cursor-content svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.drag-custom-cursor.dragging .cursor-content svg:first-child {
  transform: translateX(-4px);
}

.drag-custom-cursor.dragging .cursor-content svg:last-child {
  transform: translateX(4px);
}

.showcase-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.showcase-carousel {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
}

.showcase-card {
  flex: 0 0 1100px;
  height: 600px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  max-width: 85vw;
  /* Make responsive */
}

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

.showcase-card:hover img {
  transform: scale(1.03);
}

.showcase-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.showcase-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 40px;
}

.showcase-card-left {
  flex: 1.2;
}

.showcase-card-left h3 {
  font-family: "Host Grotesk", sans-serif;
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  color: var(--WHITE_BASE);
  line-height: 1.2;
  margin-bottom: 20px;
}

.showcase-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.showcase-tag {
  display: inline-flex;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
}

.showcase-card-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 20px;
  max-width: 650px;
}

.showcase-card-right p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  white-space: nowrap;
}

.showcase-btn-wrapper .btn-sm {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .showcase-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .showcase-card-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .showcase-card-right p {
    text-align: left;
    white-space: normal;
    font-style: italic;
    max-width: 320px;
  }

  .showcase-card-right p br {
    display: none;
  }

  .showcase-btn-wrapper .btn-sm {
    border-radius: 30px;
  }

  .showcase-card {
    height: 650px;
  }

  .showcase-card-overlay {
    padding: 32px;
  }
}

@media (max-width: 576px) {
  .showcase-card-overlay {
    padding: 20px 14px;
  }

  .showcase-card-bottom {
    gap: 16px;
  }

  .showcase-card-left h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .showcase-card-right {
    gap: 16px;
  }

  .showcase-card-right p {
    font-size: 14px;
  }

  .showcase-tags {
    gap: 8px;
  }

  .showcase-tag {
    padding: 6px 12px;
    font-size: 13px;
  }

  .showcase-btn-wrapper .btn-sm {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* --- PROCESS SECTION --- */
.process-section {
  background-color: #060b14;
  padding: 100px 5%;
  color: var(--WHITE_BASE);
  font-family: "Host Grotesk", sans-serif;
}

.process-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 100px;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: left;
}

.process-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 500px;
}

.process-image-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
}

.process-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;

  /* Sticky Stack Effect */
  position: sticky;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.process-card:nth-child(1) {
  top: 100px;
  z-index: 1;
}

.process-card:nth-child(2) {
  top: 160px;
  z-index: 2;
}

.process-card:nth-child(3) {
  top: 220px;
  z-index: 3;
}

.process-card:nth-child(4) {
  top: 280px;
  z-index: 4;
}

.process-card:nth-child(5) {
  top: 340px;
  z-index: 5;
}

.process-card.active {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(200, 168, 75, 0.15);
}

.process-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.process-number {
  font-family: "Host Grotesk", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: rgba(200, 168, 75, 0.3);
  line-height: 1;
  transition: color 0.3s ease;
}

.process-card.active .process-number {
  color: var(--BRAND_COLOR_ACCENT);
}

.process-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.process-card.active .process-icon {
  color: rgba(200, 168, 75, 0.15);
}

.process-icon svg,
.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-card h3 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.process-card.active h3 {
  color: var(--WHITE_BASE);
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.process-card.active p {
  color: rgba(255, 255, 255, 0.7);
}

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

  .process-left {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-title,
  .process-desc {
    text-align: center;
  }

  .process-title br,
  .process-desc br {
    display: none;
  }

  .process-image-wrapper {
    height: 300px;
  }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background-color: var(--PAGE_BG);
  padding: 100px 0 60px 0;
  font-family: "Host Grotesk", sans-serif;
}

.testimonials-header-wrapper {
  padding: 0 5%;
}

.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Host Grotesk", sans-serif;
  transition: all 0.3s ease;
}

.btn-nav svg,
.btn-nav img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-nav-prev {
  background-color: var(--WHITE_BASE);
  border: 1px solid var(--BORDER_DIVIDER);
  color: var(--BODY_PARAGRAPH);
}

.btn-nav-prev:hover {
  background-color: #f1f1f1;
}

.btn-nav-next {
  background-color: var(--DEEP_NAVY_SECONDARY);
  border: 1px solid var(--DEEP_NAVY_SECONDARY);
  color: var(--WHITE_BASE);
}

.btn-nav-next:hover {
  background-color: #1a2d5a;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.2);
}

.testimonial-carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 24px 5% 64px 5%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
}

.testimonial-slider-card {
  flex: 0 0 750px;
  background-color: var(--WHITE_BASE);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  max-width: 85vw;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card-text {
  flex: 1;
  padding: 48px;
  padding-right: 45%;
  /* Leaves space for the absolute image */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.testimonial-quote {
  font-family: "Host Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--H2_SECTION_TITLE);
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--PAGE_BG);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--DEEP_NAVY_SECONDARY);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--SUBTITLE_CAPTION);
  font-weight: 500;
}

.testimonial-card-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 42%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .testimonial-card-text {
    padding: 32px;
    padding-right: 40%;
  }

  .testimonial-card-image {
    width: 38%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 768px) {
  .testimonial-slider-card {
    flex-direction: column;
    flex: 0 0 90vw;
  }

  .testimonial-card-text {
    padding: 32px;
  }

  .testimonial-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    clip-path: none;
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 120px) 5%;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  color: var(--DEEP_NAVY_SECONDARY);
  margin-top: 2px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-desc {
  font-size: 15px;
  color: var(--SUBTITLE_CAPTION);
  line-height: 1.6;
  font-weight: 500;
}

.faq-grid {
  display: block;
  column-count: 2;
  column-gap: 32px;
  width: 100%;
  max-width: 1200px;
}

.faq-item {
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.3s ease;
  break-inside: avoid;
  margin-bottom: 16px;
}

.faq-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-answer {
  font-size: 16px;
  color: var(--SUBTITLE_CAPTION);
  line-height: 1.5;
  margin-top: 12px;
  display: none;
  font-style: italic;
  padding-right: 48px;
  /* space for icon */
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:hover {
  background-color: #f1f4f9;
  border-color: rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  color: var(--DEEP_NAVY_SECONDARY);
}

.faq-toggle {
  background-color: var(--BRAND_COLOR_ACCENT);
  color: var(--WHITE_BASE);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle line:first-child {
  display: none;
}

.faq-item:hover .faq-toggle {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (max-width: 992px) {
  .faq-grid {
    column-count: 1;
  }
}

.faq-view-more-container {
  display: none;
}

@media (max-width: 768px) {
  .faq-header {
    margin-bottom: 24px;
  }

  .faq-item {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .faq-toggle svg {
    width: 14px;
    height: 14px;
  }

  .faq-item:nth-child(n+6) {
    display: none;
  }

  .faq-item.show-mobile {
    display: flex !important;
  }

  .faq-view-more-container {
    display: block;
    text-align: center;
    margin-top: 24px;
  }

  .faq-view-more-link {
    color: var(--DEEP_NAVY_SECONDARY);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
  }
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 60px 5%;
  overflow: hidden;
  font-family: "Host Grotesk", sans-serif;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.final-cta-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}

.final-cta-panel {
  background: rgba(40, 40, 40, 0.5);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;
  height: auto;
  min-height: 190px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--WHITE_BASE);
}

.left-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  max-width: 500px;
}

.right-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex: 1;
  max-width: 500px;
}

.final-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.final-cta-pill svg {
  width: 14px;
  height: 14px;
}

.left-panel .section-title {
  font-family: "Host Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 32px) !important;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 0;
}

.right-panel p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-dark {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

@media (max-width: 992px) {
  .final-cta-container {
    flex-direction: column;
    align-items: center;
  }

  .left-panel,
  .right-panel {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left-panel .cta-title,
  .left-panel .cta-desc {
    text-align: center;
  }

  .left-panel .cta-title br {
    display: none;
  }
}

@media (max-width: 576px) {
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-buttons .btn-white,
  .final-cta-buttons .btn-dark {
    width: 100%;
    justify-content: center;
  }
}

/* --- FOOTER SECTION --- */
.site-footer {
  background-color: var(--DEEP_NAVY_SECONDARY);
  color: var(--WHITE_BASE);
  padding: 80px 5% 19vw 5%;
  font-family: "Host Grotesk", sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
}

.footer-logo-img {
  height: 56px;
  filter: brightness(0) invert(1);
}

.footer-links-wrapper {
  display: flex;
  gap: 120px;
}

.footer-heading {
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--BRAND_COLOR_ACCENT);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link-group a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.footer-link-group a .btn-text-clone {
  color: #ffffff;
  font-weight: 700;
  text-align: left;
}

.footer-link-group a:hover .btn-text-original {
  transform: translateY(-120%);
  opacity: 0;
}

.footer-link-group a:hover .btn-text-clone {
  transform: translateY(-100%);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--BRAND_COLOR_ACCENT);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-socials a:hover {
  transform: translateY(-2px);
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--WHITE_BASE);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.footer-contact .separator {
  color: rgba(255, 255, 255, 0.4);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0 0 12px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  color: var(--WHITE_BASE);
}

.footer-massive-text {
  position: absolute;
  bottom: -20vw;
  left: 0;
  width: 100%;
  height: 18vw;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 992px) {
  .site-footer {
    padding-bottom: 22vw;
  }

  .footer-top {
    flex-direction: column;
    gap: 48px;
  }

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

  .footer-middle,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-contact {
    flex-wrap: wrap;
  }
}

.mobile-massive-text {
  display: none;
}

@media (max-width: 576px) {
  .site-footer {
    padding-bottom: 55vw;
    /* Create enough space for the tall S.M.A text */
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-socials {
    gap: 16px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .footer-contact {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }

  .footer-contact .separator {
    display: inline;
  }

  .footer-divider {
    margin: 0 0 24px 0;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    margin-bottom: 0;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
  }

  .desktop-massive-text {
    display: none;
  }

  .mobile-massive-text {
    display: inline;
  }

  .footer-massive-text {
    bottom: -59.5vw;
    height: 53.5vw;
  }
}

/* --- ABOUT US PAGE HERO --- */
.about-hero {
  position: relative;
  width: 100vw;
  height: 50vh;
  min-height: 450px;
  background-image: url("/image/SMA image/about.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.products-hero {
  background-image: url("/image/SMA image/product.png");
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Lighter dark overlay without blur */
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--WHITE_BASE);
}

.about-hero-content .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 12px;
}

.about-hero-content p {
  font-family: "Host Grotesk", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* --- ABOUT PAGE: INTRO SECTION --- */
.about-intro-section {
  background-color: #ffffff;
  padding: 100px 5% 140px 5%;
}

.about-intro-container {
  max-width: 1440px;
  margin: 0 auto;
}

.about-intro-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.about-intro-title {
  flex: 1.2;
}

.about-intro-title {
  font-family: "Host Grotesk", sans-serif;
  color: var(--PAGE_TITLE_H1);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.2;
}

.about-intro-title .section-title {
  text-align: left;
  margin-bottom: 0;
  color: inherit;
  font-size: inherit;
}

.about-intro-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.about-intro-desc p {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.btn-dark-pill {
  background-color: var(--DEEP_NAVY_SECONDARY);
  color: var(--WHITE_BASE);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-dark-pill:hover {
  background-color: #1a2d5a;
  transform: translateY(-2px);
}

.about-intro-media {
  position: relative;
  width: 100%;
}

.about-intro-media img {
  width: 100%;
  height: clamp(450px, 45vw, 650px);
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.about-stats-card {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px;
  width: 90%;
  max-width: 1100px;
  z-index: 2;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 24px;
}

.stat-item h3 {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BRAND_COLOR_ACCENT);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-item p {
  font-family: "Host Grotesk", sans-serif;
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .about-intro-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-intro-desc {
    text-align: center;
    align-items: center;
  }

  .about-stats-card {
    width: 95%;
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    bottom: -100px;
  }

  .stat-item {
    min-width: 40%;
  }

  .stat-divider {
    display: none;
  }

  .about-intro-section {
    padding-bottom: 160px;
  }
}

@media (max-width: 576px) {
  .about-stats-card {
    padding: 24px 16px;
    gap: 24px 8px;
  }

  .stat-item {
    padding: 0 4px;
    min-width: 45%;
  }

  .stat-item h3 {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .stat-item p {
    font-size: 13px;
    white-space: nowrap;
  }
}

/* --- ABOUT PAGE: DETAILS SECTION --- */
.about-details-section {
  background-color: var(--PAGE_BG);
  padding: clamp(60px, 8vw, 120px) 5%;
}

.about-details-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-details-left {
  flex: 1;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.glass-stat-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg,
      rgba(20, 20, 20, 0.6) 0%,
      rgba(40, 40, 40, 0.4) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 32px;
  color: var(--WHITE_BASE);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.glass-stat-badge h4 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.glass-stat-badge span {
  font-family: "Host Grotesk", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.about-details-right {
  flex: 1.2;
}

.details-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--DEEP_NAVY_SECONDARY);
  margin-bottom: 12px;
}

.about-details-right .section-title,
.about-details-text .section-title {
  font-family: "Montserrat", sans-serif;
  color: var(--PAGE_TITLE_H1);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.details-desc {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.core-principles h3 {
  font-family: "Host Grotesk", sans-serif;
  color: var(--PAGE_TITLE_H1);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

.principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.principles-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 18px;
  color: var(--BODY_PARAGRAPH);
  font-weight: 500;
}

.principle-arrow {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-details-container {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }

  .about-details-left {
    order: 2;
    width: 100%;
  }

  .about-details-right {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .about-details-right .section-title {
    text-align: center !important;
  }

  .core-principles {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-details-section {
    padding: 60px 24px;
  }

  .about-details-container {
    gap: 32px;
  }

  .about-details-right .section-title,
  .about-details-text .section-title {
    font-size: 26px;
    margin-bottom: 16px;
    padding: 0 10px;
  }

  .details-desc {
    font-size: 14px;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .core-principles {
    padding-left: 12px;
    /* Adds overall slight indent */
  }

  .core-principles h3 {
    font-size: 16px;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 26px !important;
    /* Aligns title with list text (14px arrow + 12px gap) */
  }

  .principles-list {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .principles-list li {
    font-size: 14px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .principle-arrow {
    width: 14px;
    height: 14px;
  }
}

/* --- ABOUT PAGE: DETAILS REVERSE SECTION --- */
.pt-0 {
  padding-top: 0 !important;
}

.pb-reduced {
  padding-bottom: clamp(30px, 4vw, 60px) !important;
}

.about-details-text {
  flex: 1.2;
  padding-right: 40px;
}

.about-details-media {
  flex: 1;
}

.about-image-wrapper-reverse {
  position: relative;
  width: 100%;
}

.about-image-wrapper-reverse img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.badge-left {
  right: auto;
  left: 24px;
}

@media (max-width: 992px) {
  .about-details-text {
    padding-right: 0;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .about-details-text .section-title {
    text-align: center !important;
  }

  .about-details-media {
    order: 2;
  }
}

/* --- ABOUT PAGE: FEATURES SECTION --- */
.about-features-section {
  background-color: #060b14;
  padding: clamp(60px, 8vw, 120px) 5%;
  color: var(--WHITE_BASE);
}

.features-header {
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.features-header .section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--WHITE_BASE);
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto 80px auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #060b14;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-card-header h3 {
  font-family: "Host Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--WHITE_BASE);
}

.feature-card-content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
}

.feature-card-content p {
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  margin-bottom: 20px;
}

.feature-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.4;
}

.feature-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.features-footer {
  text-align: center;
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.features-footer a {
  color: var(--WHITE_BASE);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.features-footer a:hover {
  color: var(--BRAND_COLOR_ACCENT);
}

.features-footer a .circle-icon,
.branding-cta a .circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: #060b14;
  border-radius: 50%;
}

.features-footer a:hover .circle-icon,
.branding-cta a:hover .circle-icon {
  background: var(--BRAND_COLOR_ACCENT);
}

.features-footer a .circle-icon svg,
.features-footer a .circle-icon img,
.branding-cta a .circle-icon svg,
.branding-cta a .circle-icon img {
  width: 12px;
  height: 12px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .features-header .section-title {
    margin-bottom: 32px;
  }

  .features-grid {
    margin-bottom: 32px;
  }

  .features-footer {
    padding-top: 0;
  }
}

/* --- PRODUCTS PAGE: GRID SECTION --- */
.products-grid-section {
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 120px) 5%;
}

.products-grid-container {
  max-width: 1440px;
  margin: 0 auto;
}

.products-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 40px;
}

.products-header-title {
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 0;
  flex: 1.2;
}

.products-header-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.products-header-desc p {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.product-card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.product-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-content h3 {
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card-content p {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.more-link {
  color: var(--DEEP_NAVY_SECONDARY);
  text-decoration: underline;
  font-weight: 600;
}

.product-card-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-tag {
  background: #f3f4f6;
  color: var(--DEEP_NAVY_SECONDARY);
  font-family: "Host Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
}

.product-explore-btn {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 992px) {
  .products-grid-header {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .products-header-desc {
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 576px) {
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .product-tags {
    justify-content: flex-start;
  }

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

/* --- PRODUCT DETAILS PAGE HERO --- */
.product-details-hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-image: url("/image/SMA image/SMA 29.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 5%;
}

.product-details-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(6, 11, 20, 1) 0%,
      rgba(6, 11, 20, 0.85) 40%,
      rgba(6, 11, 20, 0.1) 100%);
  pointer-events: none;
}

.product-details-container {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0 60px 0;
  width: 100%;
}

.product-details-left {
  max-width: 650px;
  color: var(--WHITE_BASE);
}

.breadcrumb {
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15vh;
}

.product-meta {
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-meta .divider {
  color: rgba(255, 255, 255, 0.3);
}

.product-details-left .main-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.product-description {
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.btn-white-pill {
  background-color: var(--WHITE_BASE);
  color: var(--DEEP_NAVY_SECONDARY);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white-pill:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

.btn-white-pill svg {
  width: 16px;
  height: 16px;
}

.btn-outline-pill {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-pill:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline-pill svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 992px) {
  .product-details-hero {
    background-position: center;
  }

  .product-details-hero::before {
    background: linear-gradient(to bottom,
        rgba(6, 11, 20, 0.9) 0%,
        rgba(6, 11, 20, 0.7) 100%);
  }

  .product-details-container {
    padding-top: 140px;
  }
}

@media (max-width: 576px) {
  .product-details-hero {
    background-image: url("/image/SMA image/hero section (7).png");
    background-position: center;
    background-size: cover;
    background-color: var(--DEEP_NAVY_SECONDARY);
  }

  .product-details-hero::before {
    background: linear-gradient(to bottom,
        rgba(6, 11, 20, 0) 0%,
        rgba(6, 11, 20, 0.4) 30%,
        rgba(6, 11, 20, 0.85) 60%,
        rgba(6, 11, 20, 1) 90%);
  }

  .product-details-container {
    padding: 250px 5% 60px 5%;
  }

  .product-details-left .breadcrumb {
    position: absolute;
    top: 100px;
    left: 5%;
    margin: 0;
  }

  .product-actions {
    flex-direction: column;
    width: 100%;
  }

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

/* --- PRODUCT DETAILS: OVERVIEW SECTION --- */
.product-overview-section {
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 120px) 5%;
}

.product-overview-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.product-gallery {
  flex: 1.2;
  display: flex;
  gap: 16px;
}

.gallery-main-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100px;
}

.thumbnail {
  width: 100px;
  height: 113px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail.active {
  border-color: var(--BRAND_COLOR_ACCENT);
}

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

.product-overview-content {
  flex: 1;
}

.overview-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: var(--DEEP_NAVY_SECONDARY);
  font-family: "Host Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-us-pill {
  background: #f4f5f7 !important;
  border: none !important;
  align-self: flex-start !important;
  padding: 10px 24px !important;
  font-size: 16px !important;
  font-family: "Host Grotesk", sans-serif !important;
  font-weight: 500 !important;
  color: var(--DEEP_NAVY_SECONDARY) !important;
  gap: 12px !important;
}

.product-overview-content {
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-overview-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.product-overview-content p {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.overview-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--BRAND_COLOR_ACCENT);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg,
.feature-icon-box img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.overview-feature span {
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .product-overview-container {
    flex-direction: column;
  }

  .product-gallery {
    flex-direction: column;
    width: 100%;
  }

  .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    height: 100px;
  }

  .thumbnail {
    height: 100%;
    width: 25%;
  }

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

@media (max-width: 576px) {
  .product-overview-container {
    flex-direction: column-reverse;
  }

  .product-overview-content {
    text-align: center;
  }

  .product-overview-content p {
    text-align: center;
  }

  .product-overview-content .section-title {
    text-align: center;
  }

  .product-overview-section {
    padding-bottom: 32px;
  }

  .product-specs-section {
    padding-top: 0;
  }
}

/* --- PRODUCT DETAILS: SPECS SECTION --- */
.product-specs-section {
  background-color: #ffffff;
  padding: 60px 5% 100px 5%;
}

.product-specs-container {
  max-width: 1440px;
  margin: 0 auto;
}

.product-specs-container>.section-title {
  font-family: "Montserrat", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: clamp(28px, 3vw, 36px);

  margin-bottom: 20px;
  text-align: left;
}

.specs-table-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.specs-table-header {
  background-color: #0b132b;
  /* Deep almost-black navy */
  padding: 16px 24px;
}

.specs-table-header h3 {
  color: var(--WHITE_BASE);
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
  /* Prevent shrinking too much on mobile */
}

.specs-table th,
.specs-table td {
  padding: 12px 12px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 16px;
  color: #4a5568;
}

.specs-table th {
  font-weight: 700;
  color: var(--DEEP_NAVY_SECONDARY);
  border-bottom: none;
}

.specs-table tbody tr td {
  margin: 4px 0;
}

.specs-table tbody tr:nth-child(odd) td {
  background-color: #f6f5f0;
  /* Subtle beige */
}

.specs-table tbody tr:nth-child(even) td {
  background-color: #ffffff;
}

/* The visual separation in the design actually looks like there's a margin between rows, 
   or a thick white border. Let's use border to simulate the gap if needed, or simply let the background cover. 
   Actually, the image shows pill-like backgrounds for the odd rows.
   Let's modify the odd row to look like a pill. */
.specs-table tbody tr:nth-child(odd) td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.specs-table tbody tr:nth-child(odd) td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.specs-table {
  border-spacing: 0 6px;
  /* Enables spacing between rows if border-collapse is separate */
  border-collapse: separate;
}

.table-responsive {
  padding: 20px;
}

/* --- CONTACT PAGE HERO --- */
.contact-hero {
  position: relative;
  width: 100vw;
  height: 55vh;
  min-height: 400px;
  background-image: url("/image/SMA image/contact.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 11, 20, 0.7);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
}

.contact-hero-content .main-title {
  font-family: "Montserrat", sans-serif;
  color: var(--WHITE_BASE);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-breadcrumb {
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* --- CONTACT PAGE FORM SECTION --- */
.contact-form-section {
  background-color: #f8f9fa;
  padding: clamp(60px, 8vw, 120px) 5%;
}

.contact-form-container {
  max-width: 1440px;
  margin: 0 auto;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  overflow: hidden;
  padding: 24px;
  gap: 40px;
}

.contact-form-left {
  flex: 1.3;
}

.contact-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-quick-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background-color: var(--BRAND_COLOR_ACCENT);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: "Host Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 2px;
}

.info-value {
  font-family: "Host Grotesk", sans-serif;
  color: var(--WHITE_BASE);
  font-size: 18px;
  font-weight: 500;
}

.contact-quick-info .info-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-quick-info .info-value .separator {
  display: none;
}

.info-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.3);
}

.contact-form-right {
  flex: 1;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-right .section-title {
  font-family: "Montserrat", sans-serif;
  color: var(--PAGE_TITLE_H1);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.input-group {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--DEEP_NAVY_SECONDARY);
  pointer-events: none;
}

.input-group input {
  width: 100%;
  background-color: var(--PAGE_BG);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 16px 16px 16px 44px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  color: var(--DEEP_NAVY_SECONDARY);
  transition: all 0.3s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--DEEP_NAVY_SECONDARY);
  opacity: 0.8;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--BRAND_COLOR_ACCENT);
  box-shadow: 0 0 0 4px rgba(200, 168, 75, 0.1);
}

.textarea-group {
  width: 100%;
}

.input-group textarea {
  width: 100%;
  background-color: var(--PAGE_BG);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 16px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  color: var(--DEEP_NAVY_SECONDARY);
  min-height: 120px;
  resize: vertical;
  transition: all 0.3s ease;
}

.submit-btn {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 28px;
  font-family: "Host Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.location-header {
  text-align: center;
}

.location-header .section-title {
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  .contact-form-card {
    flex-direction: column;
    padding: 16px;
    gap: 24px;
  }

  .contact-form-right {
    padding: 16px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-quick-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .info-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    flex-direction: column-reverse;
  }

  .contact-form-right .overview-pill {
    margin: 0 auto 16px auto;
  }

  .contact-form-right .section-title {
    text-align: center;
  }

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

  .contact-image-wrapper {
    min-height: 400px;
  }

  .contact-quick-info {
    bottom: 32px;
    left: 24px;
    right: 24px;
  }
}

/* --- CONTACT PAGE LOCATION SECTION --- */
.contact-location-section {
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 120px) 5%;
}

.contact-location-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-header .overview-pill {
  margin-bottom: 24px;
}

.location-header {
  font-family: "Host Grotesk", sans-serif;
  color: var(--DEEP_NAVY_SECONDARY);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 600;
  margin-bottom: 20px;
}

.location-header p {
  font-family: "Host Grotesk", sans-serif;
  color: var(--BODY_PARAGRAPH);
  font-size: 16px;
  line-height: 1.6;
}

.location-map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #e5e7eb;
  /* Placeholder color before map loads */
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FULL SCREEN MENU OVERLAY --- */
.fullscreen-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 14, 23, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fullscreen-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-close-container {
  position: absolute;
  top: 60px;
  right: 10%;
  z-index: 100;
}

.menu-close-btn {
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-family: "Host Grotesk", sans-serif;
  transition: opacity 0.3s ease;
}

.menu-close-btn:hover {
  opacity: 0.7;
}

.fullscreen-menu-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 140px 10% 0;
  flex: 1;
  width: 100%;
}

.fullscreen-menu-content .menu-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-menu-content .menu-main-logo {
  height: 48px;
  /* Reduced from 70px as requested */
  position: absolute;
  /* Take it out of normal flow to align with close button */
  top: 60px;
  /* Aligns with .menu-close-container top: 60px */
  left: 10%;
  /* Aligns with left padding */
  width: auto;
  object-fit: contain;
  object-position: left top;
}

.fullscreen-menu-content .menu-contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-family: "Host Grotesk", sans-serif;
  margin-bottom: 8px;
  font-weight: 500;
}

.fullscreen-menu-content .menu-contact-info p:last-child {
  margin-bottom: 0;
}

.fullscreen-menu-content .menu-contact-info {
  position: absolute;
  bottom: 80px;
  left: 10%;
}

.fullscreen-menu-content .menu-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.fullscreen-menu-content .menu-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-family: "Host Grotesk", sans-serif;
}

.fullscreen-menu-content .menu-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.fullscreen-menu-content .menu-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Host Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  transition: color 0.3s ease;
}

.fullscreen-menu-content .menu-nav-links a:hover,
.fullscreen-menu-content .menu-nav-links a.active {
  color: #fff;
}

.fullscreen-menu-content .menu-nav-links a img.menu-arrow {
  width: 24px;
  height: 24px;
  margin-top: 6px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.fullscreen-menu-content .menu-nav-links a:hover img.menu-arrow {
  opacity: 1;
  content: url("/image/SMA image/arrow (1).svg");
}

.fullscreen-menu-content .menu-nav-links a .btn-text-clone {
  font-weight: 700;
  text-align: left;
}

.fullscreen-menu-content .menu-nav-links a:hover .btn-text-original {
  transform: translateY(-120%);
  opacity: 0;
}

.fullscreen-menu-content .menu-nav-links a:hover .btn-text-clone {
  transform: translateY(-100%);
}

.fullscreen-menu-content .menu-socials {
  position: absolute;
  bottom: 80px;
  right: 10%;
  display: flex;
  gap: 24px;
  align-items: center;
}

.fullscreen-menu-content .menu-socials a img {
  filter: brightness(0) invert(1);
}

.fullscreen-menu-content .menu-socials a img,
.fullscreen-menu-content .menu-socials a svg {
  width: 22px;
  height: 22px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fullscreen-menu-content .menu-socials a:hover img,
.fullscreen-menu-content .menu-socials a:hover svg {
  opacity: 0.7;
}

/* ==========================================================================
   PREMIUM BUTTON HOVER EFFECTS (CIRCULAR BLOB)
   ========================================================================== */

/* Base button properties */
.btn,
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-dark-pill,
.btn-white,
.btn-outline-pill {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 1;
}

/* Ensure text and icons stay above the fill */
.btn *,
.btn-primary *,
.btn-secondary *,
.btn-dark *,
.btn-dark-pill *,
.btn-white *,
.btn-outline-pill * {
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fill pseudo-element (circular blob) */
.btn::before,
.btn-primary::before,
.btn-secondary::before,
.btn-dark::before,
.btn-dark-pill::before,
.btn-white::before,
.btn-outline-pill::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 0;
  padding-bottom: 150%;
  /* creates a square */
  border-radius: 50%;
  /* makes it a circle */
  transform: translate(-50%, 50%) scale(0);
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

/* Hover State - Lift, Text Color, and Shadow */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-dark-pill:hover,
.btn-white:hover,
.btn-outline-pill:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
}

/* Sliding Text Effect */
.btn-text-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.btn-text-original {
  display: inline-block;
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-text-clone {
  position: absolute !important;
  top: 100%;
  left: 0;
  width: 100%;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  text-align: center;
}

.btn:hover .btn-text-original {
  transform: translateY(-120%);
  opacity: 0;
}

.btn:hover .btn-text-clone {
  transform: translateY(-100%);
}

.btn:hover *,
.btn-primary:hover *,
.btn-secondary:hover *,
.btn-dark:hover *,
.btn-dark-pill:hover *,
.btn-white:hover *,
.btn-outline-pill:hover * {
  color: #ffffff !important;
}

/* Fill animation on hover */
.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-dark:hover::before,
.btn-dark-pill:hover::before,
.btn-white:hover::before,
.btn-outline-pill:hover::before {
  transform: translate(-50%, 50%) scale(1.5);
}

/* --- COLORS FOR WHITE BUTTONS --- */
/* White buttons: dark navy (#0D1B3E) fill */
.btn:hover,
.btn-primary:hover,
.btn-white:hover {
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(13, 27, 62, 0.3) !important;
  background-color: #0d1b3e !important;
  /* Match fill color to prevent edge bleed */
}

.btn::before,
.btn-primary::before,
.btn-white::before {
  background-color: #0d1b3e;
}

/* --- COLORS FOR BLUE BUTTONS --- */
/* Blue buttons: gold (#C8A84B) fill */
.btn-secondary:hover,
.btn-dark:hover,
.btn-dark-pill:hover,
.btn-outline-pill:hover {
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(200, 168, 75, 0.35) !important;
  background-color: #c8a84b !important;
  /* Match fill color to prevent edge bleed */
}

.btn-secondary::before,
.btn-dark::before,
.btn-dark-pill::before,
.btn-outline-pill::before {
  background-color: #c8a84b;
}

/* SVG Arrow animation base */
.btn svg,
.btn img.btn-arrow,
.btn-primary svg,
.btn-secondary svg,
.btn-dark svg,
.btn-dark-pill svg,
.btn-white svg,
.btn-outline-pill svg {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* SVG Arrow animation on hover */
.btn:hover svg,
.btn:hover img.btn-arrow,
.btn-primary:hover svg,
.btn-secondary:hover svg,
.btn-dark:hover svg,
.btn-dark-pill:hover svg,
.btn-white:hover svg,
.btn-outline-pill:hover svg {
  transform: translateX(4px) rotate(45deg);
}

.btn:hover img.btn-arrow,
.btn-primary:hover img.btn-arrow,
.btn-secondary:hover img.btn-arrow,
.btn-dark:hover img.btn-arrow,
.btn-dark-pill:hover img.btn-arrow,
.btn-white:hover img.btn-arrow,
.btn-outline-pill:hover img.btn-arrow {
  filter: brightness(0) invert(1);
}

/* --- SPECIFIC TWEAKS --- */

/* --- TESTIMONIAL BUTTONS HOVER INTEGRATION --- */
.btn-nav {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 1;
}

.btn-nav *,
.btn-nav-prev *,
.btn-nav-next * {
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 0;
  padding-bottom: 150%;
  /* creates a square */
  border-radius: 50%;
  /* makes it a circle */
  transform: translate(-50%, 50%) scale(0);
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.btn-nav:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
}

.btn-nav:hover * {
  color: #ffffff !important;
}

.btn-nav:hover img {
  filter: brightness(0) invert(1);
}

.btn-nav:hover::before {
  transform: translate(-50%, 50%) scale(1.5);
}

/* White button (Prev) */
.btn-nav-prev:hover {
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(13, 27, 62, 0.3) !important;
  background-color: #0d1b3e !important;
}

.btn-nav-prev::before {
  background-color: #0d1b3e;
}

/* Blue button (Next) */
.btn-nav-next:hover {
  border-color: transparent !important;
  box-shadow: 0 12px 24px rgba(200, 168, 75, 0.35) !important;
  background-color: #c8a84b !important;
}

.btn-nav-next::before {
  background-color: #c8a84b;
}

/* Arrow sliding logic - DO NOT ROTATE */
.btn-nav svg,
.btn-nav img {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-nav-prev:hover svg,
.btn-nav-prev:hover img {
  transform: translateX(-4px);
  /* slides left because it's a left arrow */
}

.btn-nav-next:hover svg,
.btn-nav-next:hover img {
  transform: translateX(4px);
  /* slides right because it's a right arrow */
}

/* Text slide integration */
.btn-nav:hover .btn-text-original {
  transform: translateY(-120%);
  opacity: 0;
}

.btn-nav:hover .btn-text-clone {
  transform: translateY(-100%);
}

/* Standardized Heading Typography */
/* Laptop (992px to 1399px) */
@media (min-width: 992px) {
  .section-title {
    font-size: 44px !important;
  }
}

/* Big Screen (1400px and up) */
@media (min-width: 1400px) {
  .section-title {
    font-size: 46px !important;
  }
}

/* --- RESPONSIVE 430PX --- */
@media (max-width: 430px) {

  .about-hero,
  .products-hero,
  .contact-hero {
    height: 290px;
    min-height: 290px;
  }

  /* Testimonials Mobile Layout */
  .testimonials-header-wrapper .branding-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 24px;
  }

  .testimonials-header-wrapper .branding-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;

  }

  .testimonials-header-wrapper .branding-header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
  }

  .testimonials-header-wrapper .branding-pill,
  .testimonials-header-wrapper .section-title,
  .testimonials-header-wrapper p {
    margin-bottom: 0 !important;
  }

  .testimonial-nav {
    justify-content: center;
    margin-top: 24px !important;
  }

  .testimonial-slider-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .testimonial-card-text {
    display: contents;
  }

  .testimonial-quote {
    order: 1;
    font-size: 15px;
    padding: 0;
  }

  .testimonial-card-image {
    order: 2;
    position: relative;
    width: 100%;
    height: 180px;
    clip-path: none;
    border-radius: 16px;
    overflow: hidden;
  }

  .testimonial-card-image img {
    border-radius: 16px;
  }

  .testimonial-author {
    order: 3;
    padding: 0;
    margin-top: 8px;
  }

  .product-specs-container>.section-title {
    text-align: left !important;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .table-responsive::-webkit-scrollbar {
    display: none;
  }

  .showcase-carousel-wrapper {
    cursor: auto !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .showcase-carousel-wrapper.active {
    cursor: auto !important;
  }

  .drag-custom-cursor {
    display: none !important;
  }

  .gallery-main-image {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .menu-main-logo {
    height: 26px !important;
    margin-bottom: 32px !important;
  }

  .fullscreen-menu-content .menu-socials {
    margin-top: auto !important;
    margin-bottom: 32px !important;
  }

  .fullscreen-menu-content .menu-contact-info {
    margin-bottom: 80px !important;
  }

  .menu-label {
    margin-top: 40px !important;
    font-size: 22px !important;
  }

  .fullscreen-menu-content .menu-nav-links a {
    font-size: clamp(44px, 12vw, 60px) !important;
  }

  .about-intro-section {
    padding-top: 40px !important;
  }

  .about-intro-title {
    font-size: 28px !important;
  }

  .about-intro-desc p {
    font-size: 14px !important;
  }

  .product-specs-section {
    padding-bottom: 40px !important;
  }

  .testimonials-section {
    padding-top: 40px !important;
  }

  .contact-image-wrapper,
  .contact-image-wrapper img {
    border-radius: 16px !important;
  }

  .contact-quick-info {
    left: 16px !important;
    right: 16px !important;
    align-items: flex-start !important;
  }

  .quick-info-item {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .info-text {
    text-align: left !important;
    align-items: flex-start !important;
  }

}

/* Ensure titles in dark sections use white base color */

/* --- GLOBAL MOBILE CENTERING --- */
@media (max-width: 992px) {

  .section-title,
  .branding-title,
  .showcase-title,
  .process-title,
  .faq-title,
  .products-header-title,
  .about-intro-title,
  .cta-title {
    text-align: center !important;
  }

  .about-pill,
  .solutions-pill,
  .branding-pill,
  .showcase-pill,
  .process-pill,
  .final-cta-pill,
  .overview-pill {
    display: flex !important;
    width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }
}

.solutions-section .section-title,
.process-section .section-title,
.about-features-section .section-title,
.final-cta-section .section-title {
  color: var(--WHITE_BASE) !important;
}

/* --- FULLSCREEN MENU RESPONSIVE --- */
@media (max-width: 992px) {
  .fullscreen-menu-content {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 5% 40px;
    gap: 40px;
    overflow-y: auto;
  }

  .fullscreen-menu-content .menu-left,
  .fullscreen-menu-content .menu-right {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .fullscreen-menu-content .menu-contact-info,
  .fullscreen-menu-content .menu-socials {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .fullscreen-menu-content .menu-socials {
    margin-top: 30px;
    justify-content: center;
  }

  .fullscreen-menu-content .menu-nav-links {
    margin-bottom: 20px;
    align-items: center;
  }

  .fullscreen-menu-content .menu-nav-links a {
    justify-content: center;
    font-size: 28px;
  }

  .menu-close-container {
    top: 30px;
    right: 5%;
  }
}

@media (max-width: 767px) {
  .fullscreen-menu-content {
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: clamp(24px, 6vw, 32px) !important;
    padding-bottom: calc(env(safe-area-inset-bottom, 24px) + clamp(24px, 6vw, 32px)) !important;
    align-items: flex-start !important;
    width: 100vw !important;
    min-height: 100dvh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    gap: 0 !important;
    box-sizing: border-box !important;
  }

  .fullscreen-menu-content .menu-left,
  .fullscreen-menu-content .menu-right {
    display: contents !important;
  }

  /* Header elements (Logo and Close) - absolute to stay at top corners */
  .menu-main-logo {
    position: absolute !important;
    top: clamp(24px, 6vw, 32px) !important;
    left: clamp(24px, 6vw, 32px) !important;
    margin: 0 !important;
    height: clamp(28px, 7vw, 36px) !important;
  }

  .menu-close-container {
    position: absolute !important;
    top: clamp(24px, 6vw, 32px) !important;
    right: clamp(24px, 6vw, 32px) !important;
    transform: none !important;
    margin: 0 !important;
  }

  .menu-close-btn {
    font-size: clamp(16px, 4vw, 18px) !important;
  }
  
  .menu-close-btn svg {
    width: clamp(14px, 3.5vw, 16px) !important;
    height: clamp(14px, 3.5vw, 16px) !important;
  }

  /* Navigation Center */
  .menu-label {
    order: 2 !important;
    position: relative !important;
    margin-top: auto !important; /* pushes nav to middle */
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    text-align: left !important;
    font-size: clamp(18px, 5vw, 22px) !important;
    font-weight: 700 !important;
  }

  .fullscreen-menu-content .menu-nav-links {
    order: 3 !important;
    position: relative !important;
    width: 100% !important;
    align-items: flex-start !important;
    gap: clamp(8px, 2vh, 12px) !important;
    margin-bottom: auto !important; /* pushes footer to bottom */
  }

  .fullscreen-menu-content .menu-nav-links a {
    justify-content: flex-start !important;
    font-size: clamp(40px, 11vw, 56px) !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .fullscreen-menu-content .menu-nav-links a .menu-arrow {
    display: none !important;
  }

  /* Bottom Section */
  .fullscreen-menu-content .menu-socials {
    order: 4 !important;
    position: relative !important;
    width: 100% !important;
    justify-content: flex-start !important;
    gap: clamp(16px, 4vw, 24px) !important;
    margin: 0 0 1.5rem 0 !important;
    bottom: auto !important;
    right: auto !important;
  }

  .fullscreen-menu-content .menu-socials a img,
  .fullscreen-menu-content .menu-socials a svg {
    width: clamp(24px, 6vw, 28px) !important;
    height: clamp(24px, 6vw, 28px) !important;
  }

  .fullscreen-menu-content .menu-contact-info {
    order: 5 !important;
    position: relative !important;
    width: 100% !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    bottom: auto !important;
    left: auto !important;
  }

  .fullscreen-menu-content .menu-contact-info p {
    font-size: clamp(12px, 3.2vw, 15px) !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }
}

/* --- GLOBAL MOBILE CENTERING --- */
@media (max-width: 992px) {

  .section-title,
  .main-title,
  .branding-title,
  .showcase-title,
  .process-title,
  .faq-title,
  .products-header-title,
  .about-intro-title,
  .cta-title {
    text-align: center !important;

  }

  .about-pill,
  .solutions-pill,
  .branding-pill,
  .showcase-pill,
  .process-pill,
  .final-cta-pill,
  .overview-pill {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;

  }


}

/* --- TABLET OVERRIDES FOR FULLSCREEN MENU --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .fullscreen-menu-content {
    flex-direction: column !important;
    padding: 0 8% !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .fullscreen-menu-content .menu-left,
  .fullscreen-menu-content .menu-right {
    display: contents !important;
  }

  /* Top Left: Logo */
  .menu-main-logo {
    position: absolute !important;
    top: 60px !important;
    left: 8% !important;
    margin: 0 !important;
    height: clamp(36px, 6vw, 52px) !important;
  }

  /* Top Right: Close Button */
  .menu-close-container {
    position: absolute !important;
    top: 75px !important;
    right: 8% !important;
    transform: translateY(-50%) !important;
  }

  .menu-close-btn {
    font-size: clamp(18px, 3vw, 22px) !important;
  }

  .menu-close-btn svg {
    width: clamp(14px, 2vw, 18px) !important;
    height: clamp(14px, 2vw, 18px) !important;
  }

  /* Center: Navigation Links */
  .menu-label {
    position: relative !important;
    order: 2 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    text-align: left !important;
    width: 100% !important;
    font-size: clamp(20px, 4vw, 26px) !important;
  }

  .fullscreen-menu-content .menu-nav-links {
    position: relative !important;
    order: 3 !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    gap: clamp(8px, 1.5vw, 12px) !important;
  }

  .fullscreen-menu-content .menu-nav-links a {
    justify-content: flex-start !important;
    font-size: clamp(48px, 8vw, 72px) !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    padding: 0 !important;
  }

  .fullscreen-menu-content .menu-nav-links a .menu-arrow {
    display: none !important;
  }

  /* Bottom Left: Contact Info (Reduced size to avoid collision) */
  .fullscreen-menu-content .menu-contact-info {
    position: absolute !important;
    bottom: 60px !important;
    left: 8% !important;
    margin: 0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    width: auto !important;
  }

  .fullscreen-menu-content .menu-contact-info p {
    font-size: clamp(14px, 2.5vw, 20px) !important;
    /* Increased for better readability */
    line-height: 1.5 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  /* Bottom Right: Social Logos (Perfectly vertically centered with Contact Info) */
  .fullscreen-menu-content .menu-socials {
    position: absolute !important;
    bottom: 74px !important;
    /* Offset by 14px to vertically center with the 60px height contact block */
    right: 8% !important;
    margin: 0 !important;
    justify-content: flex-end !important;
    width: auto !important;
    gap: clamp(12px, 2vw, 24px) !important;
  }

  .fullscreen-menu-content .menu-socials a img {
    width: clamp(24px, 4vw, 32px) !important;
    height: clamp(24px, 4vw, 32px) !important;
  }
}

/* --- FIX FOR MAIN TITLE ALIGNMENT ON MOBILE/TABLET --- */
@media (max-width: 992px) {
  .main-title {
    text-align: left !important;
  }
}

/* --- TABLET OVERRIDES FOR SHOWCASE FULL WIDTH TEXT --- */
@media (min-width: 768px) and (max-width: 1024px) {
  .showcase-card-right p {
    max-width: 100% !important;
  }

  .showcase-card-left h3 br {
    display: none !important;
  }
}

/* ==========================================================
   PURE CSS FIX: Prevent Hero Image Zoom on Mobile/Tablet
   ========================================================== */
@media (max-width: 1024px) {

  /* 
     Replace dynamic 'vh' units with static 'svh' (Small Viewport Height).
     This forces the hero containers to ignore the browser's URL address bar 
     when it hides or shows during scroll, keeping the container height static.
     Because the height stays static, 'background-size: cover' will no longer 
     zoom or stretch the background image.
  */
  .hero {
    height: 100vh !important;
    /* Fallback */
    height: 100svh !important;
  }

  .about-hero,
  .products-hero {
    height: 50vh !important;
    height: 50svh !important;
  }

  .contact-hero {
    height: 55vh !important;
    height: 55svh !important;
  }

  .product-details-hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
  }
}

/* ==========================================================
   Reduced Hero Heights for Tablet Only (768px - 1024px)
   ========================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Reduce sizes for internal pages, keeping svh to prevent zoom */
  .about-hero,
  .products-hero {
    height: 25vh !important;
    /* Fallback */
    height: 25svh !important;
    min-height: 200px !important;
  }

  .contact-hero {
    height: 25vh !important;
    height: 25svh !important;
    min-height: 200px !important;
  }

  .product-details-hero {
    min-height: 35vh !important;
    min-height: 35svh !important;
  }
}