*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
 
  --sky: #48cae4;
  --cyan: #0096c7;
  --blue: #0077b6;
  --navy: #023e8a;
  --deep: #03045e;

  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dce3ed;
  --gray-300: #bcc8d9;
  --gray-400: #8d9bb5;
  --gray-500: #6b7a94;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --gray-900: #0f1419;


  --shadow-xs: 0 1px 2px rgba(3, 4, 94, 0.04);
  --shadow-sm: 0 2px 6px rgba(3, 4, 94, 0.06);
  --shadow-md: 0 4px 16px rgba(3, 4, 94, 0.08);
  --shadow-lg: 0 8px 30px rgba(3, 4, 94, 0.10);
  --shadow-xl: 0 16px 48px rgba(3, 4, 94, 0.12);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.25s;
  --duration-slow: 0.4s;
}

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--deep);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Accent Text ===== */
.text-accent {
  color: var(--cyan);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  transition: transform var(--duration) var(--ease);
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-links li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.navbar-links li a:hover {
  color: var(--blue);
  background: var(--gray-50);
}

.navbar-links li a.active-link {
  color: var(--blue);
  font-weight: 600;
}

.navbar-links li a.active-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Sign In button in nav */
.navbar-signin-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 24px !important;
  background: var(--deep) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.01em;
  transition: all var(--duration) var(--ease) !important;
  box-shadow: 0 2px 8px rgba(3, 4, 94, 0.2);
}

.navbar-signin-btn svg {
  transition: transform var(--duration) var(--ease);
}

.navbar-signin-btn:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(2, 62, 138, 0.3) !important;
}

.navbar-signin-btn:hover svg {
  transform: translateX(2px);
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}

.nav-toggle:hover {
  background: var(--gray-50);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links li a {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px;
    border-radius: var(--radius-md);
  }

  .navbar-links li a.active-link::after {
    display: none;
  }

  .navbar-signin-btn {
    width: 100% !important;
    justify-content: center !important;
    border-radius: var(--radius-md) !important;
    padding: 14px 24px !important;
    margin-top: 8px;
  }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--deep);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Background geometric shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--navy);
}

.hero-shape.shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  opacity: 0.35;
}

.hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  opacity: 0.2;
}

.hero-shape.shape-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 45%;
  opacity: 0.12;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 24px;
  background: rgba(72, 202, 228, 0.1);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(72, 202, 228, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--sky);
  opacity: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--sky);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image area */
.hero-image-col {
  flex: 1;
  position: relative;
  min-width: 320px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(72, 202, 228, 0.12);
  border-radius: var(--radius-2xl);
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.04);
}


.hero-badge {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: all 0.5s var(--ease-spring);
}

.hero-badge.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge .badge-icon svg {
  width: 20px;
  height: 20px;
}

.hero-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge .badge-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
}

.hero-badge .badge-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}

.badge-students {
  top: 6%;
  left: -28px;
  animation: float-subtle 4s ease-in-out infinite;
  animation-play-state: paused;
}

.badge-students.visible {
  animation-play-state: running;
}

.badge-students .badge-icon {
  background: var(--sky);
  color: var(--white);
}

.badge-students .badge-icon svg {
  stroke: var(--white);
}

.badge-courses {
  bottom: 16%;
  left: -36px;
  animation: float-subtle 3.5s ease-in-out infinite 0.5s;
  animation-play-state: paused;
}

.badge-courses.visible {
  animation-play-state: running;
}

.badge-courses .badge-icon {
  background: var(--blue);
  color: var(--white);
}

.badge-courses .badge-icon svg {
  stroke: var(--white);
}

.badge-cert {
  bottom: 42%;
  right: -24px;
  animation: float-subtle 4.5s ease-in-out infinite 1s;
  animation-play-state: paused;
}

.badge-cert.visible {
  animation-play-state: running;
}

.badge-cert .badge-icon {
  background: var(--navy);
  color: var(--white);
}

.badge-cert .badge-icon svg {
  stroke: var(--white);
}

@media (max-width: 960px) {
  .hero {
    padding: 60px 0 100px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    display: none;
  }

  .hero-image {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 0 80px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sky);
  color: var(--deep);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 10px rgba(72, 202, 228, 0.3);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  border-radius: inherit;
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 150, 199, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg,
.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn-outline-light:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: rgba(72, 202, 228, 0.06);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
}

.btn-secondary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 62, 138, 0.3);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 14px;
  background: rgba(0, 150, 199, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 150, 199, 0.1);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}



.features-section {
  padding: 100px 0 80px;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  margin-bottom: 24px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.feature-icon.icon-courses {
  background: var(--navy);
}

.feature-icon.icon-sessions {
  background: var(--navy);
}

.feature-icon.icon-tracking {
  background: var(--navy);
}


.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}




