:root {
  --diamond: #f0f8ff;
  --diamond-light: #e8f4fd;
  --diamond-ice: #d0efff;
  --diamond-blue: #48cae4;
  --diamond-cyan: #00b4d8;
  --diamond-deep: #023e8a;
  --diamond-navy: #0077b6;
  --diamond-ocean: #0096c7;
  --diamond-sky: #caf0f8;
  --diamond-white: #ffffff;
  --diamond-gold: #ffd700;
  --diamond-gold-light: #ffe566;
  --diamond-silver: #c0c0c0;
  --diamond-platinum: #e5e4e2;
  --diamond-accent: #48cae4;
  --txt-dark: #001d3d;
  --txt-mid: #005f8a;
  --txt-light: #48cae4;
  --txt-muted: #90b8cc;
  --border-light: #90d8f0;
  --shadow-soft: 0 4px 24px rgba(0, 180, 216, 0.18);
  --shadow-strong: 0 12px 48px rgba(0, 160, 210, 0.28);
  --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.3);
  --gradient-hero: linear-gradient(
    155deg,
    #023e8a 0%,
    #0077b6 30%,
    #0096c7 60%,
    #48cae4 100%
  );
  --gradient-dark: linear-gradient(155deg, #001d3d, #003566, #005f8a);
  --gradient-card: linear-gradient(180deg, #f0f8ff 0%, #e8f4fd 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700, #ffe566);
  --diamond-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2348CAE4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: Nunito, sans-serif;
  color: var(--txt-dark);
  background: var(--diamond);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--diamond-blue);
  color: var(--diamond-white);
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 8px;
  transition: top 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}
img {
  display: block;
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--diamond-ice);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--diamond-blue), var(--diamond-cyan));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--diamond-cyan),
    var(--diamond-ocean)
  );
}
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: linear-gradient(135deg, #023e8a, #0077b6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 90px;
  border-bottom: 2px solid var(--diamond-cyan);
  box-shadow: 0 4px 30px rgba(0, 119, 182, 0.4);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
@media (max-width: 640px) {
  #n-logo {
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(72, 202, 228, 0.4));
    transition:
      transform 0.3s ease,
      filter 0.3s ease;
  }
  #n-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(72, 202, 228, 0.6));
  }
  .f-logo {
    height: 60px;
  }
}
#nav.scrolled {
  background: var(--diamond-navy);
  box-shadow: 0 4px 40px rgba(0, 29, 61, 0.5);
}
#n-logo {
  height: 42px;
  object-fit: contain;
  display: block;
}
.nav-logo img {
  height: 85px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(72, 202, 228, 0.4));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(72, 202, 228, 0.6));
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--diamond-blue);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  background: rgba(72, 202, 228, 0.15);
  color: var(--diamond-white);
}
.nav-links a:hover::before {
  width: 80%;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.nav-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.nav-wa svg {
  transition: transform 0.3s ease;
}
.nav-wa:hover svg {
  transform: scale(1.1);
}
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 110px 5% 50px;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--diamond-pattern);
  opacity: 0.5;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 50% 60% at 75% 50%,
      rgba(255, 255, 255, 0.1) 0,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 45% at 15% 80%,
      rgba(72, 202, 228, 0.15) 0,
      transparent 50%
    ),
    radial-gradient(
      ellipse 25% 35% at 50% 10%,
      rgba(200, 245, 255, 0.08) 0,
      transparent 45%
    );
}
.bub {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(144, 224, 239, 0.12),
    rgba(0, 180, 216, 0.02)
  );
  animation: bubrise linear infinite;
}
@keyframes bubrise {
  0% {
    transform: translateY(110vh) scale(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}
.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(180deg);
  }
}
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-waves svg {
  width: 100%;
  height: auto;
}
.wv1 {
  animation: ws 12s ease-in-out infinite alternate;
}
.wv2 {
  animation: ws2 9s ease-in-out infinite alternate;
}
@keyframes ws {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40px);
  }
}
@keyframes ws2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(40px);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--diamond-sky);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  white-space: normal;
  text-align: center;
  line-height: 1.4;
}
.hero-logo {
  height: 60px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}
