/* JAC Delhi Counseling — vibrant Zeline theme */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --navy: #002147;
  --navy-soft: #1a3d6b;
  --orange: #ff6600;
  --orange-light: #ff8533;
  --green: #008b5e;
  --green-light: #00b377;
  --blue-cta: #2e5bff;
  --blue-cta-hover: #1e4ae8;
  --violet: #7c3aed;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1200px;
  --radius: 16px;
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #fff7ed 35%, #ecfdf5 70%, #f0f9ff 100%);
  --gradient-nav: linear-gradient(90deg, #ff6600 0%, #ff8533 50%, #ff6600 100%);
  --gradient-navy: linear-gradient(135deg, #002147 0%, #1e3a5f 50%, #0f2847 100%);
  --gradient-footer: linear-gradient(160deg, #002147 0%, #1a3d6b 40%, #0c1929 100%);
  --dtu: #f59e0b;
  --nsut: #8b5cf6;
  --igdtuw: #10b981;
  --iiit: #3b82f6;
  --text-base: 15px;
  --line-base: 1.5;
  --nav-font-size: 0.9rem;
}

@media (max-width: 768px) {
  :root {
    --text-base: 14px;
    --nav-font-size: 0.8rem;
  }
}

@media (max-width: 380px) {
  :root {
    --nav-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--line-base);
  color: var(--text);
  background: #f7f8fa;
  background-image: none;
  min-height: 100vh;
  padding-top: var(--site-chrome-height, 11rem);
}

a {
  color: var(--blue-cta);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--blue-cta-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Unified typography — one base size; headings scale with em */
.page-wrap,
.top-bar,
.site-header,
.site-nav,
.news-ticker,
.site-footer,
.btn,
.tab-btn,
.tab-panel,
.notice-list a,
.intro-block p,
.activity-board,
.activity-board a,
.activity-board__head,
.card p,
.card li,
.hero p,
.hero__badge,
.page-hero p,
.disclaimer,
.news-ticker__items,
.filter-bar label,
.filter-bar select,
.cutoff-empty,
.contact-item p,
.doc-list a {
  font-size: inherit;
  line-height: inherit;
}

.page-wrap h1,
.hero h1,
.page-hero h1 {
  font-size: 1.25em;
  line-height: 1.3;
}

.page-wrap h2,
.section-title,
.intro-block h2,
.card h2 {
  font-size: 1.1em;
  line-height: 1.35;
}

.page-wrap h3,
.contact-item h3,
.site-footer h3,
.footer-col h3 {
  font-size: 1em;
  line-height: 1.35;
}

.site-header .brand-title {
  font-size: inherit;
  line-height: 1.35;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top bar — Hindi / English combo */
.top-bar {
  background: #eceff3;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.top-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.top-bar__bi {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  gap: 0.05rem;
}
.top-bar__bi--right {
  text-align: right;
}
.top-bar__hi {
  font-weight: 700;
  color: var(--text);
}
.top-bar__en {
  color: var(--muted);
  font-weight: 500;
}

/* Header block (inside #site-header) */
#site-header .top-bar {
  position: relative;
  z-index: 2;
}

.site-header {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.site-header__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.06), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(46, 91, 255, 0.06), transparent 40%);
  pointer-events: none;
}
.site-header__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

/* Right: one college logo, cycles every 2s (see site.js) */
.college-rotator {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.college-rotator__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 4px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.1);
  transition: transform 0.25s, border-color 0.25s;
}
.college-rotator__link:hover {
  border-color: var(--orange);
  transform: scale(1.05);
}
.college-rotator__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transition: opacity 0.22s ease;
}
.college-rotator.is-fading .college-rotator__img {
  opacity: 0;
}

.header-colleges--desktop {
  display: none;
}

.brand-logo-link {
  display: block;
  transition: transform 0.25s;
}
.brand-logo-link:hover {
  transform: scale(1.05);
}
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 139, 94, 0.25);
  border: 3px solid #fff;
  background: #fff;
}

