:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --emerald-500: #10b981;
  --yellow-200: #fef08a;
  --yellow-500: #eab308;
  --orange-500: #f97316;

  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container-padding: 1rem;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--slate-800);
  background-color: var(--slate-50);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

::selection {
  background-color: var(--amber-500);
  color: #fff;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.gap-2 {
  gap: .5rem;
}

.gap-3 {
  gap: .75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.gradient-text-amber {
  background: linear-gradient(100deg, var(--amber-500), var(--yellow-200), var(--amber-400), var(--yellow-200), var(--amber-500));
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: amberShimmer 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, .24));
}

@keyframes amberShimmer {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, .2));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 16px rgba(253, 224, 71, .38));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, .2));
  }
}

.gradient-text-blue {
  background: linear-gradient(to right, var(--blue-600), var(--blue-900));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(to right, var(--amber-500), var(--orange-500));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.fade-in {
  animation: fadeIn .5s ease-out forwards;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
  }
}

.animate-bounce-slow {
  animation: bounce 3s infinite;
}

.animate-bounce-slower {
  animation: bounce 4s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin 6s linear infinite;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all .5s ease;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(23, 37, 84, .9), transparent);
}

.navbar.scrolled {
  padding: .75rem 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.logo-box {
  width: 4rem;
  height: auto;
  /* background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600)); */
  /* border-radius: .75rem; */
  /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -.05em;
  transition: transform .3s;
}

.logo-box img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.logo-group:hover .logo-box {
  transform: scale(1.05);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.025em;
  color: #fff;
  transition: color .3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.navbar.scrolled .logo-text {
  color: var(--blue-950);
  text-shadow: none;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .desktop-menu {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: .5rem 0;
  font-weight: 600;
  color: var(--slate-100);
  transition: color .3s;
}

.nav-link:hover {
  color: var(--amber-400);
}

.navbar.scrolled .nav-link {
  color: var(--slate-600);
}

.navbar.scrolled .nav-link:hover {
  color: var(--amber-500);
}

.nav-link-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber-500);
  transition: width .3s;
}

.nav-link:hover .nav-link-indicator {
  width: 100%;
}

.btn-header {
  background-color: var(--amber-500);
  color: #fff;
  padding: .625rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, .39);
  transition: all .3s;
}

.btn-header:hover {
  background-color: var(--amber-400);
  box-shadow: 0 6px 20px rgba(245, 158, 11, .23);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  position: relative;
  z-index: 50;
  padding: .5rem;
  color: #fff;
  border-radius: .5rem;
  transition: background .3s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, .1);
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--slate-800);
}

.navbar.scrolled .mobile-menu-btn:hover {
  background: rgba(0, 0, 0, .05);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.icon-menu {
  width: 1.75rem;
  height: 1.75rem;
  transition: transform .3s, opacity .3s;
}

.icon-close {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  top: .5rem;
  left: .5rem;
  opacity: 0;
  transform: rotate(90deg);
  transition: all .3s;
}

.menu-open .icon-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.menu-open .icon-close {
  opacity: 1;
  transform: rotate(0);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 37, 84, .4);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80%;
  max-width: 384px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  z-index: 40;
  transform: translateX(100%);
  transition: transform .5s ease-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 7rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-950);
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 1rem;
  transition: color .3s;
}

.mobile-link:hover {
  color: var(--amber-500);
}

.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--slate-900);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 100vh;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blue-950), rgba(23, 37, 84, .8), rgba(30, 58, 138, .3));
  z-index: 10;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.blur-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, .2);
  filter: blur(100px);
  z-index: 10;
  pointer-events: none;
}

.blur-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, .2);
  filter: blur(100px);
  z-index: 10;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.badge-premium {
  display: inline-flex;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
}

.ping-dot {
  position: relative;
  display: flex;
  height: .75rem;
  width: .75rem;
}

.ping-dot-bg {
  position: absolute;
  display: inline-flex;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background: var(--amber-400);
  opacity: .75;
}

