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

:root {
  --teal: #1a7f8e;
  --teal-light: #e6f2f4;
  --teal-mid: #2a9db0;
  --navy: #0d1f2d;
  --text: #1a2b3c;
  --muted: #5a6f80;
  --bg: #eef1f4;
  --white: #ffffff;
  --border: #d8e2e8;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal-mid);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.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 20px;
  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;
}

.hamburger {
  display: none;
}

.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: #ffffff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

/* NAVBAR MOBILE */
@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;
  }

  .hero {
    padding-top: 100px;
  }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  padding: 100px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1639762681057-408e52192e55?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.1s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 25, 40, 0.82) 0%, rgba(13, 40, 58, 0.75) 50%, rgba(26, 127, 142, 0.45) 100%);
  z-index: 0;
}

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

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

.hero-particles span:nth-child(1) {
  width: 6px;
  height: 6px;
  left: 10%;
  top: 20%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  width: 10px;
  height: 10px;
  left: 25%;
  top: 70%;
  animation-duration: 11s;
  animation-delay: 1s;
}

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

.hero-particles span:nth-child(4) {
  width: 8px;
  height: 8px;
  left: 55%;
  top: 15%;
  animation-duration: 13s;
  animation-delay: 0.5s;
}

.hero-particles span:nth-child(5) {
  width: 5px;
  height: 5px;
  left: 70%;
  top: 60%;
  animation-duration: 9s;
  animation-delay: 3s;
}

.hero-particles span:nth-child(6) {
  width: 12px;
  height: 12px;
  left: 80%;
  top: 30%;
  animation-duration: 15s;
  animation-delay: 1.5s;
}

.hero-particles span:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 90%;
  top: 75%;
  animation-duration: 6s;
  animation-delay: 4s;
}

.hero-particles span:nth-child(8) {
  width: 7px;
  height: 7px;
  left: 15%;
  top: 85%;
  animation-duration: 10s;
  animation-delay: 2.5s;
}

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

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-120px) scale(1.3);
    opacity: 0;
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 7px 18px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}

.hero-badge svg {
  width: 13px;
  height: 13px;
  stroke: #17c3b2;
}

.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.shield-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinRing 18s linear infinite;
}

.shield-core {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(23, 195, 178, 0.15);
  border: 2px solid rgba(23, 195, 178, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 40px rgba(23, 195, 178, 0.2);
  animation: spinRing 18s linear infinite reverse;
}

.shield-core svg {
  width: 52px;
  height: 52px;
  stroke: #fff;
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17c3b2;
  box-shadow: 0 0 8px #17c3b2;
}

.d1 {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.d2 {
  bottom: 4px;
  right: 22px;
}

.d3 {
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}

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

/* HERO RESPONSIVE */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }

  .hero {
    padding: 36px 28px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 1.9rem;
  }
}

/* ════════════════════════════════════════
   MAIN LAYOUT
════════════════════════════════════════ */
.main-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.layout-box {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 600px;
}

/* LAYOUT RESPONSIVE */
@media (max-width: 900px) {
  .layout-box {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════ */
.sidebar {
  border-right: 1px solid var(--border);
  padding: 36px 22px;
  background: #fafcfd;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

.toc-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 4px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.2s;
}

.toc-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--teal-light), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  border-radius: 9px;
}

.toc-link:hover::before,
.toc-link.active::before {
  transform: translateX(0);
  opacity: 1;
}

.toc-link:hover {
  color: var(--teal);
  border-left-color: rgba(26, 127, 142, 0.4);
  transform: translateX(3px);
}

.toc-link.active {
  color: var(--teal);
  font-weight: 600;
  border-left-color: var(--teal);
  transform: translateX(3px);
}

.toc-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s;
}

.toc-icon svg {
  width: 100%;
  height: 100%;
}

.toc-link:hover .toc-icon,
.toc-link.active .toc-icon {
  transform: scale(1.15);
}

.toc-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.toc-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.toc-link:hover .toc-arrow,
.toc-link.active .toc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* SIDEBAR RESPONSIVE */
@media (max-width: 900px) {
  .sidebar {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 16px;
    background: #fff;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .toc-label {
    display: none;
  }

  .toc-nav {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
    width: max-content;
  }

  .toc-link {
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 100px;
    border-left: none;
    border: 1.5px solid var(--border);
    font-size: 0.82rem;
    background: #f8fafb;
    transform: none !important;
  }

  .toc-link:hover,
  .toc-link.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: none !important;
  }

  .toc-link::before {
    display: none;
  }

  .toc-icon {
    display: none;
  }

  .toc-arrow {
    display: none;
  }
}

/* ════════════════════════════════════════
   CONTENT
════════════════════════════════════════ */
.content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2), transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.sec.visible .info-card:nth-child(1) {
  transition-delay: 0.05s;
}

.sec.visible .info-card:nth-child(2) {
  transition-delay: 0.15s;
}

.sec.visible .num-list li:nth-child(1) {
  animation: slideIn 0.5s ease 0.05s both;
}