.header-colleges {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.header-colleges--all {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 33, 71, 0.08);
  width: 100%;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.header-colleges--all::-webkit-scrollbar {
  display: none;
}
.header-uni {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 4px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.header-uni:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(46, 91, 255, 0.2);
  border-color: var(--orange);
}
.header-uni img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-center {
  flex: 1;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-hindi {
  margin: 0 0 0.25rem;
  font-weight: 800;
  color: var(--text);
}
.brand-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 500;
}
.brand-sub a {
  font-weight: 700;
}

.call-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.5rem auto 0;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, #008b5e 0%, #00b377 50%, #008b5e 100%);
  background-size: 200% 100%;
  animation: call-pill-shine 3s ease infinite;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 139, 94, 0.45);
  transition: transform 0.2s;
  border: none;
  overflow: visible;
}
@keyframes call-pill-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* Desktop / laptop: compact branding block (mobile unchanged in mobile.css) */
@media (min-width: 901px) {
  #site-header .top-bar__inner {
    padding: 0.3rem 1rem;
  }

  #site-header .top-bar__hi {
    font-size: 0.88em;
  }

  #site-header .top-bar__en {
    font-size: 0.82em;
  }

  .site-header__inner {
    padding: 0.45rem 1rem 0.5rem;
    gap: 0.4rem;
  }

  .brand-row {
    gap: 0.55rem;
    align-items: center;
  }

  .brand-logo-link {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
    border-width: 2px;
    box-shadow: 0 4px 14px rgba(0, 139, 94, 0.22);
  }

  .college-rotator {
    width: 84px;
    height: 84px;
  }

  .college-rotator__link {
    width: 84px;
    height: 84px;
    padding: 3px;
    box-shadow: 0 3px 12px rgba(0, 33, 71, 0.09);
  }

  .brand-hindi {
    margin-bottom: 0.08rem;
    font-size: 0.9em;
  }

  .brand-title {
    font-size: 0.92em;
    line-height: 1.28;
  }

  .brand-sub {
    margin-top: 0.15rem;
    font-size: 0.86em;
  }

  .call-pill {
    margin-top: 0.22rem;
    padding: 0.28rem 0.6rem;
    gap: 0.22rem;
    font-size: 0.88em;
  }

  .call-pill__phone {
    width: 0.78rem;
    height: 0.78rem;
  }
}

.call-pill:hover {
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}
.call-pill__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid rgba(0, 179, 119, 0.55);
  animation: call-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes call-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.call-pill__phone {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  animation: call-phone-wiggle 1.2s ease-in-out infinite;
}
@keyframes call-phone-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(-12deg);
  }
  30% {
    transform: rotate(10deg);
  }
  45% {
    transform: rotate(-8deg);
  }
  60% {
    transform: rotate(6deg);
  }
}
.call-pill__text {
  line-height: 1;
}

/* Fixed chrome: top bar + branding + nav (all pages) */
.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 33, 71, 0.1);
}

#site-header {
  position: relative;
  z-index: 1;
}

/* Nav — below branding inside fixed chrome */
.site-chrome .site-nav,
.site-nav {
  background: var(--gradient-nav);
  background-size: 200% 100%;
  animation: nav-shine 8s ease infinite;
  position: relative;
  top: auto;
  z-index: 2;
  width: 100%;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.35);
}
@keyframes nav-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.site-nav__scroll {
  max-width: var(--max);
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-nav__scroll::-webkit-scrollbar {
  display: none;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
}
.nav-list li {
  flex-shrink: 0;
}
.nav-list a {
  display: block;
  padding: 0.75rem 0.7rem;
  color: #fff;
  font-size: var(--nav-font-size);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.25s, left 0.25s;
}
.nav-list a:hover::after,
.nav-list a.is-active::after {
  width: 70%;
  left: 15%;
}
.nav-list a:hover,
.nav-list a.is-active {
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.nav-list a.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, #00c987 100%);
  border-radius: 8px;
  margin: 0.35rem 0.35rem 0.35rem 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.nav-list a.nav-cta::after {
  display: none;
}
.nav-list a.nav-cta:hover {
  background: linear-gradient(135deg, #00724d 0%, var(--green-light) 100%);
}

/* Ticker */
.news-ticker {
  background: var(--gradient-navy);
  color: #fff;
  min-height: 2.4rem;
  overflow: hidden;
}
.news-ticker__track {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.news-ticker__items {
  display: flex;
  gap: 3rem;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
  padding-left: 1rem;
}
.news-ticker__items:hover {
  animation-play-state: paused;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  margin-right: 0.4rem;
  vertical-align: middle;
  animation: badge-pop 2s ease infinite;
}
@keyframes badge-pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Page */
.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

.page-hero {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  margin: 0 0 0.5rem;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}
.page-hero p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  position: relative;
}

/* Hero home */
.hero {
  position: relative;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.75rem;
  overflow: hidden;
  background: #fff;
}
.hero__gradient-layer {
  display: none;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.25rem 1.75rem 1.5rem;
  z-index: 1;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero__layout--single {
  grid-template-columns: 1fr;
}
.hero__layout::before,
.hero__layout::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__layout::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: 20%;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.16), transparent 70%);
}
.hero__layout::after {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.12), transparent 70%);
}
.hero__main {
  text-align: left;
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy-soft);
  margin-bottom: 1rem;
}
.hero__badge img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}
.hero h1 {
  margin: 0 0 0.85rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--navy);
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #ff9933 0%, var(--green) 45%, var(--blue-cta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-actions__pair {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.6rem;
  width: 100%;
  max-width: 22rem;
  justify-content: center;
}
.hero-actions__pair .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.75rem 0.65rem;
}
.hero-actions > .btn-outline {
  width: 100%;
  max-width: 22rem;
  padding: 0.42rem 1rem;
  min-height: 0;
  line-height: 1.25;
}
.hero__main .hero-actions {
  align-items: flex-start;
}
.hero__main .hero-actions__pair {
  justify-content: flex-start;
  max-width: 100%;
}