.ping-dot-core {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  height: .75rem;
  width: .75rem;
  background: var(--amber-500);
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-quote {
  padding-left: 1.25rem;
  border-left: 4px solid var(--amber-500);
  margin-bottom: 2.5rem;
  background: linear-gradient(to right, rgba(255, 255, 255, .05), transparent);
  padding-top: .5rem;
  padding-bottom: .5rem;
  border-radius: 0 .5rem .5rem 0;
}

.hero-quote-title {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  text-shadow: 0 0 10px rgba(251, 191, 36, .12);
}

.hero-quote-title span {
  position: relative;
  display: inline-block;
  animation: quotePulse 2.2s ease-in-out infinite;
  text-shadow: 0 0 14px rgba(251, 191, 36, .4);
}

@keyframes quotePulse {

  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }

  50% {
    transform: translateY(-1px);
    filter: brightness(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {

  .gradient-text-amber,
  .hero-quote-title span {
    animation: none;
  }
}

@media (min-width: 768px) {
  .hero-quote-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-quote-title {
    font-size: 1.875rem;
  }
}

.hero-quote-text {
  color: var(--slate-300);
  font-size: 1rem;
  max-width: 36rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-quote-text {
    font-size: 1.125rem;
  }
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-btns {
    flex-direction: row;
  }
}

.btn-primary {
  position: relative;
  padding: 1rem 2rem;
  background: var(--amber-500);
  color: var(--blue-950);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(245, 158, 11, .3);
  transition: transform .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-primary-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .3);
  transform: translateY(100%);
  transition: transform .3s ease-in-out;
}

.btn-primary:hover .btn-primary-overlay {
  transform: translateY(0);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

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

.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.btn-secondary:hover .icon-circle {
  transform: scale(1.1);
}

.hero-images {
  display: none;
  position: relative;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-images {
    display: block;
    margin-top: 0;
  }
}

.img-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  border: 2px solid rgba(255, 255, 255, .1);
  transform: rotate(2deg);
  transition: transform .5s;
  z-index: 10;
}

.hero-images:hover .img-main {
  transform: rotate(0);
}

.img-main-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue-950), transparent, transparent);
  opacity: .8;
}

.floating-badge {
  position: absolute;
  bottom: -2rem;
  left: -4rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 30;
}

.badge-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--amber-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, .4);
}

.img-sub {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  border: 4px solid var(--slate-800);
  transform: rotate(-6deg);
  transition: transform .5s;
  z-index: 20;
}

.hero-images:hover .img-sub {
  transform: rotate(0);
}

.img-sub-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, .2);
  mix-blend-mode: multiply;
}

.stats-container {
  position: relative;
  z-index: 30;
  margin-top: -2.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
}

.stats-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-card {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon {
  color: var(--amber-500);
  margin-bottom: .75rem;
  background: var(--amber-50);
  padding: .75rem;
  border-radius: 50%;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--blue-950);
  margin-bottom: .25rem;
}

.stat-label {
  color: var(--slate-500);
  font-weight: 500;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.section-about {
  padding: 6rem 0;
  position: relative;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-about {
    padding: 8rem 0;
  }
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background: var(--slate-50);
  z-index: 0;
  transform: skewX(-12deg) translateX(2.5rem);
}

.about-circle {
  position: absolute;
  left: -5rem;
  top: 5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 20px solid rgba(255, 251, 235, .5);
  z-index: 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    flex-direction: row;
    gap: 5rem;
  }
}

.about-images {
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .about-images {
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-images {
    width: 50%;
  }
}

.img-about-1 {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  aspect-ratio: 4/3;
  width: 90%;
  z-index: 10;
  border: 4px solid #fff;
}

.img-about-1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 37, 84, .1);
  mix-blend-mode: multiply;
}

.img-about-2 {
  position: absolute;
  bottom: -.5rem;
  right: 0;
  width: 65%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  border: 8px solid #fff;
  z-index: 20;
  transition: transform .5s;
}

@media (min-width: 768px) {
  .img-about-2 {
    bottom: -3rem;
    right: -1rem;
  }
}

.about-images:hover .img-about-2 {
  transform: translateY(-8px);
}

.year-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--amber-500);
  color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .year-badge {
    left: -2rem;
    padding: 1.25rem;
  }
}

.year-text {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: .25rem;
}

@media (min-width: 768px) {
  .year-text {
    font-size: 2.25rem;
  }
}

.year-label {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--amber-100);
}

