:root {
  --bg: #f7fbff;
  --panel: rgba(255, 255, 255, .78);
  --panel-solid: #ffffff;
  --text: #0a1b33;
  --muted: #5a6b86;
  --primary: #0b5ed7;
  --primary-2: #1e88ff;
  --accent: #00b3ff;
  --line: rgba(15, 40, 85, .10);
  --shadow: 0 18px 50px rgba(11, 94, 215, .14);
  --shadow-soft: 0 10px 30px rgba(10, 27, 51, .10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
  --blur: 16px;
  --grad: linear-gradient(135deg, #0b5ed7 0%, #1e88ff 38%, #00b3ff 100%);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Kanit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 900px at 10% 5%, rgba(11, 94, 215, .14), transparent 50%),
    radial-gradient(900px 700px at 88% 20%, rgba(0, 179, 255, .15), transparent 55%),
    radial-gradient(900px 800px at 70% 95%, rgba(30, 136, 255, .12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 75%, #ffffff 100%);
  overflow-x: hidden;
}

/* 3D-ish background layers */
.bg-3d {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.bg-3d .blob {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  filter: blur(35px);
  opacity: .55;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.bg-3d .b1 {
  left: -220px;
  top: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(11, 94, 215, .55), rgba(30, 136, 255, .12) 60%, transparent 72%);
}

.bg-3d .b2 {
  right: -260px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 179, 255, .50), rgba(30, 136, 255, .10) 60%, transparent 72%);
}

.bg-3d .b3 {
  left: 40%;
  bottom: -360px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at 40% 40%, rgba(30, 136, 255, .42), rgba(11, 94, 215, .08) 62%, transparent 74%);
}

.bg-3d .grid {
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(to right, rgba(10, 27, 51, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 27, 51, .045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(700px 520px at 50% 10%, rgba(0, 0, 0, .85), transparent 70%);
  opacity: .6;
  transform: translateZ(0);
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.section {
  padding: 72px 0
}

.section.tight {
  padding: 52px 0
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(11, 94, 215, .08);
  border: 1px solid rgba(11, 94, 215, .14);
  border-radius: 999px;
  color: #0747a6;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 13px;
}

.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--grad);
  box-shadow: 0 0 0 6px rgba(11, 94, 215, .10);
}

h1 {
  font-size: 44px;
  line-height: 1.08;
  margin: 14px 0 10px
}

h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 14px
}

h3 {
  font-size: 18px;
  margin: 0 0 8px
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75
}

.small {
  font-size: 14px
}

.muted {
  color: var(--muted)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--blur));
}

.badge svg {
  width: 16px;
  height: 16px
}

.btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn.primary {
  background: var(--grad);
  color: white;
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 18px 55px rgba(11, 94, 215, .25);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 215, .28)
}

.btn.primary:hover {
  box-shadow: 0 22px 70px rgba(11, 94, 215, .34)
}

.btn svg {
  width: 18px;
  height: 18px
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
}

.card.padded {
  padding: 20px
}

.grid2 {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px
}

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

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

@media (max-width: 980px) {
  h1 {
    font-size: 38px
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .grid3 {
    grid-template-columns: 1fr
  }

  .grid4 {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 34px
  }

  .grid4 {
    grid-template-columns: 1fr
  }
}

/* =============================================
   HEADER – Premium Glassmorphic
   ============================================= */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(10, 27, 51, .06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.site-header.scrolled {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 32px rgba(11, 94, 215, .08);
  border-bottom-color: rgba(11, 94, 215, .06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.logo {
  height: 52px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand:hover .logo {
  transform: scale(1.06);
}

/* Footer brand logo */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.footer-brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity .3s ease;
}

.footer-brand-logo:hover img {
  opacity: 1;
}

.footer-brand-logo+p.small {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.4;
}

nav.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.menu a {
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  transition: all .25s ease;
  position: relative;
}

nav.menu a:hover {
  background: rgba(11, 94, 215, .06);
  color: var(--primary);
}

nav.menu a.active {
  background: rgba(11, 94, 215, .08);
  color: var(--primary);
  font-weight: 800;
}

nav.menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn.primary {
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 14px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(11, 94, 215, .10);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 4px 16px rgba(10, 27, 51, .06);
  cursor: pointer;
  transition: all .25s ease;
}

.hamburger:hover {
  background: rgba(11, 94, 215, .06);
  border-color: rgba(11, 94, 215, .18);
}

.hamburger svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  nav.menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn.primary {
    display: none;
  }
}

/* =============================================
   MOBILE DRAWER – Premium
   ============================================= */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 35, .50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  z-index: 80;
}

.mobile-drawer.open {
  display: block;
}

.mobile-panel {
  position: absolute;
  right: 14px;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(15, 40, 85, .06);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 24px 64px rgba(10, 27, 51, .15);
  backdrop-filter: blur(24px);
}

.mobile-panel .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 40, 85, .06);
  margin-bottom: 8px;
}

.mobile-panel .links {
  display: grid;
  gap: 4px;
  margin-top: 6px;
}