/* Hero — all college logos on the right */
.hero__aside {
  flex-shrink: 0;
  padding: 0.75rem 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(0, 33, 71, 0.1);
  min-width: 11.5rem;
}
.hero__aside-label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-align: center;
}

.hero-colleges.hero-colleges--side {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  justify-content: space-between;
}
.college-logo-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 0.45rem 0.25rem;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.college-logo-pill:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
  text-decoration: none;
}
.college-logo-pill img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f8fafc;
  padding: 3px;
}
.college-logo-pill__name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover::before {
  transform: translateX(100%);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn::before {
  display: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-cta) 0%, #5b7cff 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 91, 255, 0.4);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 32px rgba(46, 91, 255, 0.5);
}
.btn-success {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 139, 94, 0.35);
}
.btn-success:hover {
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.1);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.grid-2col > * {
  min-width: 0;
  width: 100%;
}

/* Panel tabs */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.panel:hover {
  box-shadow: var(--shadow-lg);
}
.tab-head {
  display: flex;
  background: linear-gradient(180deg, #e8e4dc, #ddd8ce);
}
.tab-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.85rem 0.65rem;
  border: none;
  background: transparent;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.25s;
  text-align: center;
  line-height: 1.25;
}
.tab-btn.is-active {
  background: var(--surface);
  color: var(--navy);
  box-shadow: 0 -3px 0 var(--orange) inset;
}
.tab-panel {
  display: none;
  padding: 0.65rem 0.75rem;
  animation: fade-in 0.35s ease;
}
.tab-panel.is-active {
  display: block;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.notice-list li {
  margin: 0;
  padding: 0;
}
.notice-list li + li {
  margin-top: 0;
}
.notice-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.12rem 0.3rem;
  border-radius: 6px;
  color: #1d4ed8;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
.notice-list a::before {
  content: "›";
  color: var(--blue-cta);
  font-weight: 800;
  flex-shrink: 0;
}
.notice-list a:hover {
  color: var(--blue-cta-hover);
  background: #eff6ff;
  text-decoration: none;
}

.intro-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}
.intro-block h2 {
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--orange), var(--blue-cta)) 1;
}
.intro-block p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.activity-board {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 33, 71, 0.15);
}
.activity-board__head {
  background: var(--gradient-navy);
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.activity-board__body {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #f8fafc, #fff);
}
.activity-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.activity-board li {
  margin-bottom: 0.45rem;
}
.activity-board a {
  font-weight: 600;
  color: var(--navy-soft);
}

.section-title {
  margin: 0 0 1.15rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.section-title::before {
  content: "";
  width: 5px;
  height: 1.4em;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange), var(--green));
}

/* Institute cards */
.institute-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 1000px) {
  .institute-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .institute-grid {
    grid-template-columns: 1fr;
  }
}