@media (min-width: 768px) {
  .year-label {
    font-size: .75rem;
  }
}

.about-content {
  width: 100%;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .about-content {
    width: 50%;
    margin-top: 0;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.label-line {
  width: 2.5rem;
  height: .25rem;
  background: var(--amber-500);
  border-radius: 9999px;
}

.label-text {
  color: var(--amber-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .875rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--blue-950);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.about-text-box {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text-line {
  position: absolute;
  left: 0;
  top: .25rem;
  bottom: .25rem;
  width: .25rem;
  background: var(--amber-500);
  border-radius: 9999px;
}

.text-body {
  color: var(--slate-600);
  line-height: 1.625;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.text-body:last-child {
  margin-bottom: 0;
}

.text-highlight {
  font-weight: 700;
  color: var(--blue-950);
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: .75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: all .3s;
}

.feature-item:hover {
  border-color: rgba(245, 158, 11, .3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
}

.feature-item.wide {
  grid-column: 1 / -1;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-500);
  margin-top: .125rem;
  transition: all .3s;
}

.feature-item:hover .feature-icon {
  background: var(--amber-500);
  color: #fff;
}

.feature-text {
  font-weight: 600;
  color: var(--blue-950);
  font-size: .875rem;
  line-height: 1.25;
}

.section-products {
  padding: 6rem 0;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-products {
    padding: 8rem 0;
  }
}

.prod-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .03;
  pointer-events: none;
}

.prod-glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(245, 158, 11, .1);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  transform: translate(50%, -50%);
}

.prod-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, .05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  transform: translate(-50%, 50%);
}

.section-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 10;
}

.badge-core {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  color: var(--amber-600);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.section-desc {
  color: var(--slate-500);
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-desc {
    font-size: 1.25rem;
  }
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}

.tabs-wrapper {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  background: rgba(226, 232, 240, .5);
  backdrop-filter: blur(16px);
  padding: .375rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .5);
  /* box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .06); */
  max-width: 100%;
  overflow-x: auto;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  transition: all .3s;
  color: var(--slate-500);
}

@media (min-width: 768px) {
  .tab-btn {
    padding: .625rem 1.75rem;
    font-size: 1rem;
  }
}

.tab-btn:hover {
  color: var(--blue-950);
}

.tab-btn.active {
  background: #fff;
  color: var(--blue-950);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .05);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .06);
  transition: all .5s;
  cursor: pointer;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, .15);
  transform: translateY(-8px);
}

.prod-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--slate-100);
}

.prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease-out;
}

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

.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 37, 84, .6), transparent);
  opacity: 0;
  transition: opacity .5s;
}

.product-card:hover .prod-img-overlay {
  opacity: 1;
}

.prod-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #fff;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .prod-content {
    padding: 2rem;
  }
}

.prod-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-950);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  transition: color .3s;
}

@media (min-width: 768px) {
  .prod-title {
    font-size: 1.5rem;
  }
}

.product-card:hover .prod-title {
  color: var(--amber-600);
}

.prod-features {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.prod-feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.prod-feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: .125rem;
}

.prod-feature-text {
  color: var(--slate-600);
  font-size: .875rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .prod-feature-text {
    font-size: 1rem;
  }
}

.prod-action {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-action-text {
  font-weight: 700;
  color: var(--blue-950);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .3s;
}

.product-card:hover .prod-action-text {
  color: var(--amber-600);
}

.prod-action-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all .3s;
}

.product-card:hover .prod-action-btn {
  background: var(--amber-500);
  color: #fff;
}

.prod-action-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform .3s;
}

.product-card:hover .prod-action-icon {
  transform: translateX(4px);
}

.btn-outline-pdf {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  color: var(--blue-950);
  border: 2px solid var(--slate-200);
  padding: .875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  transition: all .3s;
}

.btn-outline-pdf:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.pdf-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber-500);
  transition: transform .3s;
}

.btn-outline-pdf:hover .pdf-icon {
  transform: translateY(-4px);
}

.section-network {
  padding: 6rem 0;
  overflow: hidden;
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .section-network {
    padding: 8rem 0;
  }
}

.net-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .03;
  pointer-events: none;
}

.net-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: rgba(59, 130, 246, .05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  transform: translate(-33%, -33%);
}

