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

:root {
  --primary: #0088a8;
  --primary-dark: #006880;
  --primary-light: #00b4d8;
  --primary-glow: rgba(0, 136, 168, 0.35);
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #556070;
  --card-bg: #f4fafc;
  --border: rgba(0, 136, 168, 0.15);
  --nav-height: 68px;
  --shadow-sm: 0 4px 16px rgba(0, 136, 168, 0.12);
  --shadow-md: 0 8px 32px rgba(0, 136, 168, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 136, 168, 0.22);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

.top-links {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0 60px;
  height: var(--nav-height);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.top-links.scrolled {
  box-shadow: 0 4px 24px rgba(0, 136, 168, 0.13);
  background: rgba(255, 255, 255, 0.98);
}

.top-links ul li a.active {
  background: var(--primary);
  color: #fff;
}

.logo-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.top-logo {
  height: 40px;
  transition: transform 0.4s var(--ease-bounce);
  filter: drop-shadow(0 2px 6px rgba(0, 136, 168, 0.18));
}

.logo-brand-wrapper:hover .top-logo {
  transform: rotate(-8deg) scale(1.1);
}

.brand-name-wrapper .career {
  color: #111;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.brand-name-wrapper .guide {
  color: var(--primary);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
}

.top-links ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
  margin-right: 50px;
}

.top-links ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.top-links ul li a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: transform 0.25s ease;
}

.top-links ul li a:hover {
  color: var(--primary);
  background: rgba(0, 136, 168, 0.07);
}

.top-links ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.top-links ul li a.active::after {
  display: none;
}

.top-links ul li a.nav-btn {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.top-links ul li a.nav-btn:hover {
  background: var(--primary);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(0, 136, 168, 0.08);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 30px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 136, 168, 0.1);
  flex-direction: column;
  gap: 8px;
  transform: translateY(-16px);
  opacity: 0;
  transition: all 0.3s var(--ease-smooth);
}

.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--primary);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 40vh;
  min-height: 430px;
  padding: calc(var(--nav-height) + 20px) 80px 30px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 80, 104, 0.85) 0%,
      rgba(0, 136, 168, 0.6) 60%,
      transparent 100%
    ),
    url("../images/BG.png") no-repeat center 27%;
  background-size: cover;
  overflow: hidden;
  z-index: 10;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatParticle linear infinite;
}

.hero-particles span:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 10%;
  animation-duration: 14s;
}

.hero-particles span:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 25%;
  animation-duration: 18s;
  animation-delay: -5s;
  background: rgba(255, 255, 255, 0.05);
}

.hero-particles span:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 5%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.hero-particles span:nth-child(4) {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 20%;
  animation-duration: 12s;
  animation-delay: -7s;
}

.hero-particles span:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 55%;
  animation-duration: 9s;
  animation-delay: -1s;
}

.hero-particles span:nth-child(6) {
  width: 160px;
  height: 160px;
  bottom: -40px;
  right: 40%;
  animation-duration: 16s;
  animation-delay: -9s;
  background: rgba(0, 180, 216, 0.08);
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-60px) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  color: var(--white);
  animation: heroEnter 0.9s var(--ease-bounce) both;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
  animation: heroEnter 0.7s var(--ease-bounce) both 0.1s;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dfff4;
  animation: badgePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(125, 255, 244, 0.5);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.8);
    box-shadow: 0 0 0 6px rgba(125, 255, 244, 0);
  }
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.2vw, 45px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
  animation: heroEnter 0.7s var(--ease-bounce) both 0.2s;
}

.hero-content h1 em {
  font-style: italic;
  color: #7dfff4;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 22px;
  animation: heroEnter 0.7s var(--ease-bounce) both 0.35s;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroEnter 0.7s var(--ease-bounce) both 0.5s;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
}

.primary-btn {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px) scale(1.03);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  animation: heroEnter 0.7s var(--ease-bounce) both 0.65s;
}

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

.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeIn 1s ease both 1.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps {
  padding: 100px 10% 60px;
  background-color: var(--card-bg);
  color: var(--primary);
  text-align: center;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary),
    var(--primary-dark)
  );
}

.steps-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.steps h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.steps h2 .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.steps-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  background: var(--white);
  padding: 36px 24px 28px;
  border-radius: 20px;
  flex: 0 0 210px;
  width: 210px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.35s var(--ease-bounce),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.step-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.step:hover .step-icon-img {
  filter: brightness(0) invert(1);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.step-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(0, 136, 168, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  transition:
    background 0.3s ease,
    transform 0.35s var(--ease-bounce);
}

.step-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 136, 168, 0.3);
}

.step:hover .step-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.step-clickable {
  cursor: pointer;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
}

.why-section {
  padding: 60px 10% 100px;
  background: var(--white);
}

.why-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.why-text {
  flex: 1;
}

.why-text .section-eyebrow {
  margin-bottom: 10px;
}

.why-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.why-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.why-text > p strong {
  color: var(--primary);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-list li i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  padding: 12px 26px;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: all 0.3s var(--ease-bounce);
}