.hero-title {
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.t-sky {
  background: linear-gradient(135deg, #48cae4, #caf0f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.t-red {
  background: linear-gradient(135deg, #ff6b6b, #ffb4b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.4));
}
.hero-tagline {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--diamond-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.hero-tagline span {
  white-space: nowrap;
}
.hero-tagline::after,
.hero-tagline::before {
  content: "";
  flex: 0 0 40px;
  height: 2px;
}
.hero-tagline::before {
  background: linear-gradient(90deg, transparent, var(--diamond-gold));
}
.hero-tagline::after {
  background: linear-gradient(90deg, var(--diamond-gold), transparent);
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-desc strong {
  color: var(--diamond-blue);
  font-weight: 800;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-p {
  background: linear-gradient(135deg, var(--diamond-blue), var(--diamond-cyan));
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  box-shadow: 0 6px 25px rgba(0, 150, 199, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-p:hover::before {
  left: 100%;
}
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 150, 199, 0.6);
}
.btn-g {
  border: 2px solid rgba(72, 202, 228, 0.6);
  color: var(--diamond-sky);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}
.btn-g:hover {
  border-color: var(--diamond-blue);
  background: rgba(72, 202, 228, 0.15);
  color: #fff;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hs {
  flex: 1;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: background 0.3s ease;
}
.hs:hover {
  background: rgba(255, 255, 255, 0.05);
}
.hs:last-child {
  border-right: none;
}
.hs-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  color: var(--diamond-white);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 20px rgba(72, 202, 228, 0.5);
}
.hs-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero-main {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(72, 202, 228, 0.3);
  transition: transform 0.5s ease;
}
.hero-main:hover {
  transform: scale(1.02);
}
.hero-main img {
  width: 100%;
  display: block;
}
.hero-minis {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.hm {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(72, 202, 228, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hm:hover {
  border-color: var(--diamond-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hm img {
  width: auto;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}
.hm-icon {
  width: 100%;
  height: 80px;
  padding: 10px 20px;
  display: block;
  box-sizing: border-box;
}
.hm-cap {
  padding: 6px 8px;
  background: var(--gradient-dark);
  font-size: 10px;
  font-weight: 800;
  color: var(--diamond-sky);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#band {
  background: linear-gradient(
    135deg,
    var(--diamond-cyan),
    var(--diamond-blue),
    var(--diamond-ocean)
  );
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: 0 4px 30px rgba(0, 180, 220, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
#band::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}
#band p {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 2px 8px rgba(0, 100, 150, 0.3);
  z-index: 1;
}
#band p::before {
  content: "◆";
  font-size: 12px;
  color: var(--diamond-gold);
}
section {
  padding: 100px 5%;
  position: relative;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--diamond-ice), var(--diamond-light));
  border: 1.5px solid var(--diamond-blue);
  color: var(--diamond-ocean);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 180, 220, 0.15);
}
#about .chip,
#contact .chip {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  box-shadow: 0 4px 12px rgba(0, 180, 220, 0.15);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
#about .chip:hover,
#contact .chip:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 180, 220, 0.2);
}
#about .sh,
#contact .sh {
  margin-top: 0;
  margin-bottom: 20px;
}
.sh {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--txt-dark);
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.sp {
  font-size: 16px;
  color: var(--txt-mid);
  line-height: 1.8;
}
.ctr {
  text-align: center;
}
.ctr .sp {
  max-width: 600px;
  margin: 0 auto;
}
#about {
  background: linear-gradient(
    180deg,
    var(--diamond) 0,
    var(--diamond-light) 100%
  );
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.08), transparent);
  pointer-events: none;
}
.ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
}
.ag > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.apts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.apt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--diamond-white);
  border-radius: 16px;
  padding: 20px 20px;
  border: 1px solid rgba(72, 202, 228, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.apt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--diamond-blue), var(--diamond-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.apt:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--diamond-blue);
  transform: translateX(8px);
}
.apt:hover::before {
  opacity: 1;
}
.apt-ic {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--diamond-ice), var(--diamond-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(72, 202, 228, 0.2);
}
.apt h4 {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--txt-dark);
}
.apt p {
  font-size: 13px;
  color: var(--txt-mid);
  line-height: 1.7;
}
.ap {
  background: var(--gradient-dark);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    var(--shadow-strong),
    0 0 0 1px rgba(72, 202, 228, 0.2);
}
.ap::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.12), transparent);
}
.ap::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
}
.ap-logo {
  height: 50px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(72, 202, 228, 0.3));
}
.ap-title {
  font-size: 28px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.ap-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.ap-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.ap-s {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(72, 202, 228, 0.2);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.ap-s:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--diamond-blue);
  transform: translateY(-2px);
}
.ap-s .an {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  color: var(--diamond-sky);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(72, 202, 228, 0.4);
}
.ap-s .al {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  line-height: 1.4;
}
.ap-bs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.apb {
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.apb.g {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
}
.apb.b {
  background: rgba(72, 202, 228, 0.1);
  border: 1px solid rgba(72, 202, 228, 0.2);
}
.apb .ai {
  font-size: 24px;
}
.apb-t strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}
.apb.g .apb-t strong {
  color: var(--diamond-gold);
}
.apb.b .apb-t strong {
  color: var(--diamond-sky);
}
.apb-t span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
#catalogue {
  background: linear-gradient(180deg, #f0f8ff 0, #e8f4fd 100%);
}
.sh-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.sp-pill {
  padding: 8px 20px;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sp-pill.eco {
  background: linear-gradient(135deg, var(--txt-dark), var(--diamond-ocean));
  color: var(--diamond-sky);
  border: 1px solid rgba(72, 202, 228, 0.4);
}
.sp-pill.sup {
  background: linear-gradient(
    135deg,
    var(--diamond-deep),
    var(--diamond-ocean)
  );
  color: var(--diamond-sky);
  border: 1px solid rgba(72, 202, 228, 0.45);
}
.sp-pill.sto {
  background: linear-gradient(135deg, var(--txt-dark), #006080);
  color: var(--diamond-sky);
  border: 1px solid rgba(72, 202, 228, 0.35);
}
.sh-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--diamond-blue), transparent);
}
.sh-note {
  font-size: 13px;
  color: var(--txt-light);
  white-space: nowrap;
  font-weight: 700;
}
.sb {
  margin-bottom: 56px;
}
.pg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.pc {
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--diamond-white);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.pc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(72, 202, 228, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.pc:hover {
  transform: translateY(-10px);
  box-shadow:
    var(--shadow-strong),
    0 0 30px rgba(72, 202, 228, 0.2);
  border-color: var(--diamond-blue);
}
.pc:hover::before {
  opacity: 1;
}
.pc-img {
  height: 200px;
  overflow: hidden;
  background: var(--diamond-light);
  position: relative;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pc:hover .pc-img img {
  transform: scale(1.1);
}
.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 29, 61, 0.9);
  color: var(--diamond-sky);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(72, 202, 228, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.pc-body {
  padding: 18px 20px;
}
.pc-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--txt-dark);
  margin-bottom: 4px;
}
.pc-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-light);
  margin-bottom: 12px;
}
.pc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(72, 202, 228, 0.3);
  font-size: 13px;
}
.pc-row:last-of-type {
  border-bottom: none;
}
.pc-row .k {
  color: var(--txt-muted);
}
.pc-row .v {
  font-weight: 800;
  color: var(--txt-dark);
}
.pc-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--diamond-blue), var(--diamond-cyan));
  color: #fff;
  border: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 150, 199, 0.4);
  transition: all 0.3s ease;
}
.pc-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.5);
}
#gallery {
  background: linear-gradient(
    135deg,
    var(--diamond-ice),
    var(--diamond-light),
    var(--diamond-sky)
  );
}
.gg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gc {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(72, 202, 228, 0.25);
  transition: all 0.4s ease;
  background: var(--diamond-white);
  position: relative;
}
.gc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 30px rgba(72, 202, 228, 0.1);
  pointer-events: none;
}
.gc:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: var(--diamond-blue);
}
.gc img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gc:hover img {
  transform: scale(1.05);
}
.gc-cap {
  padding: 16px 18px;
  background: var(--diamond-white);
}
.gc-cap strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.gc-cap span {
  font-size: 12px;
  color: var(--txt-light);
}
#why {
  background: linear-gradient(155deg, #e8f4fd, #d0efff, #caf0f8, #e0f6fd);
}
#why .sh {
  color: var(--txt-dark);
}
#why .chip {
  background: linear-gradient(135deg, var(--diamond-ice), var(--diamond-light));
  border-color: var(--diamond-blue);
  color: var(--diamond-ocean);
}
#why .sp {
  color: var(--txt-mid);
}
.wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.wc {
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(72, 202, 228, 0.25);
  border-radius: 20px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 160, 210, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.wc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--diamond-blue),
    var(--diamond-cyan),
    var(--diamond-blue)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wc:hover {
  background: #fff;
  border-color: var(--diamond-blue);
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-strong),
    0 0 30px rgba(72, 202, 228, 0.15);
}
.wc:hover::before {
  opacity: 1;
}
.wc-ic {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.wc h3 {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--txt-dark);
  margin-bottom: 10px;
}
.wc p {
  font-size: 14px;
  color: var(--txt-mid);
  line-height: 1.8;
}
.why-hl {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(72, 202, 228, 0.35);
  border-radius: 20px;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(0, 160, 210, 0.15);
}
.whi {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.whi:hover {
  background: rgba(72, 202, 228, 0.08);
}
.whn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  color: var(--diamond-ocean);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(72, 202, 228, 0.3);
}
.whl {
  font-size: 11px;
  color: var(--txt-mid);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
#components {
  background: linear-gradient(180deg, #f0f8ff 0, #e8f4fd 100%);
}
.cg4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cc {
  background: linear-gradient(180deg, var(--diamond-light), var(--diamond-ice));
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.cc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--diamond-blue);
}
.cc-img {
  height: 180px;
  background: var(--diamond-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  position: relative;
}
.cc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(72, 202, 228, 0.1));
}
.cc-img img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.cc:hover .cc-img img {
  transform: scale(1.12);
}
.cc-body {
  padding: 20px 18px 22px;
  background: var(--diamond-white);
}
.cc-body h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cc-brand {
  font-size: 14px;
  color: var(--diamond-ocean);
  font-weight: 800;
  margin-bottom: 8px;
}
.cc-body p {
  font-size: 13px;
  color: var(--txt-mid);
  line-height: 1.7;
}
.cex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.cx {
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 180, 220, 0.1);
}
.cx:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--diamond-blue);
}
.cx .cxi {
  font-size: 32px;
  margin-bottom: 12px;
}
.cx h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cx .cxb {
  font-size: 13px;
  color: var(--diamond-ocean);
  font-weight: 800;
  margin-bottom: 8px;
}
.cx p {
  font-size: 13px;
  color: var(--txt-mid);
  line-height: 1.6;
}
#faq {
  background: linear-gradient(
    135deg,
    var(--diamond-light),
    var(--diamond-ice),
    var(--diamond-sky)
  );
}
.faq-wrap {
  max-width: 850px;
  margin: 0 auto;
}
.fi {
  background: var(--diamond-white);
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.fi.open {
  border-color: var(--diamond-blue);
  box-shadow: var(--shadow-soft);
}
.fq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.fq span {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--txt-dark);
  flex: 1;
}
.fq-ic {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  border: 2px solid rgba(72, 202, 228, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--diamond-ocean);
  transition: all 0.3s ease;
}
.fi.open .fq-ic {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--diamond-blue), var(--diamond-cyan));
  color: #fff;
  border-color: var(--diamond-blue);
}
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.fi.open .fa {
  max-height: 500px;
}
.fa p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--txt-mid);
  line-height: 1.8;
  border-top: 1px solid rgba(72, 202, 228, 0.2);
  padding-top: 16px;
  margin-top: -1px;
}
#contact {
  background: linear-gradient(180deg, #f0f8ff 0, #e8f4fd 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(240, 248, 255, 0.01),
    var(--diamond)
  );
  pointer-events: none;
}
.cong {
  display: grid;
  grid-template-columns: minmax(0, 500px) 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.cong > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cil {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--diamond-light);
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 16px;
  padding: 16px 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ci::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--diamond-blue), var(--diamond-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ci:hover {
  border-color: var(--diamond-blue);
  box-shadow: var(--shadow-soft);
  transform: translateX(5px);
}
.ci:hover::before {
  opacity: 1;
}
#about .ag > div:first-child {
  background: var(--diamond-light);
  border: 2px solid rgba(72, 202, 228, 0.25);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
#about .ag > div:first-child:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.ci-ic {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--diamond-ice), var(--diamond-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(72, 202, 228, 0.2);
}
.ci-tx h5 {
  font-weight: 800;
  font-size: 11px;
  color: var(--txt-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ci-tx a,
.ci-tx p {
  font-size: 15px;
  color: var(--txt-dark);
  line-height: 1.5;
}
.ci-tx a:hover {
  color: var(--diamond-ocean);
}
.wa-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wa-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.wa-cta:hover::before {
  left: 100%;
}
.wa-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
}
.wa-cta strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}
.wa-cta span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.wa-cta svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.wa-cta:hover svg {
  transform: scale(1.1);
}
.cform {
  background: var(--gradient-dark);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(72, 202, 228, 0.4);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
@media (max-width: 480px) {
  .cform {
    padding: 30px 20px;
  }
  #n-logo,
  .nav-logo img {
    height: 45px !important;
  }
  .hero-title {
    font-size: clamp(32px, 13vw, 52px);
  }
  .hero-logo {
    height: 44px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
  .pg {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pc {
    max-width: 100%;
  }
  .pop-ov {
    padding: 10px;
  }
  .pop {
    border-radius: 16px;
    max-height: 94vh;
  }
  .ph {
    padding: 16px 18px;
  }
  .ph-l h2 {
    font-size: 18px;
  }
  .pqs {
    padding: 18px 16px;
  }
  .pfeats {
    padding: 18px 16px;
  }
  .fg2 {
    gap: 8px;
  }
  .fit {
    padding: 10px 12px;
  }
  .fit-t {
    font-size: 12px;
  }
  .pdesc {
    padding: 16px 18px;
  }
  .pdesc p {
    font-size: 14px;
  }
  .pcta {
    padding: 16px 18px;
    flex-direction: column;
  }
  .cwa {
    font-size: 15px;
    padding: 14px 18px;
  }
  .pspec {
    padding: 16px 18px;
  }
  section {
    padding: 48px 5%;
  }
  .why-hl {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .whn {
    font-size: 28px;
  }
  .cex,
  .cg4 {
    grid-template-columns: 1fr;
  }
  .pg {
    gap: 12px;
  }
}
.cform::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}
.cform::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05), transparent);
  pointer-events: none;
  z-index: 0;
}
.cform h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.cform .cfs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.frow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .frow {
    gap: 12px;
    margin-bottom: 12px;
  }
}
.fg {
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 1;
}
#fContent > .fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #fff;
  font-family: Nunito, sans-serif;
  outline: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--diamond-blue);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(72, 202, 228, 0.25);
  transform: translateY(-2px);
}
.fg select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2348CAE4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.fg select option {
  background: #003566;
  color: #fff;
}
.fg textarea {
  resize: vertical;
  min-height: 120px;
}
.fsub {
  width: 100%;
  padding: 18px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--diamond-blue), var(--diamond-cyan));
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0, 150, 199, 0.4);
  transition: all 0.3s ease;
}
.fsub::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.fsub:hover::before {
  left: 100%;
}
.fsub:hover {
  box-shadow: 0 10px 30px rgba(0, 150, 199, 0.5);
  transform: translateY(-3px) scale(1.02);
}
.fsub:active {
  transform: translateY(-1px) scale(0.99);
}
.fnote {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.fok {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.5s ease-out;
}
@media (max-width: 480px) {
  .fok {
    padding: 30px 15px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fok .oi {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fok h3 {
  color: var(--diamond-sky);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fok p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
}
.fok a {
  color: var(--diamond-sky);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fok a:hover {
  color: var(--diamond-blue);
  text-decoration-color: var(--diamond-blue);
}
footer {
  background: var(--diamond-deep);
  padding: 60px 5% 28px;
  border-top: 3px solid var(--diamond-cyan);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--diamond-blue),
    var(--diamond-cyan),
    var(--diamond-blue)
  );
}
.fg-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.fb p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
  margin: 12px 0 16px;
  max-width: 300px;
}
.f-logo {
  height: 75px;
  display: block;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 10px rgba(72, 202, 228, 0.3));
}
.f-tag {
  background: rgba(72, 202, 228, 0.12);
  border: 1.5px solid rgba(72, 202, 228, 0.3);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--diamond-sky);
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-block;
}
.fc h5 {
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc ul a,
.fc ul li {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}
.fc ul a:hover {
  color: var(--diamond-blue);
  padding-left: 8px;
}
.fbtm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.pop-ov {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 15, 40, 0.85);
  backdrop-filter: blur(15px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pop-ov.open {
  display: flex;
}
.brochure-pop {
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  max-height: 90vh;
  overflow-y: auto;
}
.pop {
  background: var(--diamond-white);
  border-radius: 24px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(72, 202, 228, 0.3);
  animation: pIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pIn {
  from {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.ph {
  background: var(--gradient-dark);
  padding: 24px 30px;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--diamond-blue);
  position: sticky;
  top: 0;
  z-index: 2;
}
.ph-l h2 {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ph-l .pseries {
  font-size: 12px;
  color: var(--diamond-sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.px {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.px:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}
.ptop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.pimg {
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pqs {
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--diamond-light), var(--diamond-ice));
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pqs h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--txt-dark);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.pqr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(72, 202, 228, 0.3);
  font-size: 14px;
}
.pqr:last-child {
  border-bottom: none;
}
.pqr .qk {
  color: var(--txt-light);
  font-weight: 600;
}
.pqr .qv {
  font-weight: 800;
  color: var(--txt-dark);
}
.pfeats {
  padding: 26px 30px;
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  border-top: 1px solid rgba(72, 202, 228, 0.3);
}
.pfeats h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--txt-dark);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.fg2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.fit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--diamond-white);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1.5px solid rgba(72, 202, 228, 0.25);
  transition: all 0.3s ease;
}
.fit:hover {
  border-color: var(--diamond-blue);
  transform: translateX(4px);
}
.fit-ic {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-t {
  font-size: 13px;
  color: var(--txt-mid);
  line-height: 1.6;
  font-weight: 600;
}
.pspec {
  padding: 24px 30px;
  border-top: 1px solid rgba(72, 202, 228, 0.3);
}
.pspec h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--txt-dark);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.pspec img {
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(72, 202, 228, 0.25);
}
.pdesc {
  padding: 22px 30px;
  border-top: 1px solid rgba(72, 202, 228, 0.3);
}
.pdesc p {
  font-size: 15px;
  color: var(--txt-mid);
  line-height: 1.8;
}
.pcta {
  padding: 24px 30px;
  border-top: 1px solid rgba(72, 202, 228, 0.3);
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg, var(--diamond-light), var(--diamond-ice));
  border-radius: 0 0 24px 24px;
  flex-wrap: wrap;
}
.cwa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.cwa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.cinq {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--diamond-blue), var(--diamond-cyan));
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 150, 199, 0.4);
  transition: all 0.3s ease;
}
.cinq:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 150, 199, 0.5);
}
#clients {
  background: linear-gradient(135deg, #001020, #001d3d, #003566);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
#clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--diamond-pattern);
  opacity: 0.3;
  pointer-events: none;
}
.clients-inner {
  padding: 0 5%;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.clients-inner .chip {
  background: rgba(72, 202, 228, 0.15);
  border-color: rgba(72, 202, 228, 0.4);
  color: var(--diamond-sky);
}
.clients-inner .sh {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 42px);
}
.clients-inner .sp {
  color: rgba(255, 255, 255, 0.55);
  max-width: 550px;
  margin: 0 auto;
}
.slider-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.slider-wrap::after,
.slider-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #001020, transparent);
}
.slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #001020, transparent);
}
.slider-track {
  display: flex;
  gap: 0;
  animation: slide 30s linear infinite;
  width: max-content;
}
.slider-track:hover {
  animation-play-state: paused;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-card {
  width: 200px;
  height: 95px;
  flex-shrink: 0;
  margin: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(72, 202, 228, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  transition: all 0.3s ease;
  cursor: default;
}
.logo-card:hover {
  background: rgba(72, 202, 228, 0.12);
  border-color: rgba(72, 202, 228, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.85) grayscale(0.2);
  transition: all 0.3s ease;
}
.logo-card:hover img {
  filter: brightness(1) grayscale(0);
}
.logo-card span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.clients-note {
  text-align: center;
  padding: 0 5%;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}
.clients-note strong {
  color: var(--diamond-blue);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 960px) {
  .ag,
  .cong,
  .fg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wg {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-hl {
    grid-template-columns: repeat(2, 1fr);
  }
  .cex,
  .cg4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 32px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-tagline {
    justify-content: center;
  }
  .hero-tagline::after,
  .hero-tagline::before {
    flex: 0 0 24px;
  }
  .ptop {
    grid-template-columns: 1fr;
  }
  .pimg {
    min-height: 250px;
  }
  section {
    padding: 80px 5%;
  }
}
@media (max-width: 768px) {
  #nav {
    height: 70px;
    padding: 0 5%;
    flex-wrap: nowrap;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #nav #n-logo {
    height: 40px;
  }
  #nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 910;
    order: 3;
    margin-left: auto;
  }
  #nav .nav-wa {
    display: none;
  }
  #nav .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(155deg, #023e8a, #0077b6);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 899;
    padding: 80px 24px 40px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
  }
  #nav.nav-open .nav-links {
    display: flex;
  }
  #nav .nav-links li {
    width: 100%;
    max-width: 340px;
  }
  #nav .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
  }
  #nav .nav-links a:focus,
  #nav .nav-links a:hover {
    background: rgba(72, 202, 228, 0.2);
    color: #fff;
  }
  #nav .nav-links a::before {
    display: none;
  }
  #nav .nav-wa-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin-top: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }
  #hero {
    padding-top: 120px;
  }
  .hero-right {
    display: none;
  }
  .hero-tagline {
    font-size: clamp(11px, 2.8vw, 14px);
    justify-content: center;
    white-space: nowrap;
    gap: 0;
    overflow: hidden;
  }
  .hero-tagline::after,
  .hero-tagline::before {
    display: none;
  }
  .hero-tagline span {
    white-space: nowrap;
  }
  .wg {
    grid-template-columns: 1fr;
  }
  .cex,
  .cg4 {
    grid-template-columns: 1fr 1fr;
  }
  .fg2 {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .pcta {
    flex-direction: column;
  }
  section {
    padding: 60px 5%;
  }
  .why-hl {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
  }
  .whn {
    font-size: 36px;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .hs {
    min-width: 50%;
  }
}
@media (max-width: 640px) {
  .pimg {
    min-height: 200px;
  }
  .pimg img {
    height: auto;
  }
}
@media (min-width: 769px) {
  #nav-toggle {
    display: none;
  }
  #nav .nav-wa-mobile {
    display: none;
  }
}
@media print {
  #bubs,
  #nav,
  .cinq,
  .clients-note,
  .cwa,
  .fsub,
  .hero-btns,
  .hero-waves,
  .nav-wa,
  .pc-btn,
  .pop-ov,
  .slider-wrap,
  .sparkle,
  .wa-cta {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
  section {
    padding: 20pt 5%;
  }
  .pc-img {
    height: auto;
  }
  .sh {
    font-size: 22pt;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