.network-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .network-grid {
    flex-direction: row;
    gap: 5rem;
  }
}

.network-visual {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .network-visual {
    width: 41.666%;
  }
}

.network-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .network-content {
    width: 58.333%;
  }
}

.map-container {
  position: relative;
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -18px rgba(15, 23, 42, .35);
  background: #1e3a8a;
  border: 10px solid #fff;
  aspect-ratio: 4/5;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: .82; */
  filter: saturate(.95) contrast(.9);
  transition: transform .9s ease, filter .9s ease;
}

.map-container:hover .map-img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.map-radar {
  display: none;
}

.map-pin {
  position: absolute;
  display: flex;
}

.pin-1 {
  top: 35%;
  left: 60%;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%);
}

.pin-2 {
  top: 55%;
  left: 45%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate(-50%, -50%);
}

.pin-3 {
  top: 70%;
  left: 30%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
}

.pin-4 {
  top: 25%;
  left: 35%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
}

.pin-core {
  border: 2px solid #fff;
  box-shadow: 0 0 15px rgba(245, 158, 11, .8);
}

.pin-1 .pin-core {
  border-width: 3px;
}

.map-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(30, 58, 138, .92) 0%, rgba(30, 58, 138, .68) 42%, rgba(30, 58, 138, 0) 100%);
  padding-top: 5.25rem;
}

@media (min-width: 768px) {
  .map-info {
    padding: 2rem;
    padding-top: 5rem;
  }
}

.info-label {
  color: var(--amber-400);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  margin-bottom: .4rem;
}

@media (min-width: 768px) {
  .info-label {
    font-size: .875rem;
  }
}

.info-value {
  color: #fff;
  font-weight: 900;
  font-size: 2.875rem;
  letter-spacing: -.025em;
  line-height: 1;
}

@media (min-width: 768px) {
  .info-value {
    font-size: 2.25rem;
  }
}

.info-unit {
  font-size: 2rem;
  font-weight: 700;
  color: #dbeafe;
}

@media (min-width: 768px) {
  .info-unit {
    font-size: 1.25rem;
  }
}

.floating-status {
  display: none;
  position: absolute;
  top: 3rem;
  right: -3rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(8, 112, 184, .15);
  border: 1px solid var(--slate-100);
  align-items: center;
  gap: 1rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .floating-status {
    display: flex;
  }
}

.status-icon {
  width: 3rem;
  height: 3rem;
  background: #ecfdf5;
  color: var(--emerald-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-val {
  color: var(--blue-950);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}

.status-text {
  color: var(--slate-500);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: .25rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.loc-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .6);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  transition: all .3s;
  overflow: hidden;
  cursor: pointer;
}

.loc-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.loc-bg-hover {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(to bottom left, var(--amber-100), transparent);
  border-bottom-left-radius: 9999px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.loc-card:hover .loc-bg-hover {
  opacity: 1;
}

.loc-content {
  position: relative;
  z-index: 10;
}

.loc-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  transition: all .3s;
}

.loc-card:hover .loc-icon {
  background: var(--amber-500);
  color: #fff;
}

.loc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-950);
  margin-bottom: .5rem;
  transition: color .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loc-card:hover .loc-title {
  color: var(--amber-600);
}

.loc-desc {
  color: var(--slate-500);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.625;
}

.section-projects {
  padding: 5rem 0;
  background: var(--slate-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-projects {
    padding: 8rem 0;
  }
}

.proj-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80");
  opacity: .05;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
}

.proj-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--slate-900), rgba(23, 37, 84, .9), var(--slate-900));
}

.partners-wrap {
  margin-bottom: 6rem;
}

.partners-label {
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--slate-500);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.partners-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .partners-flex {
    gap: 1.5rem;
  }
}

.partner-card {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 160px;
  transition: all .3s;
  text-align: center;
}

.partner-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(245, 158, 11, .5);
}

.partner-name {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .05em;
  color: var(--slate-200);
}

.partner-name.large {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.partner-sub {
  font-size: .625rem;
  text-transform: uppercase;
  margin-top: .25rem;
  color: var(--slate-400);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proj-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
  background: var(--slate-800);
}

.proj-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

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

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--slate-900), rgba(15, 23, 42, .5), transparent);
  opacity: .9;
  transition: opacity .3s;
}

