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

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --teal: #065c5c;
  --teal-dark: #0f4f4f;
  --teal-deep: #062a2a;
  --teal-mid: #2d5a5a;
  --teal-muted: #5a8888;
  --teal-pale: #d4eeec;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--teal-deep);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAVBAR Desktop
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

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

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

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 25px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

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

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0ea5a4;
  color: #fff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

.hamburger {
  display: none;
}

/* ═══════════════════════════════════════════
   NAVBAR Mobile Responsive
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

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

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

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

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

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

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, #dff4f3 0%, #eef9f8 35%, #d5eeec 70%, #e4f7f6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 12% 8%, rgba(14, 165, 164, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 88% 92%, rgba(14, 165, 164, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   COMPASS GRAPHIC Desktop Right Side
═══════════════════════════════════════════ */
.hero-graphic {
  position: absolute;
  right: 2%;
  top: 16%;
  width: clamp(320px, 40vw, 560px);
  height: clamp(320px, 40vw, 560px);
  z-index: 2;
  pointer-events: none;
  /* fadeIn pehle, phir float */
  animation:
    compassAppear 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both,
    compassFloat 5s ease-in-out 1.4s infinite;
}

@keyframes compassAppear {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

@keyframes compassFloat {
  0% {
    transform: translateY(0px);
  }

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

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

.hero-graphic-bubble {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
      rgba(255, 255, 255, 0.60) 0%,
      rgba(180, 232, 230, 0.28) 45%,
      rgba(14, 165, 164, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 2px 32px rgba(255, 255, 255, 0.42),
    0 8px 60px rgba(14, 165, 164, 0.14),
    0 0 0 1px rgba(14, 165, 164, 0.07);
}

.hero-graphic-bubble-2 {
  position: absolute;
  width: 46%;
  height: 46%;
  bottom: 2%;
  left: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(180, 232, 230, 0.22) 60%,
      rgba(14, 165, 164, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 2px 20px rgba(255, 255, 255, 0.35);
}

.hero-graphic-lines {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}

.hero-graphic-lines svg {
  width: 100%;
  height: 100%;
  stroke: rgba(14, 165, 164, 0.18);
  stroke-width: 1;
  fill: none;
}

.hero-graphic-inner {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
}

.hero-graphic-inner svg {
  width: 100%;
  height: 100%;
  stroke: rgba(14, 100, 100, 0.58);
  fill: none;
  stroke-width: 1.2;
  filter: drop-shadow(0 4px 16px rgba(14, 165, 164, 0.18));
}

.hero-graphic-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(14, 165, 164, 0.52);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════
   HERO CONTENT
═══════════════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  max-width: 560px;
  padding: 0 24px;
  margin-left: 5%;
  margin-right: auto;
  transform: translateY(-4%);
}

/* Pill Badge */
.hero-pill {
  display: inline-block;
  font-size: clamp(0.52rem, 1.1vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a7070;
  background: rgba(14, 165, 164, 0.12);
  border: 1px solid rgba(14, 165, 164, 0.30);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 26px;
  animation: pillPulse 3.5s ease-in-out infinite;
}

@keyframes pillPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 164, 0.22);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(14, 165, 164, 0);
  }
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1.10;
  margin-bottom: 22px;
  text-align: left;
  animation: fadeInDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-title-accent {
  display: block;
  text-align: left;
  color: #0ea5a4;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-top: 4px;
  white-space: nowrap;
}

.hero-title-accent .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: letterUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Description */
.hero-desc {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: #030202;
  line-height: 1.80;
  max-width: 480px;
  margin: 0 0 34px;
  text-align: left;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.30s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 24px rgba(14, 165, 164, 0.28);
  letter-spacing: 0.02em;
  outline: none;
  -webkit-appearance: none;
}

.hero-btn-primary:hover {
  background: #0c3d3d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(14, 165, 164, 0.36);
}

.hero-btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-btn-secondary {
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-deep);
  border: 1.5px solid rgba(14, 165, 164, 0.28);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  outline: none;
}

.hero-btn-secondary:hover {
  background: #fff;
  border-color: rgba(14, 165, 164, 0.50);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(14, 165, 164, 0.14);
}

/* ═══════════════════════════════════════════
   MOBILE IMAGE buttons ke baad
═══════════════════════════════════════════ */
.hero-mobile-img {
  display: none;
}

/* ═══════════════════════════════════════════
   BOTTOM SKYLINE
═══════════════════════════════════════════ */
.hero-bottom-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}