.mobile-panel .links a {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: rgba(11, 94, 215, .03);
  border: 1px solid transparent;
  color: var(--text);
  transition: all .25s ease;
}

.mobile-panel .links a:hover {
  background: rgba(11, 94, 215, .08);
  border-color: rgba(11, 94, 215, .10);
  color: var(--primary);
}

.closebtn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15, 40, 85, .08);
  background: rgba(11, 94, 215, .04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.closebtn:hover {
  background: rgba(11, 94, 215, .10);
}

.closebtn svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   MODERN HERO BANNER (iOS 26 Style)
   ============================================= */
.banner-section {
  padding: 16px;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: stretch;
}

.banner-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(11, 94, 215, 0.15);
  background: var(--primary);
  margin: 0 auto;
  max-width: var(--max);
  width: 100%;
}

@media (max-width: 1160px) {
  .banner-wrapper {
    max-width: 100%;
  }
}

/* Background Image */
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: bannerZoom 30s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.1);
}

@keyframes bannerZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.18);
  }
}

/* Overlay Gradient - Deep Blue Modern */
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg,
      rgba(5, 20, 50, 0.95) 0%,
      rgba(11, 80, 200, 0.82) 40%,
      rgba(0, 150, 255, 0.6) 100%);
  mix-blend-mode: multiply;
}

.banner-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating Particles */
.banner-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
  animation: floatParticle linear infinite;
}

.p1 {
  width: 8px;
  height: 8px;
  left: 15%;
  top: 25%;
  animation-duration: 10s;
}

.p2 {
  width: 5px;
  height: 5px;
  left: 65%;
  top: 75%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.p3 {
  width: 12px;
  height: 12px;
  left: 85%;
  top: 15%;
  animation-duration: 15s;
  animation-delay: 1s;
  background: rgba(0, 180, 255, 0.5);
}

.p4 {
  width: 6px;
  height: 6px;
  left: 35%;
  top: 85%;
  animation-duration: 11s;
  animation-delay: 3s;
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  25% {
    transform: translate(15px, -30px) scale(1.2);
    opacity: 0.8;
  }

  50% {
    transform: translate(-10px, -60px) scale(1);
    opacity: 0.5;
  }

  75% {
    transform: translate(20px, -90px) scale(1.3);
    opacity: 0.9;
  }

  100% {
    transform: translate(-5px, -120px) scale(0.8);
    opacity: 0;
  }
}

/* Content Layer */
.banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 48px;
}

.banner-breadcrumb {
  padding: 0 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.banner-breadcrumb a:hover {
  color: #fff;
}

/* Grid Layout */
.banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

/* Left column */
.banner-kicker {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.1s;
}

.banner-kicker .dot {
  background: #00b3ff !important;
  box-shadow: 0 0 0 4px rgba(0, 179, 255, 0.3) !important;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 179, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(0, 179, 255, 0);
  }
}

.banner-title {
  color: #fff;
  font-size: min(52px, 4vw);
  line-height: 1.15;
  margin: 20px 0 16px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.2s;
}

.banner-title .grad {
  background: linear-gradient(135deg, #fff 0%, #a0efff 50%, #80d0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-title .text-glow {
  text-shadow: 0 0 40px rgba(0, 180, 255, 0.4);
}

.banner-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 580px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.3s;
}

/* Buttons */
.banner-btns {
  margin-top: 28px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.4s;
}

.btn-glow {
  box-shadow: 0 16px 40px rgba(11, 94, 215, 0.4), 0 0 20px rgba(0, 179, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-glow:hover {
  box-shadow: 0 20px 50px rgba(11, 94, 215, 0.6), 0 0 30px rgba(0, 179, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px);
}

/* Pills */
.banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.5s;
}

.pill-banner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pill-banner:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Right column modern floating cards */
.banner-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-cards {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.modern-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px inset rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modern-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.modern-card.main-card {
  position: relative;
  z-index: 3;
  animation: fadeSlideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.4s;
}

.modern-card .badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b5ed7, #00b3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 179, 255, 0.3);
}

.modern-card .badge-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.modern-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modern-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.mini-stats {
  display: flex;
  gap: 20px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

.m-stat .num {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.m-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

/* Sub cards attached around the main card */
.modern-card.sub-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.modern-card.sub-card:hover {
  transform: translateY(-3px) scale(1.03);
  z-index: 10;
}

.sub-card.right-card {
  bottom: -20px;
  right: -30px;
  animation: fadePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.6s;
}

.sub-card.left-card {
  top: -20px;
  left: -40px;
  animation: fadePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.5s;
}

@keyframes fadePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

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

.sub-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sub-card .icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.sub-card .text {
  display: flex;
  flex-direction: column;
}

.sub-card b {
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}

.sub-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.2s ease both;
  animation-delay: 1.2s;
}

.scroll-mouse {
  width: 26px;
  height: 44px;
  border-radius: 13px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  transition: border-color 0.3s;
}

.scroll-mouse:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 8px;
  margin-left: -2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* Entrance Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .sub-card.left-card {
    left: -20px;
    top: -10px;
  }

  .sub-card.right-card {
    right: -10px;
    bottom: -10px;
  }
}

@media (max-width: 980px) {
  .banner-section {
    padding: 12px;
    height: auto;
    min-height: auto;
  }

  .banner-wrapper {
    border-radius: 28px;
  }

  .banner-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .banner-content {
    padding: 48px 24px 80px;
  }

  .banner-title {
    font-size: 42px;
  }

  .modern-cards {
    margin: 0 auto;
    max-width: 100%;
  }

  .sub-card.left-card {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 12px;
    transform: none !important;
  }

  .sub-card.right-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 12px;
    transform: none !important;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 560px) {
  .banner-wrapper {
    border-radius: 20px;
  }

  .banner-content {
    padding: 32px 16px 60px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-btns {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .banner-btns .btn {
    width: 100%;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px
}

.stat {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(var(--blur));
}

.stat .num {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: .2px
}

.stat .label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 750
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 94, 215, .14);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(var(--blur));
  font-weight: 850;
  font-size: 13px;
  color: #0747a6;
}


.feature {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(11, 94, 215, .10);
  border: 1px solid rgba(11, 94, 215, .14);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.icon svg {
  width: 22px;
  height: 22px;
  color: #0b5ed7
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 10px
}

.li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .70);
}

.li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #0b5ed7
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr
  }
}

.breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: #0643a4;
  font-weight: 850
}

.tablelike {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
}

.tablelike .row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.tablelike .row:first-child {
  border-top: 0
}

.tablelike .k {
  font-weight: 900
}

.tablelike .v {
  color: var(--muted);
  line-height: 1.65
}

.gallery-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  font-weight: 900;
  cursor: pointer;
}

.chip.active {
  background: rgba(11, 94, 215, .10);
  border-color: rgba(11, 94, 215, .22);
  color: #0643a4;
}

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

@media (max-width: 980px) {
  .gallery {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 560px) {
  .gallery {
    grid-template-columns: 1fr
  }
}

.gitem {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--shadow-soft);
}

.gitem .img {
  height: 190px;
  background:
    radial-gradient(220px 180px at 30% 30%, rgba(11, 94, 215, .35), transparent 60%),
    radial-gradient(260px 200px at 80% 35%, rgba(0, 179, 255, .30), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(245, 250, 255, .9));
  transform: scale(1.02);
}

.gitem .meta {
  padding: 14px
}

.gitem .tag {
  font-size: 12px;
  font-weight: 900;
  color: #0643a4
}

.gitem .title {
  font-size: 15px;
  font-weight: 950;
  margin-top: 4px
}

.gitem button {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(11, 94, 215, .92);
  color: #fff;
  box-shadow: 0 16px 45px rgba(11, 94, 215, .28);
  cursor: pointer;
}

.gitem button:hover {
  filter: brightness(1.03)
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(10, 27, 51, .75);
  backdrop-filter: blur(10px);
  z-index: 90;
  padding: 18px;
}

.lightbox.open {
  display: grid;
  place-items: center
}

.lightbox .box {
  width: min(980px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .28);
}

.lightbox .box .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.lightbox .box .top .ttl {
  font-weight: 950
}

.lightbox .box .top .x {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.lightbox .preview {
  height: 360px;
  background:
    radial-gradient(320px 240px at 25% 35%, rgba(11, 94, 215, .40), transparent 60%),
    radial-gradient(340px 280px at 80% 35%, rgba(0, 179, 255, .34), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(245, 250, 255, .9));
}

.lightbox .desc {
  padding: 14px;
  color: var(--muted);
  line-height: 1.7
}

form {
  display: grid;
  gap: 12px
}

.field {
  display: grid;
  gap: 8px
}

label {
  font-weight: 900;
  font-size: 13px
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  font: inherit;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(11, 94, 215, .35);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, .10)
}

.formnote {
  font-size: 13px;
  color: var(--muted)
}

.toast {
  display: none;
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 94, 215, .22);
  background: rgba(11, 94, 215, .08);
  color: #0643a4;
  font-weight: 900;
}

.toast.show {
  display: block
}

/* =============================================
   FOOTER – Premium Aurora
   ============================================= */
footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 32px;
  background: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(10, 27, 51, .06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--text);
}

footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(11, 94, 215, .06);
  top: -40%;
  right: -10%;
  filter: blur(80px);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 32px;
}

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

.footer-title {
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 14px;
  color: var(--text);
}

.footer-title.has-logo {
  display: none;
}

footer .small {
  color: var(--muted);
  line-height: 1.6;
}

footer .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

footer .pill {
  padding: 5px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(11, 94, 215, .06);
  border: 1px solid rgba(11, 94, 215, .12);
  color: var(--primary);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  content: '→';
  font-size: 12px;
  color: var(--primary);
}

.copyright {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 27, 51, .08);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer .btns .btn {
  color: var(--text);
  background: rgba(11, 94, 215, .06);
  border: 1px solid rgba(11, 94, 215, .14);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 14px;
}

footer .btns .btn:hover {
  background: rgba(11, 94, 215, .10);
  border-color: rgba(11, 94, 215, .28);
  transform: translateY(-2px);
  color: var(--primary);
}

footer .btns .btn svg {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}