.feature-card:hover .feature-link svg {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-section {
    padding: 80px 0 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

.about-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-image-col {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: var(--sky);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.6s var(--ease);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.02);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -16px;
  background: var(--deep);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
}

.exp-text {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-300);
}

.about-text-col {
  flex: 1;
  min-width: 280px;
}

.about-text-col .section-label {
  text-align: left;
}

.about-text-col h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-text-col p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: transform var(--duration) var(--ease);
}

.about-highlights li:hover {
  transform: translateX(4px);
}

.about-highlights li .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration) var(--ease);
}

.about-highlights li:hover .check-icon {
  background: var(--blue);
}

.about-highlights li .check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .about-text-col .section-label {
    text-align: center;
  }

  .about-highlights {
    align-items: center;
  }

  .about-image {
    height: 300px;
  }

  .about-text-col h2 {
    font-size: 1.75rem;
  }

  .about-experience-badge {
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
  }
}








.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  font-weight: 500;
  transition: all var(--duration) var(--ease);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--sky);
  transform: translateX(4px);
}

.footer-partner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-partner img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-partner span {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--sky);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-tagline {
    margin: 0 auto;
  }

  .footer-links {
    align-items: center;
  }

  .footer-partner {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 16px;
  }
}


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--duration) var(--ease);
  border: 2px solid rgba(72, 202, 228, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(3, 4, 94, 0.25);
}

.back-to-top svg {
  stroke: var(--sky);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float-subtle {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation utility classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}

.anim-delay-5 {
  transition-delay: 0.5s;
}


/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.login-wrapper {
  display: flex;
  width: 100%;
  max-width: 960px;
  min-height: 560px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

/* Left panel — visual / branding */
.login-visual {
  flex: 1;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  min-width: 380px;
}

.login-visual::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.4;
  pointer-events: none;
}

.login-visual::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.25;
  pointer-events: none;
}

.login-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.login-visual-content img {
  height: 60px;
  margin: 0 auto 24px;
}

.login-visual-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.login-visual-content p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.login-visual-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.login-visual-stat {
  text-align: center;
}

.login-visual-stat .stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sky);
}

.login-visual-stat .stat-lbl {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

.login-form-panel {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 380px;
}

.login-form-header {
  margin-bottom: 32px;
}

.login-form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 6px;
}

.login-form-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}


.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--duration) var(--ease);
}

.form-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.form-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-600);
  cursor: pointer;
}

.form-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  border-radius: 4px;
}

.form-forgot {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 600;
  transition: color var(--duration) var(--ease);
}

.form-forgot:hover {
  color: var(--navy);
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.2);
  letter-spacing: 0.01em;
}

.btn-login:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 62, 138, 0.3);
}

.btn-login:active {
  transform: translateY(0);
}

.login-footer-text {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 24px;
}

.login-footer-text a {
  color: var(--blue);
  font-weight: 600;
}

.login-footer-text a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .login-wrapper {
    flex-direction: column;
    max-width: 480px;
  }

  .login-visual {
    min-width: unset;
    padding: 36px 32px;
    min-height: auto;
  }

  .login-form-panel {
    min-width: unset;
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  .login-visual-stats {
    gap: 20px;
  }

  .login-form-panel {
    padding: 28px 20px;
  }
}


.form-label-content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.form-label-icon {
  color: var(--gray-400);
  flex-shrink: 0;
}

.forgot-status {
  padding: 0;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s var(--ease);
}

.forgot-status--visible {
  padding: 12px 16px;
  margin-bottom: 20px;
  max-height: 100px;
  opacity: 1;
}

.forgot-status--error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.forgot-status--info {
  background: rgba(0, 150, 199, 0.06);
  color: var(--blue);
  border: 1px solid rgba(0, 150, 199, 0.15);
}

/* Button content layout */
.btn-login-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

/* Spinner animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.forgot-success {
  text-align: center;
  animation: fade-in-up 0.5s var(--ease) forwards;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 150, 199, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: success-pop 0.5s var(--ease-spring) forwards;
}

@keyframes success-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon-wrapper svg {
  stroke: var(--cyan);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 10px;
}

.success-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.success-email-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.success-email-preview svg {
  stroke: var(--blue);
  flex-shrink: 0;
}

.success-tips {
  text-align: left;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 4px;
}

.success-tips p {
  font-size: 0.82rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.success-tips ul {
  list-style: none;
  padding: 0;
}

.success-tips ul li {
  font-size: 0.8rem;
  color: var(--gray-500);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.success-tips ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* Back to login link */
.forgot-footer-links {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--duration) var(--ease);
}

.back-to-login svg {
  transition: transform var(--duration) var(--ease);
}

.back-to-login:hover {
  color: var(--navy);
}

.back-to-login:hover svg {
  transform: translateX(-4px);
}



.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;
}

/* Selection color */
::selection {
  background: var(--sky);
  color: var(--deep);
}


:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .hero-badge {
    opacity: 1;
    transform: none;
  }
}