.hero-skyline-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  animation: fadeIn 1.2s ease 0.6s both;
}

.skyline-svg {
  width: 100%;
  height: auto;
  display: block;
}

.skyline-svg g {
  opacity: 0.45;
}

/* ═══════════════════════════════════════════
   HERO LOAD ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-pill {
  animation: fadeInDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ═══════════════════════════════════════════
   TABLET (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content {
    margin-left: 3%;
  }

  .hero-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .hero-title-accent {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .hero-graphic {
    width: clamp(220px, 32vw, 380px);
    height: clamp(220px, 32vw, 380px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    align-items: flex-start;
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 24px 22px 20px;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }


  .hero-title {
    order: 1;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    margin-bottom: 0;
  }

  .hero-title-accent {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    white-space: normal;
  }

  .hero-desc {
    order: 2;
    font-size: 0.90rem;
    max-width: 100%;
    line-height: 1.75;
    margin-bottom: 0;
  }

  .hero-mobile-img {
    order: 3;
    /* display: block; */
    margin-top: 6px;
    margin-bottom: 6px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 12px 40px rgba(14, 165, 164, 0.18),
      0 0 0 2px rgba(14, 165, 164, 0.15);
    transition:
      transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.4s ease;
    cursor: pointer;
  }

  .hero-mobile-img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
      0 24px 60px rgba(14, 165, 164, 0.28),
      0 0 0 3px rgba(14, 165, 164, 0.30);
  }

  .hero-mobile-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .hero-mobile-img:hover img {
    transform: scale(1.05);
  }

  .hero-btns {
    order: 4;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 6px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 13px 10px;
    font-size: 0.80rem;
  }

  .hero-graphic {
    width: clamp(130px, 36vw, 180px);
    height: clamp(130px, 36vw, 180px);
    right: -4%;
    top: 52px;
    opacity: 0.50;
    animation:
      compassAppear 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both,
      compassFloatMobile 6s ease-in-out 1.4s infinite;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px 18px 60px;
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(1.05rem, 5vw, 1.4rem);
  }

  .hero-title-accent {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
    white-space: normal;
  }

  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.70;
  }

  .hero-graphic {
    width: 125px;
    height: 125px;
    right: -6%;
    top: 50px;
    opacity: 0.40;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 0.76rem;
    padding: 12px 8px;
  }

  .hero-mobile-img img {
    height: 195px;
  }
}

/* ═══════════════════════════════════════════
   HIW SECTION 14px gap from hero
═══════════════════════════════════════════ */
.hiw-section {
  width: 100%;
  max-width: 100%;
  padding: 14px 0 0;
}

.hiw-inner {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   TIMELINE Desktop
═══════════════════════════════════════════ */
.hiw-timeline {
  display: flex;
  flex-direction: column;
}

.hiw-stage {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  min-height: 40vh;
  padding: 60px 0;
  gap: 0 20px;
}

/* 14px gap between stages */
.hiw-stage+.hiw-stage {
  margin-top: 14px;
}

.hiw-timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 100%;
}

.hiw-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: rgba(14, 165, 164, 0.12);
  position: relative;
  overflow: hidden;
}

.hiw-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #0ea5a4, #5eead4);
  transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-line.line-active::after {
  height: 100%;
}

.hiw-line-end {
  background: rgba(14, 165, 164, 0.08);
}

.hiw-dot {
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
  background: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(14, 165, 164, 0.12), 0 4px 20px rgba(14, 165, 164, 0.32);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
  z-index: 1;
}

.hiw-dot svg {
  width: 44%;
  height: 44%;
}