.institute-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem 1.15rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.institute-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}
.institute-card:hover .institute-card__shine {
  transform: translateX(100%);
}
.institute-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.institute-card--dtu {
  border-top: 4px solid var(--dtu);
  background: linear-gradient(180deg, #fffbeb 0%, #fff 40%);
}
.institute-card--nsut {
  border-top: 4px solid var(--nsut);
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 40%);
}
.institute-card--igdtuw {
  border-top: 4px solid var(--igdtuw);
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 40%);
}
.institute-card--iiit {
  border-top: 4px solid var(--iiit);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 40%);
}
.institute-card__logo-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  padding: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.institute-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.institute-card h3 {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.institute-card p {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.institute-card__link {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-cta);
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(46, 91, 255, 0.08);
  transition: background 0.2s;
}
.institute-card__link:hover {
  background: rgba(46, 91, 255, 0.15);
  text-decoration: none;
}

/* Generic cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.65rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.35rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.card--gradient {
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 50%, #fff7ed 100%);
  border-color: rgba(46, 91, 255, 0.15);
}
.card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.card p:last-child {
  margin-bottom: 0;
}

/* Cutoffs page */
.cutoffs-intro {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  background: linear-gradient(120deg, #eef2ff 0%, #fff7ed 42%, #ecfdf5 100%);
  border: 1px solid rgba(0, 139, 94, 0.22);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.page-hero--compact h1 {
  font-size: 1.35em;
}

.page-hero--compact p {
  font-size: 0.92em;
  margin-bottom: 0;
}

.cutoffs-filters__title {
  margin: 0 0 0.25rem;
  font-size: 1.05em;
  font-weight: 800;
  color: var(--navy);
}

.cutoffs-filters__hint {
  margin: 0 0 0.85rem;
  font-size: 0.85em;
  color: var(--muted);
  line-height: 1.45;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.filter-bar--cutoffs {
  grid-template-columns: 1fr;
  margin-bottom: 0;
  gap: 0.65rem;
}

.filter-bar--cutoffs .field--full {
  grid-column: 1 / -1;
}

.filter-bar__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.filter-bar__duo .field {
  min-width: 0;
}

.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field select {
  width: 100%;
  padding: 0.62rem 2rem 0.62rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
}

.field select:focus {
  outline: none;
  border-color: var(--blue-cta);
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.12);
}

.cutoff-college-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.cutoff-college-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  min-width: 0;
  width: 100%;
  padding: 0.28rem 0.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.cutoff-college-btn span {
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.cutoff-college-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  background: #f8fafc;
  padding: 1px;
}

.cutoff-college-btn:hover {
  border-color: var(--orange-light);
  background: #fff7ed;
}

.cutoff-college-btn.is-active {
  border-color: var(--orange);
  background: #fff7ed;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.18);
}

.cutoffs-viewer-card {
  padding: 0;
  overflow: hidden;
}

.cutoffs-viewer-card .cutoff-viewer {
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
}

.cutoff-viewer {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  min-height: 12rem;
}

.cutoff-viewer__frame {
  background: #fff;
}

.cutoff-viewer__frame iframe {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  border: 0;
  display: block;
}

.cutoff-toolbar {
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.cutoff-toolbar__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.3;
  min-width: 0;
}

.cutoff-toolbar__title strong {
  display: block;
  font-weight: 800;
}

.cutoff-toolbar__sub {
  display: block;
  font-size: 0.72em;
  font-weight: 600;
  color: var(--muted);
}

.cutoff-toolbar__title img {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  border: 1px solid var(--border);
}

.cutoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.cutoff-actions .btn {
  flex: 1 1 8rem;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  justify-content: center;
  text-align: center;
}

.cutoff-actions[hidden] {
  display: none;
}

.cutoff-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cutoff-empty p,
.cutoff-empty__text {
  margin: 0;
}

.cutoff-empty--prompt {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.cutoff-empty--prompt .cutoff-empty__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--navy-soft);
  animation: cutoff-prompt-fade 2.2s ease-in-out infinite;
}

.cutoff-empty--prompt .cutoff-empty__text::before {
  content: "↓";
  display: inline-block;
  font-size: 1.1em;
  font-weight: 800;
  color: var(--blue-cta);
  animation: cutoff-prompt-bounce 1.4s ease-in-out infinite;
}

@keyframes cutoff-prompt-fade {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes cutoff-prompt-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Docs */
.doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.doc-list li {
  margin-bottom: 0.75rem;
}
.doc-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-weight: 700;
  color: var(--navy-soft);
  text-decoration: none;
  transition: all 0.25s;
}
.doc-list a:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.15);
}
.doc-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-navy);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pdf-embed {
  margin-top: 1.35rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pdf-embed iframe {
  width: 100%;
  height: 65vh;
  border: 0;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 22rem);
  gap: 1.15rem;
  align-items: start;
  margin-bottom: 1rem;
}

.contact-details__intro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-details__list {
  margin: 0;
  padding: 0;
}

.contact-details__row {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-details__row:first-of-type {
  padding-top: 0;
}

.contact-details__row:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-details__row dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-soft);
  line-height: 1.35;
}

.contact-details__row dd {
  margin: 0;
  min-width: 0;
}

.contact-details__primary {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  word-break: break-word;
}

a.contact-details__primary {
  color: var(--blue-cta);
}

a.contact-details__primary:hover {
  color: var(--blue-cta-hover);
}

.contact-details__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.contact-details__actions {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-channel-actions {
  align-items: flex-start;
}

.contact-channel-actions .hero-actions__pair {
  justify-content: flex-start;
  max-width: 100%;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-aside__heading {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-blog-card {
  margin: 0;
}

.contact-blog-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-cta);
}

.contact-blog-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-blog-card__text {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-blog-card__list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.contact-blog-card__list li {
  margin-bottom: 0.25rem;
}

.contact-blog-card__btn {
  width: 100%;
  text-align: center;
}

.contact-links-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.contact-links-list li {
  margin-bottom: 0.35rem;
}

.contact-links-list a {
  font-weight: 600;
}

.contact-prep {
  margin: 0;
}

/* Home — trust & social proof (factual; not fabricated review schema) */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff7ed 50%, #f0fdf4 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-bar__item {
  text-align: center;
  padding: 0.35rem 0.25rem;
}

.trust-bar__item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.25;
}

.trust-bar__item span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.trust-bar__item--accent strong {
  color: var(--green);
}

.trust-quotes {
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-quotes__heading {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--navy);
  text-align: center;
}