.sec.visible .num-list li:nth-child(2) {
  animation: slideIn 0.5s ease 0.15s both;
}

.sec.visible .num-list li:nth-child(3) {
  animation: slideIn 0.5s ease 0.25s both;
}

.sec.visible .right-item {
  animation: popIn 0.4s cubic-bezier(.34, 1.56, .64, 1) both;
}

.sec.visible .right-item:nth-child(1) {
  animation-delay: 0.05s;
}

.sec.visible .right-item:nth-child(2) {
  animation-delay: 0.12s;
}

.sec.visible .right-item:nth-child(3) {
  animation-delay: 0.19s;
}

.sec.visible .right-item:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sec-plain-title {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.sec>p {
  font-size: 0.94rem;
  color: var(--muted);
}

.sec>p+p {
  margin-top: 14px;
}

.sec-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.sec-icon-box {
  width: 46px;
  height: 46px;
  background: var(--teal-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sec-icon-box:hover {
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 4px 14px rgba(26, 127, 142, 0.2);
}

.sec-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.sec-header h2 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.sec-sub {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
}

.info-card:hover {
  box-shadow: 0 8px 28px rgba(26, 127, 142, 0.12);
  transform: translateY(-4px);
  border-color: rgba(26, 127, 142, 0.3);
}

.info-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}

.check-icon {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  flex-shrink: 0;
}

.num-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.num-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.num {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 30px;
}

.num-list strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.num-list p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}

.blockquote-box {
  border-left: 3px solid var(--teal);
  background: linear-gradient(90deg, #f0f8fa, #f9fbfc);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  transition: box-shadow 0.3s;
}

.blockquote-box:hover {
  box-shadow: 0 4px 20px rgba(26, 127, 142, 0.1);
}

.blockquote-box blockquote {
  font-size: 0.94rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blockquote-box p {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.right-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}

.right-item:hover {
  background: var(--teal-light);
  border-color: rgba(26, 127, 142, 0.25);
  transform: translateX(5px);
  box-shadow: 0 3px 12px rgba(26, 127, 142, 0.1);
}

.right-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  flex-shrink: 0;
}

/* CONTENT RESPONSIVE */
@media (max-width: 900px) {
  .content {
    padding: 32px 28px;
  }

  .cards-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .content {
    padding: 28px 20px;
  }
}

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
.cta-wrapper {
  width: 100%;
  padding: 24px 0 56px;
  display: flex;
  justify-content: center;
}

.cta-box {
  width: 100%;
  margin: 0 48px;
  background: #0ea5a4;
  border-radius: 16px;
  padding: 44px 52px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 195, 178, 0.15), transparent 65%);
  pointer-events: none;
}

.cta-text h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}

/* Desktop: buttons ek ke niche ek, right side, same size */
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btns .btn {
  width: 200px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-teal {
  background: #fff;
  color: #0ea5a4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-teal:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-dark:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* CTA RESPONSIVE */
@media (max-width: 900px) {
  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    margin: 0 16px;
    gap: 24px;
  }

  .cta-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
  }

  .cta-btns .btn {
    flex: 1;
    width: auto;
    justify-content: center;
    padding: 13px 16px;
    font-size: 0.88rem;
  }

  .btn-dark svg {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-box {
    margin: 0 12px;
    padding: 28px 20px;
  }

  .cta-text h3 {
    font-size: 1.2rem;
  }

  .cta-btns {
    gap: 10px;
  }

  .cta-btns .btn {
    padding: 12px 12px;
    font-size: 0.84rem;
  }
}

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

.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;
  cursor: pointer;
}

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

/* FOOTER RESPONSIVE */
/* 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;
  }

  @media (max-width: 480px) {
    .bottom-content {
      padding: 14px 20px 36px;
    }

    .legal-links {
      gap: 16px;
    }

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

/* ════════════════════════════════════════
   PRINT
════════════════════════════════════════ */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: #fff !important;
  }

  .navbar {
    display: none !important;
  }

  .hero {
    background-image: none !important;
    background: linear-gradient(135deg, #0d1f2d 0%, #1a4a5c 60%, #1a7f8e 100%) !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    min-height: auto !important;
    padding: 36px 48px !important;
  }

  .hero-overlay,
  .hero-particles,
  .hero-visual {
    display: none !important;
  }

  .sidebar {
    display: none !important;
  }

  .layout-box {
    grid-template-columns: 1fr !important;
    border: none !important;
  }

  .content {
    padding: 32px 40px !important;
    gap: 36px !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .rights-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .cta-wrapper {
    padding: 20px 0 32px !important;
  }

  .cta-box {
    margin: 0 40px !important;
    padding: 32px 40px !important;
    background: #0d1f2d !important;
    border-radius: 12px !important;
    page-break-inside: avoid !important;
  }

  .cta-box::after {
    display: none !important;
  }

  .sec,
  .info-card,
  .blockquote-box {
    page-break-inside: avoid !important;
  }

  .cta-btns {
    display: none !important;
  }

  * {
    box-shadow: none !important;
  }

  .athenura-footer {
    display: none !important;
  }
}