.hiw-stage:hover .hiw-dot,
.hiw-dot.dot-active {
  transform: scale(1.18);
  box-shadow: 0 0 0 12px rgba(14, 165, 164, 0.10), 0 6px 28px rgba(14, 165, 164, 0.42);
}

.hiw-dot-final {
  background: linear-gradient(135deg, #0ea5a4, #1a9090);
}

/* ═══════════════════════════════════════════
   TIMELINE Tablet (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hiw-stage {
    grid-template-columns: 1fr 60px 1fr;
    padding: 50px 0;
  }

  .hiw-stage-content {
    padding: 3% 4%;
  }
}

/* ═══════════════════════════════════════════
   TIMELINE Mobile (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hiw-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0;
    gap: 0;
  }

  .hiw-stage+.hiw-stage {
    margin-top: 14px;
  }

  .hiw-timeline-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    order: 1;
  }

  .hiw-line {
    width: 2px;
    height: 36px;
    min-height: 36px;
    flex: none;
    background: rgba(14, 165, 164, 0.20);
  }

  .hiw-line-end {
    background: rgba(14, 165, 164, 0.10);
  }

  .hiw-dot {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .hiw-stage-content {
    order: 2;
    padding: 24px 20px;
    background: rgba(14, 165, 164, 0.04);
    border: 1px solid rgba(14, 165, 164, 0.14);
    border-radius: 18px;
    margin: 0 16px;
  }

  .hiw-stage-img {
    order: 3;
    padding: 12px 16px 0;
  }

  .hiw-stage-img img {
    height: clamp(160px, 48vw, 220px);
    border-radius: 14px;
  }

  .hiw-stage-right .hiw-stage-img {
    order: 3;
  }

  .hiw-stage-desc {
    max-width: 100%;
  }

  .hiw-two-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   STAGE CONTENT
═══════════════════════════════════════════ */
.hiw-stage-content {
  padding: 3% 6%;
}

.hiw-stage-label {
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14, 165, 164, 0.10);
  border: 1px solid rgba(14, 165, 164, 0.22);
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.hiw-stage-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hiw-stage-desc {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--teal-mid);
  line-height: 1.80;
  margin-bottom: 24px;
  max-width: 480px;
}

/* ═══════════════════════════════════════════
   STAGE IMAGE
═══════════════════════════════════════════ */
.hiw-stage-img {
  padding: 2% 3%;
}

.hiw-stage-img img {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  filter: grayscale(15%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s;
  display: block;
}

.hiw-stage:hover .hiw-stage-img img {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* ═══════════════════════════════════════════
   STAGE IMAGE Mobile (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hiw-stage-img img {
    height: clamp(140px, 50vw, 200px);
  }
}

/* ═══════════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════════ */
.hiw-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hiw-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.84rem, 1.4vw, 0.96rem);
  color: var(--teal-mid);
}

.hiw-checklist li svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   INFO CARD
═══════════════════════════════════════════ */
.hiw-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(14, 165, 164, 0.06);
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  transition: background 0.25s, border-color 0.25s;
}

.hiw-info-card:hover {
  background: rgba(14, 165, 164, 0.10);
  border-color: rgba(14, 165, 164, 0.30);
}