.why-cta i {
  transition: transform 0.3s ease;
}

.why-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px var(--primary-glow);
}

.why-cta:hover i {
  transform: translateX(4px);
}

.why-visual {
  flex-shrink: 0;
  position: relative;
  width: 320px;
  height: 320px;
}

.why-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease-bounce),
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card i {
  font-size: 22px;
  color: var(--primary);
  width: 44px;
  height: 44px;
  background: rgba(0, 136, 168, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.why-card:hover i {
  background: var(--primary);
  color: #fff;
}

.why-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.why-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.why-card--top {
  top: 0;
  left: 0;
  animation: cardFloat 4s ease-in-out infinite;
}

.why-card--mid {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cardFloatMid 4s ease-in-out infinite 1.3s;
}

.why-card--bot {
  bottom: 0;
  right: 0;
  animation: cardFloat 4s ease-in-out infinite 2.6s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloatMid {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.cta-banner {
  padding: 80px 10%;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--primary-light) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-btn {
  font-size: 16px !important;
  padding: 15px 34px !important;
}

.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.footer-brand .career {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
}

.footer-brand .guide {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.4px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 240px;
  margin-top: 10px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-col a {
  text-decoration: none;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 10%;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-top {
  position: fixed;
  bottom: 70px;
  left : 28px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: all 0.35s ease;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.08);
}

@media (max-width: 960px) {
  .top-links {
    padding: 0 24px;
  }

  .top-links ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .why-container {
    flex-direction: column;
    gap: 50px;
  }

  .why-visual {
    width: 100%;
    height: 280px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 30px;
  }

  .steps {
    padding: 70px 6%;
  }

  .why-section {
    padding: 70px 6%;
  }
  .scroll-indicator {
    display: none;
  }

  .cta-banner {
    padding: 60px 6%;
  }
}

@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .step {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .scroll-indicator {
    display: none;
  }

  .hero-stats {
    gap: 14px;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .why-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .steps {
    padding: 50px 5%;
  }

  .steps-header {
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-top: 14px;
  }

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

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

  .primary-btn,
  .secondary-btn {
    padding: 11px 20px;
    font-size: 13.5px;
    width: 85%;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-menu {
  position: relative;
}

.avatar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.avatar-btn:hover {
  background: rgba(0, 136, 168, 0.06);
  border-color: rgba(0, 136, 168, 0.4);
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088a8, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
}

.avatar-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.avatar-chevron {
  font-size: 11px;
  color: #888;
  transition: transform 0.25s ease;
}

.avatar-chevron.open {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #ffffff;
  border: 1px solid rgba(0, 136, 168, 0.15);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(0, 136, 168, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 500;
}

.dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 136, 168, 0.1);
  background: rgba(0, 136, 168, 0.03);
}

.dropdown-avatar-lg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088a8, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
}

.dropdown-fullname {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2px;
}

.dropdown-email {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.dropdown-body {
  padding: 6px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: "Roboto", sans-serif;
}

.dropdown-item i {
  font-size: 15px;
  color: #888;
  width: 18px;
  text-align: center;
  transition: color 0.15s ease;
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: rgba(0, 136, 168, 0.07);
  color: #0088a8;
}

.dropdown-item:hover i {
  color: #0088a8;
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 136, 168, 0.1);
  margin: 5px 0;
}

.dropdown-item--danger {
  color: #c0392b;
}

.dropdown-item--danger i {
  color: #c0392b;
}

.dropdown-item--danger:hover {
  background: rgba(192, 57, 43, 0.07);
  color: #c0392b;
}

.cg-about-section {
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.cg-about-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.cg-about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
}

.cg-about-card h2 {
  margin-bottom: 1rem;
}

.cg-about-card .highlight {
  color: var(--primary);
}

.cg-about-card p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.riasec-section {
  padding: 1rem 2rem 3rem;
  text-align: center;
}

.riasec-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.riasec-subtitle {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--text-muted, #6b7280);
}

.riasec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.riasec-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.riasec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.riasec-letter {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0088a8;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.riasec-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.riasec-card p {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .riasec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .step {
    max-width: 280px;
    min-height: auto;
    padding: 28px 20px 22px;
  }

  .step-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .step h3 {
    font-size: 16.5px;
  }

  .step p {
    font-size: 13.5px;
  }

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

  .scroll-indicator {
    display: none;
  }
}

.cg-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 32, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: cgFadeIn 0.2s var(--ease-smooth);
}

.cg-modal-overlay.open {
  display: flex;
}

.cg-modal-box {
  background: var(--white);
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  padding: 32px 28px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: cgSlideUp 0.25s var(--ease-smooth);
}

.cg-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdecea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: #d9534f;
}

.cg-modal-title {
  margin: 0 0 8px;
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.cg-modal-message {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cg-modal-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease-smooth);
}

.cg-modal-btn:hover {
  background: var(--primary-dark);
}

@keyframes cgFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cgSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.primary-btn.is-loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}