/* ===================== Root ===================== */
:root {
  --orange: #f5a623;
  --orange-dark: #d4891a;
  --black: #080b12;
  --white: #ffffff;
  --gray: #a0a8b8;
  --card-bg: #0e1220;
  --body-bg: #f6f7fb;
  --text-dark: #1a1a1a;
  --shadow: 0 24px 70px rgba(6, 10, 18, 0.22);
  --max-width: 1200px;
  --border-radius: 22px;
}

/* ===================== Base ===================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 18px;
  z-index: 1200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245, 166, 35, 0.32);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 24px 0;
  pointer-events: none;
}

.site-nav {
  pointer-events: auto;
  width: min(var(--max-width), calc(100% - 0px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.14);
  backdrop-filter: blur(18px);
  color: var(--white);
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-nav--solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border-color: rgba(15, 18, 28, 0.08);
  box-shadow: 0 18px 45px rgba(5, 8, 18, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Logo image (replaces previous NT mark + text) */
.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .logo-img {
    height: 48px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.98rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* ===================== Hero ===================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-carousel__track {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 500%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 3% 80px 3%;
  overflow: hidden;
}

.hero-slide__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--light {
  color: rgba(26, 26, 26, 0.7);
}

.hero-slide h2,
.about-content h3,
.section-heading h2 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-slide h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-slide__subtitle,
.about-content__typewriter,
.about-content__body {
  margin: 0;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.75;
  max-width: 90%;
}

.hero-slide__subtitle {
  color: var(--orange);
}

.about-content__typewriter,
.about-content__body {
  color: rgba(26, 26, 26, 0.72);
  font-size: 1.1rem;
  max-width: 60ch;
}

.typewriter-cursor::after {
  content: '|';
  margin-left: 4px;
  color: var(--orange);
  animation: cursor-blink 1s steps(2) infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-slide__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.slide-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  overflow: hidden;
  padding: 20px 0 20px 20px;
}

.slide-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-carousel__controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 166, 35, 0.08);
  transform: scale(1.08);
}

.hero-arrow:active {
  transform: scale(0.96);
}

.hero-carousel__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel__dots button.is-active {
  width: 24px;
  border-radius: 3px;
  background: var(--orange);
}

/* ===================== Services Section ===================== */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-container {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(245, 166, 35, 0.12),
              0 8px 20px rgba(15, 23, 42, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), #3b82f6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::before {
  opacity: 0.15;
}

.service-icon svg {
  position: relative;
  z-index: 1;
  stroke: var(--orange);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
  stroke: #3b82f6;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.service-link:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .services-section {
    padding: 80px 24px;
  }

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

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .service-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* ===================== Gallery Section ===================== */
.gallery-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.gallery-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.gallery-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.gallery-carousel {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 80px;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 32px;
  animation: scrollGallery 40s linear infinite;
  width: fit-content;
}

.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-card {
  flex: 0 0 400px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 24px 60px rgba(245, 166, 35, 0.2),
              0 12px 30px rgba(15, 23, 42, 0.15);
  border-color: rgba(245, 166, 35, 0.3);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 32px;
  border: 1px solid rgba(245, 166, 35, 0.15);
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.gallery-cta-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.3;
}

.gallery-cta-text {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #475569;
  margin: 0 0 32px;
}

@media (max-width: 900px) {
  .gallery-section {
    padding: 80px 24px 100px;
  }

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

  .gallery-carousel {
    margin-bottom: 60px;
  }

  .gallery-card {
    flex: 0 0 320px;
    height: 240px;
  }

  .gallery-track {
    gap: 24px;
  }

  .gallery-cta {
    padding: 48px 32px;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 60px 16px 80px;
  }

  .gallery-header {
    margin-bottom: 48px;
  }

  .gallery-carousel {
    margin-bottom: 48px;
  }

  .gallery-card {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 20px;
  }

  .gallery-track {
    gap: 20px;
  }

  .gallery-cta {
    padding: 40px 24px;
    border-radius: 24px;
  }
}

/* ===================== Footer ===================== */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.5), transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
  max-width: 90%;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 14px;
}

.footer-list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  display: inline-block;
}

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

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--orange);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--orange);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .site-footer {
    padding: 60px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 28px 0;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 48px 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-brand .footer-logo {
    height: 60px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 24px 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal span {
    display: none;
  }
}

/* ===================== Career Guidance Page (Light Mode) ===================== */
/* Career Guidance Page Navbar - White from start */
.cg-page .site-nav {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  border-color: rgba(15, 18, 28, 0.08);
  box-shadow: 0 18px 45px rgba(5, 8, 18, 0.12);
}

.cg-page .nav-toggle span {
  background: var(--black);
}

/* SECTION 1: HERO */
.cg-hero {
  background: #f8f7f4;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 7% 80px 7%;
  box-sizing: border-box;
}

.cg-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cg-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.cg-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  z-index: 1;
}

.cg-right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cg-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.cg-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cg-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555555;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cg-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.35);
  position: relative;
  z-index: 1;
}

.cg-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.cg-trust {
  font-size: 0.82rem;
  color: #888888;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cg-powered-by {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  position: relative;
  z-index: 1;
}