.proj-info {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proj-content-move {
  transform: translateY(0);
  transition: transform .5s;
}

.proj-card:hover .proj-content-move {
  transform: translateY(-.5rem);
}

.proj-cat {
  color: var(--amber-400);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  border-left: 2px solid var(--amber-400);
  padding-left: .5rem;
}

.proj-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.25;
}

.proj-hidden {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s;
}

.proj-card:hover .proj-hidden {
  height: auto;
  opacity: 1;
  margin-top: 1rem;
}

.proj-desc {
  color: var(--slate-300);
  font-size: .875rem;
  line-height: 1.625;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: .75rem;
}

.section-cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .section-cta {
    padding: 8rem 0;
  }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--amber-500);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzR2LTE2aDJ2MTZoLTJ6bS0xNC0xNmgydjE2aC0ydm0tMTYtMTZoMnYxNmgtMnptMzIgMTZoMnYxNmgtMnptLTE2IDE2aDJ2MTZoLTIiLz48L2c+PC9nPjwvc3ZnPg==");
  opacity: .2;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-desc {
  color: var(--amber-100);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-desc {
    font-size: 1.25rem;
  }
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-btns {
    flex-direction: row;
  }
}

.btn-cta-1 {
  background: #fff;
  color: var(--amber-600);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  transition: transform .3s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-cta-1 {
    width: auto;
  }
}

.btn-cta-1:hover {
  transform: translateY(-4px);
}

.btn-cta-2 {
  background: var(--blue-950);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 1px solid var(--blue-900);
  transition: transform .3s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-cta-2 {
    width: auto;
  }
}

.btn-cta-2:hover {
  transform: translateY(-4px);
}

.footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 158, 11, .5), transparent);
}

.footer-glow-1 {
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(245, 158, 11, .05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.footer-glow-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(59, 130, 246, .05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-box {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600));
  border-radius: .75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.05em;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.025em;
  color: #fff;
}

.footer-desc {
  margin-bottom: 1rem;
  line-height: 1.625;
  padding-right: 1rem;
}

.footer-note {
  display: inline-block;
  padding: .5rem 1rem;
  background: rgba(30, 58, 138, .3);
  border: 1px solid rgba(30, 64, 175, .5);
  border-radius: .5rem;
  margin-bottom: 1.5rem;
}

.note-text {
  color: var(--amber-500);
  font-weight: 600;
  font-size: .875rem;
}

.social-flex {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.social-link:hover {
  background: var(--amber-500);
  color: #fff;
  border-color: var(--amber-500);
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: .875rem;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-title-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--amber-500);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.f-icon-box {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  margin-top: .125rem;
}

.f-item:hover .f-icon-box {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: #fff;
}

.f-icon {
  width: 1rem;
  height: 1rem;
  color: var(--amber-500);
  transition: color .3s;
}

.f-item:hover .f-icon {
  color: #fff;
}

.f-text {
  font-size: .875rem;
  line-height: 1.625;
  transition: color .3s;
}

.f-item:hover .f-text {
  color: var(--slate-300);
}

.f-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem;
  margin-left: -.5rem;
  border-radius: .5rem;
  transition: background .3s;
}

.f-link:hover {
  background: var(--slate-900);
}

.f-link-icon-box {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}

.f-link:hover .f-link-icon-box {
  background: var(--amber-500);
}

.f-link-val {
  font-weight: 700;
  color: var(--slate-200);
  transition: color .3s;
}

.f-link:hover .f-link-val {
  color: var(--amber-500);
}

.f-link-val-mail {
  font-weight: 500;
  font-size: .875rem;
  transition: color .3s;
}

.f-link:hover .f-link-val-mail {
  color: var(--amber-500);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 41, 59, .6);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright span {
  color: var(--slate-300);
  font-weight: 500;
  cursor: pointer;
  transition: color .3s;
}

.copyright span:hover {
  color: var(--amber-500);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.f-bottom-link {
  transition: color .3s;
}

.f-bottom-link:hover {
  color: var(--amber-500);
}

.dot-sep {
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background: var(--slate-700);
}

@media (max-width: 600px) {
  .footer {
    padding-bottom: 100px !important;
  }
}