.trust-quotes__lead {
  margin: 0 auto 1rem;
  max-width: 40rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.trust-quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trust-quote {
  margin: 0;
  padding: 0.85rem 0.95rem;
  background: #fafbfc;
  border-left: 3px solid var(--blue-cta);
  border-radius: 0 8px 8px 0;
}

.trust-quote p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.trust-quote footer {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
}

.trust-quotes__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.about-zeline {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-zeline img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}

.about-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.2rem;
}

.about-list li {
  margin-bottom: 0.45rem;
  line-height: 1.5;
  color: var(--text);
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-institutes {
  margin: 0;
  font-weight: 600;
  color: var(--navy-soft);
  letter-spacing: 0.02em;
}

.about-actions {
  align-items: flex-start;
  margin-top: 0.25rem;
}

.about-actions .hero-actions__pair {
  justify-content: flex-start;
  max-width: 100%;
  width: 100%;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--gradient-footer);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2.5rem;
  font-size: 0.88rem;
  overflow: hidden;
}
.site-footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.8;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-col--guides {
    grid-column: 1 / -1;
  }
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-brand img {
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.site-footer h3 {
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: #fff;
}
.site-footer a {
  color: #93c5fd;
  font-weight: 500;
}
.site-footer a:hover {
  color: #fcd34d;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin-bottom: 0.4rem;
}
.footer-col--institutes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

.error-page__card {
  max-width: 32rem;
  margin: 2rem auto 1.5rem;
  text-align: center;
}

.error-page__code {
  margin: 0 0 0.35rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-cta);
}

.error-page__card h1 {
  margin: 0 0 0.5rem;
}

.error-page__card > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.error-page__links {
  text-align: left;
  max-width: 18rem;
  margin: 0 auto 0.5rem;
}

.disclaimer {
  color: var(--muted);
  line-height: 1.5;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: 12px;
  margin-top: 1.5rem;
}

/* Counselling guide */
.guide-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-article {
  margin-bottom: 1.35rem;
}

.guide-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.guide-section h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.guide-section p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.guide-section p:last-child,
.guide-section ul:last-child {
  margin-bottom: 0;
}

.guide-section ul {
  margin: 0 0 0.65rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.guide-section li {
  margin-bottom: 0.35rem;
}

.guide-label {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 0.85em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-cta);
}

.guide-box {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: #f0f7ff;
  border-left: 3px solid var(--blue-cta);
  border-radius: 0 8px 8px 0;
}

.guide-box--warn {
  background: #fffbeb;
  border-left-color: var(--orange);
}

.guide-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.guide-box p {
  margin: 0;
}

.guide-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.guide-ol {
  margin: 0 0 0.65rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

.guide-ol li {
  margin-bottom: 0.45rem;
}

.spot-toc__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.spot-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 0.35rem 0.75rem;
}

.spot-toc__list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-cta);
  text-decoration: none;
}

.spot-toc__list a:hover {
  text-decoration: underline;
}