.cg-powered-label {
  font-size: 0.75rem;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cg-partner-logo-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f4f3f0;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 6px 12px;
  transition: border-color 0.3s;
  text-decoration: none;
}

.cg-partner-logo-wrap:hover {
  border-color: var(--orange);
}

.cg-partner-icon {
  font-size: 1rem;
  line-height: 1;
}

.cg-partner-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.01em;
}

/* SECTION 2: SERVICES */
.cg-services {
  background: #f4f3f0;
  padding: 90px 7%;
}

.cg-services-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
}

.cg-services-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4891a;
  display: block;
  margin-bottom: 12px;
}

.cg-services-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cg-services-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 16px auto 0;
}

.cg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cg-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cg-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.cg-card:hover::before {
  transform: scaleY(1);
}

.cg-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.cg-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cg-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 16px;
  font-size: 2rem;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.cg-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.cg-card-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666666;
  margin: 0;
  flex-grow: 1;
}

.cg-card-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  align-self: flex-start;
}

.cg-card-cta:hover {
  color: var(--orange-dark);
  transform: translateX(4px);
}

.cg-card-link {
  display: inline-block;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.cg-card-link:hover {
  color: var(--orange-dark);
}

/* SECTION 3: BOTTOM CTA BANNER */
.cg-banner {
  background: linear-gradient(135deg, #f5a623 0%, #e8941a 50%, #d4891a 100%);
  padding: 90px 7%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cg-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cg-banner-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cg-stat-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  letter-spacing: 0.02em;
}

.cg-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.cg-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.cg-banner-btn {
  display: inline-block;
  background: #ffffff;
  color: #d4891a;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cg-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cg-hero {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px 5%;
    min-height: auto;
  }

  .cg-right::before {
    right: -40px;
    top: -30px;
    width: 200px;
    height: 200px;
  }

  .cg-services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .cg-services {
    padding: 70px 5%;
  }

  .cg-card {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .cg-banner-stats {
    flex-direction: column;
    gap: 8px;
  }

  .cg-services {
    padding: 60px 5%;
  }

  .cg-card {
    padding: 28px 24px;
  }

  .cg-card-num {
    font-size: 3.5rem;
    top: 16px;
    right: 16px;
  }
}

/* ===================== About ===================== */
.about-section {
  background: var(--white);
  color: var(--text-dark);
  padding: 96px 24px 110px;
}

.section-heading {
  width: min(var(--max-width), 100%);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.section-heading > div {
  flex-shrink: 0;
}

.section-heading__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.65), transparent);
}

.section-heading__eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--black);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-section__grid {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-visual__frame {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(8, 11, 18, 0.96), rgba(14, 18, 32, 0.9));
  box-shadow: 0 30px 70px rgba(6, 10, 18, 0.18);
}

.about-visual__frame::before,
.about-visual__frame::after {
  content: '';
  position: absolute;
  width: 84px;
  height: 84px;
  border: 4px solid var(--orange);
}

.about-visual__frame::before {
  top: -14px;
  left: -14px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 26px 0 0 0;
}

.about-visual__frame::after {
  right: -14px;
  bottom: -14px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 26px 0;
}

.about-visual__photo {
  min-height: 520px;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.05), rgba(8, 11, 18, 0.82)),
    radial-gradient(circle at 20% 16%, rgba(245, 166, 35, 0.4), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(65, 168, 255, 0.35), transparent 20%),
    linear-gradient(160deg, #dbe7f3 0%, #7d8fad 46%, #2a3040 100%);
  overflow: hidden;
  position: relative;
}

.about-visual__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.22;
}

.about-visual__photo span,
.about-visual__photo small {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.about-visual__photo span {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.about-visual__photo small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.about-content h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--black);
  max-width: 14ch;
}

.about-content__typewriter {
  font-size: 1.02rem;
  font-weight: 500;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 34px;
}

.tag-list span {
  border-color: rgba(8, 11, 18, 0.08);
  background: rgba(245, 166, 35, 0.1);
  color: var(--black);
}

/* ===================== Reveal ===================== */
.about-content {
  transform: translateY(18px);
  transition: transform 0.8s ease;
}

.reveal-on-scroll.is-visible .about-content {
  transform: translateY(0);
}

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .site-header {
    padding-inline: 16px;
  }

  .site-nav {
    border-radius: 22px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--black);
    box-shadow: 0 20px 46px rgba(5, 8, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 90px 5% 80px 5%;
    align-items: start;
  }

  .hero-slide__visual {
    display: none;
  }

  .about-section__grid {
    grid-template-columns: 1fr;
  }

  .hero-carousel__controls {
    bottom: 30px;
    gap: 16px;
  }

  .section-heading {
    max-width: 100%;
  }

  .about-visual__photo {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 12px;
  }

  .site-nav {
    padding: 12px 14px;
  }

  .hero-slide {
    padding: 122px 5% 60px 5%;
    min-height: 100svh;
  }

  .hero-slide h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-slide__subtitle,
  .about-content__body,
  .about-content__typewriter {
    font-size: 1rem;
  }

  .hero-slide__visual {
    display: none;
  }

  .hero-slide__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-carousel__controls {
    bottom: 20px;
    gap: 12px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .about-section {
    padding: 76px 16px 84px;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading__line {
    display: none;
  }

  .about-visual__photo {
    min-height: 320px;
  }
}