.hiw-info-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.hiw-info-title {
  display: block;
  font-size: clamp(0.80rem, 1.3vw, 0.90rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

.hiw-info-sub {
  display: block;
  font-size: clamp(0.76rem, 1.2vw, 0.84rem);
  color: var(--teal-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TAGS
═══════════════════════════════════════════ */
.hiw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hiw-tag {
  font-size: clamp(0.62rem, 1vw, 0.70rem);
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--teal-mid);
  background: rgba(14, 165, 164, 0.08);
  border: 1px solid rgba(14, 165, 164, 0.18);
  border-radius: 8px;
  padding: 7px 16px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.hiw-tag:hover {
  background: rgba(14, 165, 164, 0.16);
  border-color: rgba(14, 165, 164, 0.32);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   TWO MINI CARDS
═══════════════════════════════════════════ */
.hiw-two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hiw-mini-card {
  background: rgba(14, 165, 164, 0.06);
  border: 1px solid rgba(14, 165, 164, 0.16);
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hiw-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(14, 165, 164, 0.14);
}

.hiw-mini-title {
  display: block;
  font-size: clamp(0.80rem, 1.3vw, 0.90rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.hiw-mini-sub {
  display: block;
  font-size: clamp(0.74rem, 1.2vw, 0.82rem);
  color: var(--teal-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   FAQ 14px gap from timeline
═══════════════════════════════════════════ */
.hiw-faq-section {
  background: #e1edf6;
  border-radius: 28px;
  padding: 64px 60px;
  margin-top: 14px;
  text-align: center;
}

.hiw-faq-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.hiw-faq-desc {
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  color: var(--teal-muted);
  margin-bottom: 40px;
}

.hiw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.hiw-faq-item {
  background: #fff;
  border: 1.5px solid rgba(14, 165, 164, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hiw-faq-item.active {
  border-color: rgba(14, 165, 164, 0.38);
  box-shadow: 0 4px 24px rgba(14, 165, 164, 0.10);
}

.hiw-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--teal-deep);
  text-align: left;
  gap: 16px;
}

.faq-chev {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  flex-shrink: 0;
  transition: transform 0.35s;
}

.hiw-faq-item.active .faq-chev {
  transform: rotate(180deg);
}

.hiw-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.44s ease, padding 0.30s ease;
  padding: 0 28px;
}

.hiw-faq-item.active .hiw-faq-a {
  max-height: 220px;
  padding: 0 28px 24px;
}

.hiw-faq-a p {
  font-size: clamp(0.84rem, 1.4vw, 0.94rem);
  color: var(--teal-mid);
  line-height: 1.78;
}

/* FAQ Tablet */
@media (max-width: 900px) {
  .hiw-faq-section {
    padding: 48px 36px;
  }
}

/* FAQ Mobile */
@media (max-width: 768px) {
  .hiw-faq-section {
    padding: 40px 24px;
    margin-top: 14px;
  }
}

/* ═══════════════════════════════════════════
   CTA 14px gap from FAQ
═══════════════════════════════════════════ */
.hiw-cta {
  background: linear-gradient(135deg, #1a6e6e 0%, #0ea5a4 50%, #0d8f8e 100%);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
}

.hiw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 50%, rgba(255, 255, 255, 0.10) 0%, transparent 60%), radial-gradient(ellipse at 82% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hiw-cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hiw-cta-ring-1 {
  width: 30%;
  padding-top: 30%;
  top: -18%;
  left: -8%;
  animation: slowSpin 22s linear infinite;
}

.hiw-cta-ring-2 {
  width: 20%;
  padding-top: 20%;
  bottom: -12%;
  right: 6%;
  animation: slowSpin 16s linear infinite reverse;
}

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

.hiw-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hiw-cta-desc {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.76;
  position: relative;
  z-index: 1;
}

.hiw-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hiw-cta-primary {
  padding: 15px 40px;
  background: #fff;
  color: var(--teal-dark);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 1.4vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
}

.hiw-cta-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.hiw-cta-secondary {
  padding: 15px 40px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.50);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 1.4vw, 0.96rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hiw-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-3px) scale(1.02);
}

/* CTA Tablet */
@media (max-width: 900px) {
  .hiw-cta {
    padding: 60px 40px;
  }
}

/* CTA Mobile */
@media (max-width: 768px) {
  .hiw-cta {
    padding: 48px 28px;
    margin-top: 14px;
  }
}

/* CTA Small Mobile */
@media (max-width: 480px) {
  .hiw-cta-btns {
    gap: 12px;
  }

  .hiw-cta-primary,
  .hiw-cta-secondary {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   FOOTER 14px gap from CTA
═══════════════════════════════════════════ */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin-top: 14px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  @media (max-width: 1200px) {
    .bottom-content {
      padding: 18px 40px 44px;
    }
  }

  @media (max-width: 768px) {
    .bottom-content {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      padding: 20px 24px 40px;
    }
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}