.spot-toc__list li.is-active a,
.spot-toc__list a.is-active {
  color: var(--navy);
  font-weight: 800;
  background: linear-gradient(90deg, #eef4ff, #f5f3ff);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: inset 3px 0 0 var(--blue-cta);
}

.table-scroll {
  overflow-x: auto;
  margin: 0 0 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.spot-guide-scroll-hint {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.spot-guide-scroll-wrap {
  margin: 0 0 1.15rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.spot-scroll-progress {
  height: 5px;
  background: #e2e8f0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.spot-scroll-progress__fill {
  display: block;
  height: 100%;
  width: var(--scroll-pct, 0%);
  background: linear-gradient(90deg, var(--blue-cta), #6366f1, #8b5cf6);
  border-radius: inherit;
  transition: width 0.2s ease-out;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.45);
}

.spot-guide-scroll {
  overflow: auto;
  max-height: min(72vh, 34rem);
  margin: 0;
  padding: 0.5rem 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(180deg, #fafbff 0%, var(--surface) 12%);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-cta) #e2e8f0;
}

.spot-guide-scroll::-webkit-scrollbar {
  width: 11px;
}

.spot-guide-scroll::-webkit-scrollbar-track {
  background: #e8edf5;
  border-radius: 0 0 var(--radius) 0;
  margin: 4px 0;
}

.spot-guide-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #60a5fa, var(--blue-cta) 45%, #1d4ed8);
  border-radius: 8px;
  border: 2px solid #e8edf5;
  min-height: 48px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.spot-guide-scroll:hover::-webkit-scrollbar-thumb,
.spot-guide-scroll.is-scrolling::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #93c5fd, #3b82f6 40%, var(--blue-cta));
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.55);
}

.spot-guide-scroll:focus {
  outline: 2px solid var(--blue-cta);
  outline-offset: 2px;
}

.spot-guide-scroll .guide-article {
  margin-bottom: 0;
}

.spot-guide-scroll .guide-section {
  scroll-margin-top: 0.5rem;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible {
  animation: spot-section-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(1) { animation-delay: 0.02s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(2) { animation-delay: 0.05s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(3) { animation-delay: 0.08s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(4) { animation-delay: 0.11s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(5) { animation-delay: 0.14s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(6) { animation-delay: 0.17s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(7) { animation-delay: 0.2s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(8) { animation-delay: 0.23s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(9) { animation-delay: 0.26s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(10) { animation-delay: 0.29s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(11) { animation-delay: 0.32s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(12) { animation-delay: 0.35s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(13) { animation-delay: 0.38s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(14) { animation-delay: 0.41s; }
.spot-guide-scroll .guide-article > .guide-section.reveal.is-visible:nth-child(15) { animation-delay: 0.44s; }

.spot-guide-scroll .guide-section.is-active {
  border-color: rgba(59, 130, 246, 0.45);
  border-left: 4px solid var(--blue-cta);
  box-shadow:
    0 4px 20px rgba(59, 130, 246, 0.12),
    inset 0 0 0 1px rgba(99, 102, 241, 0.08);
  background: linear-gradient(105deg, #f8fbff 0%, var(--surface) 55%);
  transform: translateX(2px);
}

.spot-guide-scroll .guide-section.is-targeted {
  animation: spot-section-pulse 0.9s ease-out;
}

@keyframes spot-section-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spot-section-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.45);
  }
  40% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.15);
  }
  100% {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12);
  }
}

.spot-round-page [id] {
  scroll-margin-top: var(--site-scroll-offset, 5.5rem);
}

.spot-guide-scroll .guide-section:last-child {
  margin-bottom: 0;
}

/* Spot round — hero rules link */
.spot-hero-rules-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-cta);
  text-decoration: none;
  border-bottom: 2px solid rgba(46, 91, 255, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.spot-hero-rules-link:hover {
  color: var(--navy);
  border-bottom-color: var(--orange);
  text-decoration: none;
}

.spot-hero-rules-link__short {
  display: none;
}

.page-hero__sub {
  margin: 0.35rem 0 0;
}

.spot-pdf-tabs__label-short,
.spot-rules-block__open-short {
  display: none;
}

/* Spot round — rules & PDF block (page bottom) */
.spot-rules-block {
  margin: 1.25rem 0 0.85rem;
  scroll-margin-top: var(--site-scroll-offset, 5.5rem);
}

.spot-rules-block__docs.card--docs-compact {
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.spot-rules-block__docs h2 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.spot-rules-block__docs .card--docs-compact__lead {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.spot-rules-block__docs .doc-list li {
  margin-bottom: 0.35rem;
}

.spot-rules-block__docs .doc-list li:last-child {
  margin-bottom: 0;
}

.spot-rules-block__docs .doc-list a {
  padding: 0.5rem 0.65rem;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  border-width: 1px;
  border-radius: 8px;
}

.spot-rules-block__docs .doc-list a:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.12);
}

.spot-rules-block__docs .doc-icon {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.58rem;
  border-radius: 6px;
}

.spot-rules-block__viewer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.spot-rules-block__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.65rem;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(90deg, #f0f4ff, #faf5ff);
  border-bottom: 1px solid var(--border);
}

.spot-pdf-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.spot-pdf-tabs__btn {
  padding: 0.38rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.spot-pdf-tabs__btn:hover {
  border-color: var(--blue-cta);
  color: var(--navy);
}

.spot-pdf-tabs__btn.is-active {
  color: #fff;
  background: var(--blue-cta);
  border-color: var(--blue-cta);
}

.spot-rules-block__open.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.spot-rules-block__embed.pdf-embed--compact {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.spot-rules-block__embed iframe {
  height: min(42vh, 320px);
}

/* Laptop / desktop — tall PDF preview */
@media (min-width: 900px) {
  .spot-rules-block__embed iframe {
    height: calc(100vh - 11rem);
    min-height: 32rem;
    max-height: 56rem;
  }
}

.btn--sm {
  min-height: 0;
}

.spot-round-page .spot-cta-actions {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.spot-round-page .spot-cta-actions .hero-actions__pair {
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
}

.spot-round-page .spot-cta-actions .hero-actions__pair .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  font-size: 0.88rem;
  padding: 0.65rem 0.75rem;
}

.spot-round-page .spot-cta-actions > .btn-outline {
  width: 100%;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .spot-guide-scroll .guide-section.reveal.is-visible,
  .spot-guide-scroll .guide-section.is-targeted {
    animation: none;
  }

  .spot-guide-scroll .guide-section.is-active {
    transform: none;
  }

  .spot-scroll-progress__fill {
    transition: none;
  }
}

.guide-table {
  width: 100%;
  min-width: 20rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.guide-table th,
.guide-table td {
  padding: 0.5rem 0.65rem;
  text-align: left;
  border: 1px solid var(--border);
  color: var(--muted);
}

.guide-table th {
  background: #f0f4fa;
  color: var(--navy);
  font-weight: 700;
}

.guide-table tbody tr:nth-child(even) td {
  background: #fafbfc;
}

/* Home — key facts tab */
.home-facts-list {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.home-facts-list li {
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.tab-panel__hint {
  margin: 0.65rem 0 0;
  font-size: 0.92em;
  font-weight: 600;
  text-align: center;
}

.tab-panel__hint a {
  color: var(--blue-cta);
}

.tab-panel__hint a:hover {
  color: var(--blue-cta-hover);
}

.page-faq {
  margin-top: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-faq--compact {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem 0.9rem;
}

.page-faq h2 {
  margin: 0 0 0.4rem;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15em;
  line-height: 1.3;
}

.page-faq--compact h2 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-faq__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.page-faq--compact .page-faq__lead {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-faq__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0 0;
}

.page-faq--compact .page-faq__cta {
  margin-top: 0.55rem;
}

/* FAQ / compact CTAs — match main .btn system */
.page-faq__cta .btn-faq-rules,
.page-faq__cta .btn-faq-guide,
.tab-panel__cta--buttons .btn-faq-rules,
.tab-panel__cta--buttons .btn-faq-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-faq__cta .btn-faq-rules,
.tab-panel__cta--buttons .btn-faq-rules {
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--navy);
  box-shadow: 0 2px 8px rgba(0, 33, 71, 0.08);
}

.page-faq__cta .btn-faq-rules:hover,
.tab-panel__cta--buttons .btn-faq-rules:hover {
  color: #fff;
  background: var(--navy);
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 33, 71, 0.15);
}

.page-faq__cta .btn-faq-guide,
.tab-panel__cta--buttons .btn-faq-guide {
  color: #fff;
  background: var(--blue-cta);
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(46, 91, 255, 0.25);
}

.page-faq__cta .btn-faq-guide:hover,
.tab-panel__cta--buttons .btn-faq-guide:hover {
  color: #fff;
  background: #1d4ed8;
  transform: none;
  box-shadow: 0 6px 16px rgba(46, 91, 255, 0.3);
}

.tab-panel__cta .btn-faq-rules {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 33, 71, 0.06);
}

.tab-panel__cta .btn-faq-rules:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: none;
}

.home-faq {
  margin-bottom: 0.75rem;
}

.home-faq--compact {
  margin-bottom: 0.35rem;
}

.home-faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.4rem;
  background: #fff;
  overflow: hidden;
}

.home-faq--compact details {
  margin-bottom: 0.28rem;
  border-radius: 6px;
}

.home-faq summary {
  padding: 0.5rem 0.65rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, color 0.2s;
}

.home-faq--compact summary {
  padding: 0.38rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary::before {
  content: "+ ";
  font-weight: 800;
}

.home-faq--compact summary::before {
  font-size: 0.85em;
}

.home-faq details[open] summary::before {
  content: "− ";
}

.home-faq details p {
  margin: 0;
  padding: 0 0.65rem 0.55rem;
  color: var(--muted);
  line-height: 1.45;
}

.home-faq--compact details p {
  padding: 0 0.5rem 0.45rem;
  font-size: 0.74rem;
  line-height: 1.4;
}

/* FAQ — two light theme alternates (site navy + warm/cool neutrals) */
.faq-item {
  border: 1px solid var(--border);
}

.faq-item:nth-child(odd) summary {
  background: var(--surface);
  color: var(--navy);
  border-left: 3px solid var(--blue-cta);
}

.faq-item:nth-child(odd) summary::before {
  color: var(--blue-cta);
}

.faq-item:nth-child(odd)[open] p {
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.faq-item:nth-child(even) summary {
  background: #fff7ed;
  color: var(--navy);
  border-left: 3px solid var(--green);
}

.faq-item:nth-child(even) summary::before {
  color: var(--green);
}

.faq-item:nth-child(even)[open] p {
  background: #f7faf8;
  border-top: 1px solid rgba(0, 139, 94, 0.15);
}

.faq-item[open] summary {
  font-weight: 800;
}

.tab-panel__cta {
  margin: 0.5rem 0 0;
  text-align: center;
}

.tab-panel__cta--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.btn--compact {
  padding: 0.5rem 1rem;
  width: 100%;
  max-width: 100%;
}

/* Home — enhanced ₹1899 plan (nested in Overview) */
.plan-promo {
  position: relative;
  max-width: 100%;
  overflow: visible;
}

.plan-promo--nested {
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem 1.15rem;
  background: linear-gradient(145deg, #ecfdf5 0%, #eff6ff 38%, #fff7ed 100%);
  border: 2px solid rgba(0, 139, 94, 0.4);
  border-radius: 14px;
  box-shadow:
    0 10px 32px rgba(0, 139, 94, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.intro-block .plan-promo--nested {
  margin-bottom: 0;
}

.plan-promo__shine {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.plan-promo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 1rem 1.25rem;
  align-items: start;
}

.plan-promo__inner > * {
  min-width: 0;
  max-width: 100%;
}

.plan-promo__head {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.plan-promo__head .plan-promo__brand {
  margin-bottom: 0;
}

.plan-promo__head .plan-promo__price-ribbon {
  width: 100%;
  max-width: 16rem;
}

.plan-promo__brand {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.55rem 0.28rem 0.35rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--muted);
  line-height: 1;
  white-space: nowrap;
}

.plan-promo__brand img {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: contain;
}

.plan-promo__brand span {
  white-space: nowrap;
  line-height: 1.2;
}

.plan-promo__brand strong {
  color: var(--navy);
}

.plan-promo__main h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15em;
  color: var(--navy);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.plan-promo__institutes {
  margin: 0 0 0.65rem;
  font-weight: 700;
  color: var(--navy-soft);
  letter-spacing: 0.02em;
}

/* Full-width price band — rem sizes so it stays large inside .intro-block */
.plan-promo__price-ribbon {
  text-align: center;
  padding: 0.6rem 0.85rem 0.55rem;
  border-radius: 12px;
  border: 2px solid rgba(0, 139, 94, 0.45);
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 45%, #d1fae5 100%);
  background-size: 200% 200%;
  animation: plan-ribbon-glow 2.4s ease-in-out infinite;
}

.intro-block .plan-promo__price-label {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.intro-block .plan-promo__price {
  margin: 0;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #003d28;
}

.intro-block .plan-promo__currency {
  display: inline-block;
  margin-right: 0.06em;
  font-size: 0.55em;
  font-weight: 900;
  vertical-align: 0.12em;
  color: #003d28;
}

.intro-block .plan-promo__amount {
  display: inline-block;
  font-size: 1em;
  font-weight: 900;
  color: var(--green);
}

@keyframes plan-ribbon-glow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 6px 16px rgba(0, 139, 94, 0.2);
    border-color: rgba(0, 139, 94, 0.4);
  }
  50% {
    background-position: 100% 50%;
    box-shadow:
      0 8px 22px rgba(0, 139, 94, 0.32),
      0 0 24px rgba(0, 179, 119, 0.4),
      0 0 36px rgba(0, 211, 140, 0.2);
    border-color: var(--green);
  }
}

.plan-promo__features-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.65rem 0.75rem 0.55rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.plan-promo__features-title {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-cta);
}

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

.plan-promo__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--text);
  line-height: 1.5;
  font-size: 0.95rem;
}

.plan-promo__features li:last-child {
  border-bottom: none;
}

.plan-promo__features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 139, 94, 0.12);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
}

.plan-promo__features li span {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.plan-promo__features li strong {
  color: var(--navy);
  font-weight: 800;
}

.plan-promo__feature--spot {
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.1), transparent);
  margin: 0;
  padding: 0.4rem 0.35rem;
  border-radius: 8px;
  border-bottom-color: rgba(255, 102, 0, 0.15);
}

.plan-promo__feature--spot::before {
  background: rgba(255, 102, 0, 0.18);
  color: var(--orange);
}

.plan-promo__actions {
  margin-top: 0.75rem;
  text-align: center;
}

.plan-promo__btn {
  width: 100%;
  padding: 0.72rem 1.1rem;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(0, 139, 94, 0.38);
}

.plan-promo__alt {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--blue-cta);
}

.plan-promo__alt:hover {
  color: var(--blue-cta-hover);
}

@media (max-width: 720px) {
  .plan-promo__inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .intro-block .plan-promo__price {
    font-size: 2rem;
  }

  .plan-promo__features li {
    font-size: 0.92rem;
  }

  .plan-promo__btn {
    white-space: normal;
    line-height: 1.35;
  }
}

/* Back to top — minimal circle above WhatsApp */
.go-top-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 450;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(0, 33, 71, 0.14);
  box-shadow: 0 4px 14px rgba(0, 33, 71, 0.12);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    visibility 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.go-top-fab[hidden] {
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px) scale(0.92);
}

.go-top-fab:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.go-top-fab__svg {
  display: block;
  flex-shrink: 0;
}

.go-top-fab:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 33, 71, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.go-top-fab:focus-visible {
  outline: 2px solid var(--blue-cta);
  outline-offset: 2px;
}

/* WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 450;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s;
  text-decoration: none;
}
.whatsapp-fab__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-ring 2s ease infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  text-decoration: none;
}
.whatsapp-fab svg {
  width: 1.85rem;
  height: 1.85rem;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

