* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

:root {
  --primary-color: #00d2ff;
  --accent-blue: #008fa1;
  --bg-dark: #061121;
  --header-offset: 154px;
  --text-main: #ffffff;
  --text-muted: #ccd6f6;
  --dropdown-bg: #ffffff;
  --dropdown-text: #1a2b3c;
  --transition: all 0.3s ease;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(21, 49, 79, 0.08);
}

.top-bar-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  color: #20364f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.top-bar-link:hover {
  color: var(--accent-blue);
  background: rgba(0, 210, 255, 0.05);
}

.top-bar-link i {
  font-size: 15px;
}

.top-bar-link-accent {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 143, 161, 0.28);
  background: rgba(0, 210, 255, 0.09);
  color: #123252;
  font-weight: 700;
}

.top-bar-link-accent:hover {
  background: rgba(0, 210, 255, 0.16);
  color: #0d6f80;
}

.main-header {
  height: 108px;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 46px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(6, 17, 33, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 108px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #15314f;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav .nav-links a {
  text-decoration: none;
  color: #32465d;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: var(--transition);
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
  color: var(--primary-color);
}

.dropdown-container {
  position: relative;
}

.btn-pages {
  background: transparent;
  color: #15314f !important;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(21, 49, 79, 0.28);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-pages:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 143, 161, 0.4);
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dropdown-bg);
  list-style: none;
  padding: 15px 0;
  border-radius: 12px;
  width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 110;
  display: none;
  opacity: 0;
}

.dropdown-menu.show {
  display: block;
  animation: dropdownSlideIn 0.3s forwards ease-out;
}

@keyframes dropdownSlideIn {
  to {
    top: 120%;
    opacity: 1;
  }
}

.dropdown-menu li a {
  color: var(--dropdown-text) !important;
  padding: 12px 25px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background: rgba(0, 210, 255, 0.05);
  color: var(--accent-blue) !important;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent var(--dropdown-bg) transparent;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #15314f;
  font-size: 28px;
  cursor: pointer;
}

.premium-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  background-image: url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center 38%;
  padding-top: var(--header-offset);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 17, 33, 0.88) 18%,
    rgba(6, 17, 33, 0.58) 54%,
    rgba(6, 17, 33, 0.4) 100%
  );
  z-index: 1;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - var(--header-offset));
}

.hero-content {
  max-width: 680px;
  position: relative;
}

.tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-color);
  margin-bottom: 18px;
  display: inline-block;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}

.tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translateY(-50%);
  box-shadow: 16px 0 0 rgba(0, 210, 255, 0.55);
}

h1 {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 18px;
  text-wrap: pretty;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.highlight {
  color: var(--primary-color);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.hero-content p,
.why-card p,
.faq-answer p,
.library-body p,
.testimonial-text,
.footer-brand-copy p,
.about-copy p,
.about-info-card p,
.about-advantage-card p,
.about-book-body p,
.book-details-intro p,
.book-details-body p,
.service-body p,
.contact-text p,
.events-section-header p,
.event-details-summary,
.event-rich-block p,
.event-rich-block li {
  text-align: justify;
  text-justify: inter-word;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-outline {
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 14px 28px rgba(0, 210, 255, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--text-main);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-main);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 20px;
  position: relative;
  right: 0;
  margin-top: 18px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 12;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.scroll-cue-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
}

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

.scroll-cue-wheel {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

.scroll-cue-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.35;
  }
}

.stat-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 18px 40px rgba(3, 10, 22, 0.2);
}

.stat-card i {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.stat-card .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-muted);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.09) 100%
  );
}

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

.home-insights {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 210, 255, 0.08),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
  padding: 110px 0 95px;
  color: #17314d;
}

.home-insights .container {
  max-width: 1360px;
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr) minmax(
      320px,
      0.9fr
    );
  gap: 24px;
  align-items: stretch;
}

.insight-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 49, 79, 0.08);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 22px 60px rgba(14, 34, 56, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-heading {
  margin-bottom: 28px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: #1a2f49;
  font-size: 2rem;
  line-height: 1.1;
  margin: 0;
  text-shadow: none;
}

.section-heading h2 span {
  color: #0e243c;
}

.section-heading:not(.faq-heading)::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    rgba(0, 210, 255, 0.15)
  );
}

.news-list,
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-list,
.event-list,
.video-card {
  flex: 1 1 auto;
}

.news-item,
.event-item,
.video-card,
.section-link,
.calendar-button {
  text-decoration: none;
}

.news-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  transition: var(--transition);
  align-items: start;
}

.news-item:hover,
.event-item:hover {
  transform: translateY(-3px);
  background: rgba(0, 210, 255, 0.05);
}

.news-thumb {
  height: 94px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.news-thumb-certificate {
  background:
    linear-gradient(rgba(6, 17, 33, 0.22), rgba(6, 17, 33, 0.22)),
    url("img/hero-background-clean.jpg");
}

.news-thumb-workshop {
  background:
    linear-gradient(rgba(6, 17, 33, 0.28), rgba(6, 17, 33, 0.28)),
    url("img/hero-background-clean.jpg");
}

.news-thumb-session {
  background:
    linear-gradient(rgba(6, 17, 33, 0.16), rgba(6, 17, 33, 0.16)),
    url("img/hero-background-clean.jpg");
  background-position: center 70%;
}

.news-copy h3,
.event-copy h3,
.video-content h3 {
  color: #17314d;
  font-size: 1rem;
  line-height: 1.32;
  margin: 0;
  text-shadow: none;
}

.meta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #7c8da2;
  font-size: 0.86rem;
  font-weight: 600;
}

.news-stats {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  color: #8a99ab;
  font-size: 0.9rem;
  font-weight: 600;
}

.news-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #113254;
  font-weight: 800;
}

.section-link i {
  color: var(--primary-color);
}

.event-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  transition: var(--transition);
  align-items: start;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
  border: 2px solid rgba(0, 210, 255, 0.7);
  color: #15314f;
  min-height: 92px;
}

.event-date .day {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 800;
}

.event-date .month {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.event-copy p {
  margin: 10px 0 0;
  color: #8392a6;
  font-size: 0.92rem;
  line-height: 1.5;
  text-shadow: none;
}

.calendar-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  align-self: flex-start;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(0, 210, 255, 0.09);
  border: 1px solid rgba(0, 143, 161, 0.22);
  color: #123252;
  font-weight: 800;
  box-shadow: none;
  transition: var(--transition);
}

.calendar-button:hover {
  background: rgba(0, 210, 255, 0.14);
  border-color: rgba(0, 143, 161, 0.34);
  color: #0d6f80;
}

.video-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(8, 142, 152, 0.95), rgba(10, 169, 178, 0.88)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(2, 26, 31, 0.18);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 255, 255, 0.18),
      transparent 18%
    ),
    linear-gradient(145deg, rgba(255, 210, 76, 0.18), transparent 35%);
}

.video-play {
  position: relative;
  z-index: 1;
}

.video-play {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.4rem;
}

.programs-showcase {
  padding: 94px 0 110px;
  background: #ffffff;
}

.programs-showcase .container {
  max-width: 1560px;
}

.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.programs-heading {
  margin-bottom: 0;
}

.programs-heading h2 {
  font-size: 3rem;
  font-weight: 400;
}

.programs-heading h2 span {
  font-weight: 300;
}

.programs-nav {
  display: flex;
  gap: 10px;
}

.programs-nav-btn {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  color: #14304e;
  box-shadow: 0 10px 30px rgba(20, 48, 78, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.programs-nav-btn:hover {
  background: #eff8fe;
  color: var(--accent-blue);
}

.programs-nav-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.programs-slider {
  overflow: hidden;
}

.programs-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.programs-track::-webkit-scrollbar {
  display: none;
}

.program-card {
  min-width: 0;
}

.program-media {
  position: relative;
  display: block;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.program-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 17, 33, 0.12) 0%,
    rgba(6, 17, 33, 0.06) 35%,
    rgba(6, 17, 33, 0.18) 100%
  );
}

.program-media-writing {
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)),
    url("img/hero-background-clean.jpg");
  background-position: center 18%;
}

.program-media-ai {
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("img/hero-background-clean.jpg");
  background-position: center;
}

.program-media-knowledge {
  background:
    linear-gradient(rgba(12, 30, 58, 0.72), rgba(12, 30, 58, 0.72)),
    url("img/hero-background-clean.jpg");
  background-position: center 60%;
}

.program-price,
.program-detail {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-price {
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #12c7dd 0%, #1a9ce3 100%);
  color: #ffffff;
  font-size: 0.95rem;
}

.program-detail {
  top: 24px;
  right: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
}

.program-body {
  padding: 18px 0 0;
}

.program-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  color: #8392a6;
  font-size: 0.92rem;
  font-weight: 700;
}

.program-type {
  color: #14bbd5;
}

.program-date {
  position: relative;
  padding-left: 12px;
}

.program-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(23, 49, 77, 0.18);
  transform: translateY(-50%);
}

.program-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f5b321;
}

.program-card h3 {
  color: #2b2f33;
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
  text-shadow: none;
}

.program-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 7px;
  border-radius: 6px;
  background: #ff6c2f;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  vertical-align: middle;
}

.program-stats {
  display: flex;
  gap: 2px;
  margin-top: 16px;
}

.program-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #f5f7fa;
  color: #8a99ab;
  font-size: 0.92rem;
  font-weight: 700;
}

.why-eventsgate {
  position: relative;
  padding: 108px 0 112px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(0, 210, 255, 0.12),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 78%,
      rgba(22, 137, 223, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #eef6fc 0%, #e6f0f8 100%);
  color: #24364a;
  overflow: hidden;
}

.why-eventsgate::before,
.why-eventsgate::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(19, 138, 198, 0.06);
}

.why-eventsgate::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -80px;
}

.why-eventsgate::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: -70px;
}

.why-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.why-heading {
  margin-bottom: 0;
}

.why-heading h2 {
  font-size: 3rem;
  color: #1d3148;
}

.why-heading h2 span {
  color: #1089c5;
}

.why-intro {
  margin: 0;
  max-width: 540px;
  color: #63788e;
  font-size: 1.02rem;
  line-height: 1.8;
  text-shadow: none;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 137, 197, 0.09);
  box-shadow: 0 18px 38px rgba(28, 63, 96, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.78);
}

.why-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #12c5dd 0%, #1689df 100%);
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 14px 26px rgba(22, 137, 223, 0.2);
}

.why-card h3 {
  margin: 0 0 12px;
  color: #20354c;
  font-size: 1.15rem;
  line-height: 1.35;
  text-shadow: none;
}

.why-card p {
  margin: 0;
  max-width: none;
  color: #667b91;
  font-size: 0.96rem;
  line-height: 1.75;
  text-shadow: none;
}

.articles-showcase {
  padding: 96px 0 60px;
  background: #ffffff;
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.articles-heading,
.committees-heading {
  margin-bottom: 0;
}

.articles-heading h2,
.committees-heading h2 {
  font-size: 3rem;
  color: #21364c;
}

.articles-heading h2 span,
.committees-heading h2 span {
  color: #132944;
}

.articles-nav {
  display: flex;
  gap: 10px;
}

.articles-slider,
.committees-slider {
  overflow: hidden;
}

.articles-track,
.committees-track {
  display: grid;
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.articles-track {
  grid-auto-columns: minmax(300px, 1fr);
}

.committees-track {
  grid-auto-columns: minmax(240px, 320px);
}

.articles-track::-webkit-scrollbar,
.committees-track::-webkit-scrollbar {
  display: none;
}

.article-card,
.committee-card {
  min-width: 0;
}

.article-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(21, 49, 79, 0.08);
  border: 1px solid rgba(21, 49, 79, 0.06);
}

.article-media {
  position: relative;
  display: block;
  min-height: 270px;
  background-size: cover;
  background-position: center;
}

.article-media-research {
  background:
    linear-gradient(rgba(6, 17, 33, 0.08), rgba(6, 17, 33, 0.08)),
    url("img/hero-background-clean.jpg");
}

.article-media-thesis {
  background:
    linear-gradient(rgba(6, 17, 33, 0.18), rgba(6, 17, 33, 0.18)),
    url("img/hero-background-clean.jpg");
  background-position: center 40%;
}

.article-media-ai-tools {
  background:
    linear-gradient(rgba(10, 34, 64, 0.24), rgba(10, 34, 64, 0.24)),
    url("img/hero-background-clean.jpg");
  background-position: center 60%;
}

.article-media-journey {
  background:
    linear-gradient(rgba(255, 174, 52, 0.1), rgba(255, 174, 52, 0.1)),
    url("img/hero-background-clean.jpg");
  background-position: center 75%;
}

.article-body {
  padding: 18px 18px 20px;
}

.article-body h3 {
  margin: 0 0 14px;
  color: #1f334a;
  font-size: 1.15rem;
  line-height: 1.4;
  text-shadow: none;
}

.article-body p {
  margin: 0;
  color: #8c9aac;
  font-size: 0.92rem;
  text-shadow: none;
}

.committees-showcase {
  padding: 34px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.committee-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(21, 49, 79, 0.06);
  box-shadow: 0 20px 44px rgba(15, 36, 58, 0.08);
}

.committee-photo {
  min-height: 320px;
  background-size: cover;
  background-position: center top;
}

.committee-photo-one {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=900&q=80");
}

.committee-photo-two {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80");
}

.committee-photo-three {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=900&q=80");
}

.committee-body {
  padding: 18px 18px 22px;
  text-align: center;
}

.committee-body h3 {
  margin: 0 0 8px;
  color: #1f334a;
  font-size: 1.08rem;
  line-height: 1.45;
  text-shadow: none;
}

.committee-body p {
  margin: 0;
  color: #10b7d3;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: none;
}

.faq-showcase {
  position: relative;
  padding: 104px 0 112px;
  background:
    radial-gradient(
      circle at 10% 85%,
      rgba(0, 210, 255, 0.12),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(17, 135, 205, 0.16),
      transparent 18%
    ),
    linear-gradient(135deg, #234e7a 0%, #176da5 52%, #1590c6 100%);
  overflow: hidden;
}

.faq-showcase::before,
.faq-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.faq-showcase::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -70px;
}

.faq-showcase::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: -60px;
}

.faq-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
}

.faq-heading h2 {
  color: #ffffff;
  font-size: 3.25rem;
}

.faq-heading h2 span {
  color: #d8f6ff;
}

.faq-showcase .section-kicker {
  color: #c9f6ff;
}

.faq-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 34px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.faq-tab {
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: rgba(7, 46, 75, 0.24);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.faq-tab.active,
.faq-tab:hover {
  background: linear-gradient(135deg, #11c6de 0%, #0ea0d8 100%);
}

.faq-panel {
  position: relative;
  z-index: 1;
  display: none;
  max-width: 980px;
  margin: 0 auto;
}

.faq-panel.active {
  display: block;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-item.open {
  background: rgba(9, 53, 84, 0.38);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  color: #c9f6ff;
  transition: var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  max-width: none;
  color: rgba(233, 247, 255, 0.86);
  font-size: 1rem;
  line-height: 1.9;
  text-shadow: none;
}

.library-showcase {
  padding: 96px 0 116px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 210, 255, 0.06),
      transparent 20%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.library-header {
  margin-bottom: 30px;
}

.library-heading {
  margin-bottom: 0;
}

.library-heading h2 {
  color: #23364b;
  font-size: 3rem;
}

.library-heading h2 span {
  color: #102944;
}

.library-slider {
  overflow: hidden;
}

.library-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.library-track::-webkit-scrollbar {
  display: none;
}

.library-card {
  min-width: 0;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(21, 49, 79, 0.06);
  box-shadow: 0 20px 46px rgba(18, 42, 67, 0.08);
}

.library-cover {
  display: block;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.library-cover-relations {
  background:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)),
    url("img/hero-background-clean.jpg");
  background-position: center 35%;
}

.library-cover-prompts {
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url("img/hero-background-clean.jpg");
  background-position: center;
}

.library-cover-power {
  background:
    linear-gradient(rgba(10, 33, 62, 0.18), rgba(10, 33, 62, 0.18)),
    url("img/hero-background-clean.jpg");
  background-position: center 72%;
}

.library-cover-aiwriting {
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    url("img/hero-background-clean.jpg");
  background-position: center 78%;
}

.library-cover-researchskills {
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("img/hero-background-clean.jpg");
  background-position: center 48%;
}

.library-body {
  position: relative;
  padding: 18px 18px 22px;
  min-height: 158px;
}

.library-body h3 {
  margin: 0 0 14px;
  color: #22354b;
  font-size: 1.08rem;
  line-height: 1.5;
  text-shadow: none;
}

.library-body p {
  margin: 0;
  color: #1b2e44;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: none;
}

.library-body p span {
  color: #10b7d3;
}

.library-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff8fe;
  color: #9aa7b5;
  text-decoration: none;
  transition: var(--transition);
}

.library-action:hover {
  background: linear-gradient(135deg, #12c7dd 0%, #1a9ce3 100%);
  color: #ffffff;
}

.trust-showcase {
  padding: 96px 0 112px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 210, 255, 0.07),
      transparent 20%
    ),
    linear-gradient(180deg, #fbfdff 0%, #f1f7fc 100%);
}

.trust-shell {
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 49, 79, 0.06);
  box-shadow: 0 28px 60px rgba(19, 45, 73, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.trust-heading,
.partners-heading {
  margin-bottom: 0;
}

.trust-heading h2,
.partners-heading h2 {
  color: #22364c;
  font-size: 2.85rem;
}

.trust-heading h2 span,
.partners-heading h2 span {
  color: #0f9ac9;
}

.trust-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(22, 146, 219, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.trust-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(22, 146, 219, 0.28);
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  padding: 28px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.testimonial-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.1);
  color: #11b8d4;
  font-size: 1.25rem;
}

.testimonial-text {
  margin: 0 0 22px;
  max-width: none;
  color: #54687b;
  font-size: 1.05rem;
  line-height: 2;
  text-shadow: none;
}

.testimonial-text[dir="rtl"] {
  text-align: right;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-meta [dir="rtl"] {
  text-align: right;
}

.testimonial-meta strong {
  color: #1d3249;
  font-size: 1rem;
}

.testimonial-meta span {
  color: #11b8d4;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partners-block {
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
}

.partners-header {
  margin-bottom: 24px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.partner-card {
  min-height: 110px;
  padding: 18px 14px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 57, 90, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dff6ff 0%, #f5fbff 100%);
  color: #1497ca;
  font-weight: 900;
  letter-spacing: 1px;
}

.partner-name {
  text-align: center;
  color: #607488;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}

.opinion-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.opinion-modal.is-open {
  display: flex;
}

.opinion-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 17, 33, 0.66);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.opinion-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 210, 255, 0.1),
      transparent 34%
    ),
    #ffffff;
  border: 1px solid rgba(21, 49, 79, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.opinion-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f7fb;
  color: #1d3249;
  cursor: pointer;
  transition: var(--transition);
}

.opinion-close:hover {
  background: rgba(0, 210, 255, 0.14);
  color: #0f9ac9;
}

.opinion-dialog-header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding-right: 38px;
}

.opinion-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(21, 49, 79, 0.08);
  box-shadow: 0 12px 26px rgba(19, 45, 73, 0.12);
}

.opinion-dialog-header h2 {
  margin: 8px 0 8px;
  color: #22364c;
  font-size: 2.15rem;
  line-height: 1.1;
}

.opinion-dialog-header p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: none;
}

.opinion-form {
  display: grid;
  gap: 18px;
}

.opinion-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.opinion-field {
  display: grid;
  gap: 8px;
}

.opinion-field span {
  color: #22364c;
  font-size: 0.86rem;
  font-weight: 800;
}

.opinion-field input,
.opinion-field textarea {
  width: 100%;
  border: 1px solid rgba(18, 57, 90, 0.12);
  border-radius: 14px;
  background: #f8fbfe;
  color: #1d3249;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.opinion-field input {
  min-height: 48px;
  padding: 0 14px;
}

.opinion-field textarea {
  min-height: 138px;
  resize: vertical;
  padding: 14px;
  line-height: 1.7;
}

.opinion-field input:focus,
.opinion-field textarea:focus {
  border-color: rgba(15, 154, 201, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.12);
  background: #ffffff;
}

.opinion-check-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
  align-items: end;
}

.opinion-captcha {
  min-height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(246, 255, 190, 0.9), rgba(103, 157, 43, 0.85)),
    #b7d773;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  user-select: none;
}

.opinion-helper {
  margin: -8px 0 0;
  max-width: none;
  color: #607488;
  font-size: 0.9rem;
  line-height: 1.5;
  text-shadow: none;
}

.opinion-form-actions {
  display: flex;
  justify-content: flex-end;
}

.opinion-submit {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(22, 146, 219, 0.2);
}

.opinion-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 210, 255, 0.09);
  color: #0d6f80;
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: none;
}

body.opinion-modal-open {
  overflow: hidden;
}

.categories-showcase {
  padding: 96px 0 112px;
  background: #ffffff;
}

.categories-header {
  text-align: center;
  margin-bottom: 34px;
}

.categories-heading {
  margin-bottom: 0;
}

.categories-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.categories-heading h2 {
  color: #28384d;
  font-size: 3rem;
}

.categories-heading h2 span {
  color: #132944;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  min-height: 182px;
  padding: 28px 18px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 38px rgba(18, 42, 67, 0.07);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 184, 212, 0.24);
  box-shadow: 0 24px 46px rgba(18, 42, 67, 0.1);
}

.category-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.09);
  color: #11b8d4;
  font-size: 1.9rem;
}

.category-code {
  color: #1f334a;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.contact-showcase {
  padding: 98px 0 120px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(0, 210, 255, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 14%,
      rgba(16, 137, 197, 0.09),
      transparent 22%
    ),
    linear-gradient(135deg, #10253c 0%, #153551 52%, #1a4768 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 30px;
  align-items: stretch;
}

.contact-copy,
.contact-map-card {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 56px rgba(6, 18, 33, 0.22);
}

.contact-copy {
  padding: 34px 30px;
}

.contact-heading {
  margin-bottom: 28px;
}

.contact-heading h2 {
  color: #ffffff;
  font-size: 3rem;
}

.contact-heading h2 span {
  color: #c8f6ff;
}

.contact-showcase .section-kicker {
  color: #c8f6ff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #12c7dd 0%, #1a9ce3 100%);
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(26, 156, 227, 0.22);
}

.contact-text h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.45;
  text-shadow: none;
}

.contact-text p {
  margin: 0;
  max-width: none;
  color: rgba(224, 241, 250, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
  text-shadow: none;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #12c7dd 0%, #1689df 100%);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(22, 137, 223, 0.22);
}

.contact-map-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 24px;
  min-height: 0;
  background: #0f2236;
  flex: 1 1 auto;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

.contact-map-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  padding: 0 8px 8px;
}

.contact-map-note strong {
  color: #ffffff;
  font-size: 1rem;
}

.contact-map-note span {
  color: rgba(224, 241, 250, 0.78);
  font-size: 0.92rem;
}

.site-footer {
  padding: 72px 0 30px;
  background:
    radial-gradient(
      circle at top left,
      rgba(18, 199, 221, 0.08),
      transparent 16%
    ),
    linear-gradient(180deg, #f9fcff 0%, #eef5fb 100%);
  border-top: 1px solid rgba(18, 57, 90, 0.06);
}

.footer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(18, 57, 90, 0.08);
}

.footer-brandline {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 42, 67, 0.08);
}

.footer-brand-copy strong {
  display: block;
  margin-bottom: 8px;
  color: #20354c;
  font-size: 1.35rem;
}

.footer-brand-copy p {
  margin: 0;
  max-width: 620px;
  color: #62778d;
  font-size: 0.98rem;
  line-height: 1.8;
  text-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-links h3,
.footer-contact h3,
.footer-social-column h3 {
  margin: 0 0 18px;
  color: #20354c;
  font-size: 1.35rem;
  text-shadow: none;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: #27405b;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
  color: #11b8d4;
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-contact li span {
  color: #7b90a5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1497ca;
  text-decoration: none;
  border: 1px solid rgba(20, 151, 202, 0.12);
  box-shadow: 0 10px 22px rgba(18, 42, 67, 0.06);
}

.footer-socials .social-x i {
  font-size: 0;
}

.footer-socials .social-x::before {
  content: "X";
  color: #1497ca;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  min-width: min(480px, 100%);
}

.footer-form input {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(20, 151, 202, 0.12);
  background: #ffffff;
  color: #20354c;
  font-size: 0.96rem;
  outline: none;
}

.footer-form input::placeholder {
  color: #8aa0b3;
}

.footer-form button {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #12c7dd 0%, #1689df 100%);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.footer-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-shot {
  display: block;
  min-height: 64px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(18, 57, 90, 0.06);
}

.mini-shot-one {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("img/hero-background-clean.jpg");
}

.mini-shot-two {
  background:
    linear-gradient(rgba(6, 17, 33, 0.12), rgba(6, 17, 33, 0.12)),
    url("img/hero-background-clean.jpg");
}

.mini-shot-three {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    url("img/hero-background-clean.jpg");
  background-position: center 70%;
}

.mini-shot-four {
  background:
    linear-gradient(rgba(6, 17, 33, 0.1), rgba(6, 17, 33, 0.1)),
    url("img/hero-background-clean.jpg");
  background-position: center 78%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
  color: #71859a;
  font-size: 0.94rem;
}

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

.footer-bottom-links a {
  color: #71859a;
  text-decoration: none;
}

.about-page .logo {
  text-decoration: none;
}

.about-hero {
  position: relative;
  min-height: 520px;
  padding-top: var(--header-offset);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-dark);
  background-image: url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero .background-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(6, 17, 33, 0.58) 0%,
      rgba(6, 17, 33, 0.78) 100%
    ),
    radial-gradient(circle at 72% 26%, rgba(0, 210, 255, 0.2), transparent 32%);
}

.about-hero-content {
  text-align: center;
}

.about-hero h1 {
  margin: 12px auto 24px;
  max-width: 920px;
  color: #ffffff;
  font-size: 4.4rem;
  line-height: 1.05;
}

.about-hero h1 span {
  color: var(--primary-color);
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-breadcrumb a,
.about-breadcrumb span {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.about-breadcrumb a {
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
}

.about-breadcrumb span {
  background: rgba(255, 255, 255, 0.12);
}

.about-overview {
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 22%),
    #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  align-items: start;
}

.about-main {
  min-width: 0;
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
  gap: 14px;
  margin-bottom: 42px;
}

.about-media-stack {
  display: grid;
  gap: 14px;
}

.about-media {
  min-height: 170px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(6, 17, 33, 0.28), rgba(6, 17, 33, 0.28)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(19, 45, 73, 0.12);
}

.about-media-large {
  min-height: 300px;
  background-position: 45% center;
}

.about-media-one {
  background-position: 60% center;
}

.about-media-two {
  background-position: 72% center;
}

.about-heading h2 {
  color: #22364c;
  font-size: 3rem;
}

.about-heading h2 span {
  color: #0f9ac9;
}

.about-copy {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.about-copy p {
  margin: 0;
  max-width: none;
  color: #40546a;
  font-family: "Roboto", sans-serif;
  font-size: 1.12rem;
  line-height: 1.9;
  text-shadow: none;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-info-card {
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.about-info-card i {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.1);
  color: #11b8d4;
  font-size: 1.2rem;
}

.about-info-card h3 {
  margin-bottom: 10px;
  color: #1d3249;
  font-size: 1.25rem;
}

.about-info-card p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 0.98rem;
  line-height: 1.7;
  text-shadow: none;
}

.about-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.about-signup-panel,
.about-widget {
  padding: 26px;
  border-radius: 8px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
}

.about-signup-panel h2 {
  margin: 8px 0 22px;
  color: #22364c;
  font-size: 2rem;
  line-height: 1.2;
}

.about-signup-panel h2 span {
  display: block;
  color: #0f9ac9;
  font-weight: 400;
}

.about-sidebar-button,
.about-widget-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(22, 146, 219, 0.18);
}

.about-widget-heading h3 {
  margin-bottom: 20px;
  color: #22364c;
  font-size: 1.8rem;
}

.about-widget-heading h3 span {
  color: #0f9ac9;
  font-weight: 400;
}

.about-news-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 57, 90, 0.08);
  color: inherit;
  text-decoration: none;
}

.about-news-item:first-of-type {
  padding-top: 0;
}

.about-news-thumb {
  width: 72px;
  height: 58px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(6, 17, 33, 0.28), rgba(6, 17, 33, 0.28)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.about-news-thumb-alt {
  background-position: 70% center;
}

.about-news-item small,
.about-program-item small {
  display: block;
  margin-bottom: 8px;
  color: #788b9e;
  font-size: 0.8rem;
}

.about-news-item strong,
.about-program-item strong {
  display: block;
  color: #1d3249;
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-widget-link {
  margin-top: 18px;
  min-height: 42px;
  background: transparent;
  color: #0f9ac9;
  box-shadow: none;
  padding: 0;
}

.about-program-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.about-program-item + .about-program-item {
  margin-top: 12px;
}

.about-advantages {
  padding: 96px 0 104px;
  background: #f7fbff;
}

.about-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.about-section-header .about-heading {
  margin-bottom: 0;
}

.about-advantages-slider {
  overflow: hidden;
  min-width: 0;
}

.about-advantages-track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.about-advantages-track::-webkit-scrollbar {
  display: none;
}

.about-advantage-card {
  min-height: 236px;
  padding: 28px 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.06);
  box-shadow: 0 18px 38px rgba(19, 45, 73, 0.06);
}

.about-advantage-card i {
  margin-bottom: 22px;
  color: #11b8d4;
  font-size: 3rem;
}

.about-advantage-card h3 {
  margin-bottom: 12px;
  color: #1d3249;
  font-size: 1.08rem;
}

.about-advantage-card p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 0.98rem;
  line-height: 1.7;
  text-shadow: none;
}

.about-categories {
  padding: 92px 0 104px;
  background: #ffffff;
}

.about-categories-slider {
  overflow: hidden;
  min-width: 0;
}

.about-categories-track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 24%);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-left: 1px solid rgba(18, 57, 90, 0.08);
}

.about-categories-track::-webkit-scrollbar {
  display: none;
}

.about-category-card {
  min-height: 210px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(18, 57, 90, 0.08);
  transition: var(--transition);
}

.about-category-card:hover {
  background: #f8fbfe;
}

.about-category-card i {
  margin-bottom: 10px;
  color: #11b8d4;
  font-size: 3.1rem;
}

.about-category-card strong {
  color: #1d3249;
  font-size: 1.05rem;
  font-weight: 900;
}

.about-category-card span {
  color: #607488;
  font-size: 0.82rem;
  line-height: 1.45;
}

.about-library {
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 24%),
    #f7fbff;
}

.about-library-slider {
  overflow: hidden;
  min-width: 0;
}

.about-library-track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 31%);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.about-library-track::-webkit-scrollbar {
  display: none;
}

.about-book-card {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.about-book-cover {
  position: relative;
  min-height: 320px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.about-book-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(6, 17, 33, 0.68) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%);
}

.about-book-cover span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-book-cover-relations {
  background:
    linear-gradient(135deg, rgba(78, 42, 24, 0.1), rgba(117, 83, 35, 0.2)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.about-book-cover-prompts {
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 168, 132, 0.24), transparent 20%),
    linear-gradient(135deg, #ffffff 0%, #ecfff8 100%);
}

.about-book-cover-prompts span {
  color: #111827;
}

.about-book-cover-power {
  background: linear-gradient(135deg, #20364f 0%, #0d1726 100%);
}

.about-book-cover-aiwriting {
  background: linear-gradient(135deg, #0f9ac9 0%, #1d3249 100%);
}

.about-book-cover-research {
  background: linear-gradient(135deg, #f4fbff 0%, #dff6ff 100%);
}

.about-book-cover-research span {
  color: #1d3249;
}

.about-book-body {
  position: relative;
  min-height: 178px;
  padding: 22px 58px 22px 20px;
}

.about-book-body h3 {
  margin-bottom: 12px;
  color: #1d3249;
  font-size: 1.05rem;
  line-height: 1.45;
}

.about-book-body p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 0.9rem;
  text-shadow: none;
}

.about-book-body p span {
  color: #0f9ac9;
  font-weight: 900;
}

.about-book-action {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.1);
  color: #0f9ac9;
  text-decoration: none;
  transition: var(--transition);
}

.about-book-action:hover {
  background: #0f9ac9;
  color: #ffffff;
}

.books-page .logo {
  text-decoration: none;
}

.book-details-page .logo {
  text-decoration: none;
}

.books-hero {
  min-height: 460px;
}

.book-details-content {
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 22%),
    #ffffff;
}

.book-details-shell {
  max-width: 980px;
  margin: 0 auto;
}

.book-details-cover-wrap {
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
}

.book-details-cover {
  width: min(100%, 720px);
  min-height: auto;
  aspect-ratio: 605 / 427;
  padding: 0;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(19, 45, 73, 0.1);
}

.book-details-cover::before {
  display: none;
}

.book-details-headline {
  margin-bottom: 28px;
  text-align: center;
}

.book-details-headline h2 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 2.15rem;
  line-height: 1.35;
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}

.book-details-meta {
  padding: 16px 0;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
  border-bottom: 1px solid rgba(18, 57, 90, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
}

.book-details-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #607488;
  font-size: 0.88rem;
  font-weight: 700;
}

.book-download-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #28d6e5 0%, #23aee8 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(22, 146, 219, 0.18);
}

.book-request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.book-request-modal.is-open {
  display: flex;
}

.book-request-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.book-request-dialog {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.book-request-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #1d3249;
  cursor: pointer;
}

.book-request-header {
  padding: 66px 32px 58px;
  background: linear-gradient(135deg, #1eabe9 0%, #2bd1c4 100%);
}

.book-request-header h2 {
  margin: 0;
  color: #263d52;
  font-size: 1.95rem;
  line-height: 1.2;
  max-width: 390px;
}

.book-request-form {
  width: min(368px, calc(100% - 48px));
  margin: 52px auto 68px;
  display: grid;
  gap: 10px;
}

.book-request-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 0;
  border-radius: 4px;
  background: #eeeeee;
  color: #1d3249;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.book-request-form input:focus {
  box-shadow: 0 0 0 3px rgba(35, 174, 232, 0.2);
  background: #f7fbff;
}

.book-request-captcha {
  width: 152px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.66)),
    repeating-linear-gradient(-10deg, #ecf5ed 0 8px, #ffffff 8px 16px);
  color: #15875d;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  transform: rotate(-6deg);
  text-decoration: line-through;
}

.book-request-helper {
  margin: -4px 0 4px;
  max-width: none;
  color: #ff3030;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  text-shadow: none;
}

.book-request-submit {
  min-height: 60px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #1eabe9 0%, #25c6bd 100%);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.book-request-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(35, 174, 232, 0.1);
  color: #0d6f80;
  font-size: 0.92rem;
  font-weight: 800;
  text-shadow: none;
}

body.book-request-modal-open {
  overflow: hidden;
}

.book-details-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
}

.book-details-intro {
  margin-bottom: 26px;
  padding: 18px 20px 22px;
  border-radius: 8px;
  border-top: 3px solid #1d4a82;
  background: #f8fbfe;
}

.book-details-intro h3,
.book-details-body h4 {
  margin: 0 0 16px;
  color: #1d3249;
}

.book-details-intro p,
.book-details-body p {
  margin: 0 0 14px;
  max-width: none;
  color: #43576b;
  line-height: 1.9;
  text-shadow: none;
}

.books-catalog {
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 22%),
    #ffffff;
}

.books-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}

.books-main {
  min-width: 0;
}

.books-toolbar {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.books-sort {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1d3249;
  font-size: 0.9rem;
  font-weight: 900;
}

.books-sort select {
  min-height: 42px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(18, 57, 90, 0.1);
  border-radius: 8px;
  background: #f7fbff;
  color: #1d3249;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.books-card {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.books-card .about-book-cover {
  min-height: 230px;
}

.books-card-body {
  position: relative;
  min-height: 178px;
  padding: 20px 56px 22px 18px;
}

.books-card-body h2 {
  margin-bottom: 12px;
  color: #1d3249;
  font-size: 1rem;
  line-height: 1.55;
}

.books-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.books-card-body p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 0.86rem;
  text-shadow: none;
}

.books-card-body p span {
  color: #0f9ac9;
  font-weight: 900;
}

.books-cart {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f9ac9;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(19, 45, 73, 0.1);
  transition: var(--transition);
}

.books-cart:hover {
  background: #0f9ac9;
  color: #ffffff;
}

.books-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.books-widget {
  padding: 26px;
  border-radius: 8px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
}

.books-category-list,
.books-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.books-category-list a,
.books-tags a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #40546a;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.books-category-list a:hover,
.books-tags a:hover {
  background: rgba(0, 210, 255, 0.12);
  color: #0f9ac9;
}

/* Our Journals */
.journals-page .logo {
  text-decoration: none;
}

.journals-hero {
  min-height: 460px;
}

.journals-catalog {
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 24%),
    #ffffff;
}

.journals-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.journals-heading h2 {
  margin: 10px 0 16px;
  color: #1d3249;
  font-size: 2.7rem;
  line-height: 1.15;
}

.journals-heading h2 span {
  color: #0f9ac9;
  font-weight: 400;
}

.journals-heading p {
  margin: 0 auto;
  color: #607488;
  line-height: 1.8;
  text-shadow: none;
}

.journals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 57, 90, 0.08);
  border-radius: 10px;
  background: #f8fbfe;
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.08);
  transition: var(--transition);
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(19, 45, 73, 0.13);
}

.journal-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #e8f0f6;
}

.journal-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.journal-content {
  min-height: 280px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.journal-content h2 {
  margin: 0 0 14px;
  color: #1d3249;
  font-size: 1.15rem;
  line-height: 1.45;
}

.journal-content p {
  margin: 0 0 24px;
  max-width: none;
  color: #607488;
  font-size: 0.91rem;
  line-height: 1.75;
  text-shadow: none;
}

.journal-website {
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.journal-website:hover {
  box-shadow: 0 12px 24px rgba(15, 154, 201, 0.24);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .journals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journals-catalog {
    padding: 72px 0 84px;
  }

  .journals-heading h2 {
    font-size: 2rem;
  }

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

}

.services-page .logo {
  text-decoration: none;
}

.services-hero {
  min-height: 460px;
}

.services-catalog {
  padding: 88px 0 112px;
  background: #ffffff;
}

.services-section-header {
  margin-bottom: 34px;
}

.services-section-header h2 {
  margin: 10px 0 0;
  color: #1d3249;
  font-size: 2.7rem;
  line-height: 1.1;
}

.services-section-header h2 span {
  color: #0f9ac9;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.service-card {
  min-width: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 57, 90, 0.1);
}

.service-media {
  position: relative;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(19, 45, 73, 0.09);
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(6, 17, 33, 0.48));
}

.service-media time {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
}

.service-media-events {
  background:
    linear-gradient(rgba(6, 17, 33, 0.08), rgba(6, 17, 33, 0.08)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.service-media-consulting {
  background: linear-gradient(135deg, #f8fbfe 0%, #dff6ff 100%);
}

.service-media-training {
  background: linear-gradient(135deg, #20364f 0%, #0d1726 100%);
}

.service-media-digital {
  background:
    radial-gradient(circle at 64% 34%, rgba(0, 210, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #09203f 0%, #0d1726 100%);
}

.service-media-publishing {
  background:
    linear-gradient(rgba(6, 17, 33, 0.18), rgba(6, 17, 33, 0.18)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: 65% center;
}

.service-media-research {
  background: linear-gradient(135deg, #ffffff 0%, #ecfff8 100%);
}

.service-body {
  padding-top: 22px;
}

.service-body h2 {
  margin-bottom: 10px;
  color: #1d3249;
  font-size: 1.22rem;
  line-height: 1.35;
}

.service-body p {
  margin: 0 0 18px;
  max-width: none;
  color: #607488;
  font-size: 0.98rem;
  line-height: 1.7;
  text-shadow: none;
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d3249;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.service-body a i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #11b8d4;
  color: #ffffff;
  font-size: 0.75rem;
}

.service-details-page .logo {
  text-decoration: none;
}

.service-details-content {
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 22%),
    #ffffff;
}

.service-details-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.service-details-media {
  min-height: 430px;
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(19, 45, 73, 0.1);
}

.service-details-header,
.service-details-article {
  padding: 34px 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 20px 44px rgba(19, 45, 73, 0.06);
}

.service-details-header h2 {
  margin: 10px 0 16px;
  color: #1d3249;
  font-size: 2.25rem;
  line-height: 1.25;
  max-width: 780px;
}

.service-details-header p {
  margin: 0 0 20px;
  max-width: 780px;
  color: #607488;
  font-size: 1.02rem;
  line-height: 1.8;
  text-shadow: none;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #f2f7fb;
  color: #1d3249;
  font-size: 0.85rem;
  font-weight: 800;
}

.service-details-article h3 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 1.35rem;
}

.service-details-article p,
.service-details-article li {
  margin: 0 0 16px;
  max-width: none;
  color: #43576b;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: none;
}

.contact-page .logo {
  text-decoration: none;
}

.contact-hero {
  min-height: 460px;
}

.contact-social-section,
.contact-form-section,
.contact-details-section {
  padding: 88px 0 96px;
}

.contact-social-section {
  background: #ffffff;
}

.contact-form-section {
  background: #f7fbff;
}

.contact-details-section {
  background: #ffffff;
}

.contact-page-heading {
  margin-bottom: 42px;
  text-align: center;
}

.contact-page-heading .section-kicker {
  justify-content: center;
}

.contact-page-heading h2 {
  color: #343a40;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.contact-page-heading h2 span {
  font-weight: 900;
}

.contact-social-grid {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid rgba(18, 57, 90, 0.08);
}

.contact-social-grid a {
  min-height: 150px;
  padding: 22px 14px;
  border-right: 1px solid rgba(18, 57, 90, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #1d3249;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.contact-social-grid a:hover {
  background: #f8fbfe;
  color: #0f9ac9;
}

.contact-social-grid i {
  color: #11b8d4;
  font-size: 3rem;
}

.contact-social-grid .fa-x-twitter::before {
  content: "X";
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.contact-social-grid span {
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form-card {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.06);
  box-shadow: 0 22px 48px rgba(19, 45, 73, 0.07);
}

.contact-input-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 28px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(18, 57, 90, 0.18);
  background: transparent;
  color: #1d3249;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.contact-form-card input {
  min-height: 48px;
}

.contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #0f9ac9;
}

.contact-verification {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
  align-items: end;
  margin-top: 22px;
}

.contact-verification label {
  display: grid;
}

.contact-captcha {
  min-height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b1634 0%, #0d1726 100%);
  color: #ffb3c7;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  user-select: none;
}

.contact-form-helper {
  margin: 8px 0 30px;
  max-width: none;
  color: #607488;
  font-size: 0.9rem;
  text-shadow: none;
}

.contact-submit {
  min-height: 54px;
  min-width: 180px;
  margin: 0 auto;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(22, 146, 219, 0.2);
}

.contact-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
}

.contact-detail-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-detail-list i {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 210, 255, 0.1);
  color: #11b8d4;
}

.contact-detail-list h3 {
  margin-bottom: 8px;
  color: #1d3249;
  font-size: 1.25rem;
  line-height: 1.35;
}

.contact-detail-list p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: none;
}

.contact-page-map {
  min-width: 0;
}

.blog-page .logo {
  text-decoration: none;
}

.blog-hero {
  min-height: 460px;
}

.blog-catalog {
  padding: 88px 0 112px;
  background: #ffffff;
}

.blog-toolbar {
  margin-bottom: 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 28px;
}

.blog-card {
  min-width: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(18, 57, 90, 0.1);
}

.blog-media {
  position: relative;
  min-height: 340px;
  border-radius: 8px;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(19, 45, 73, 0.09);
}

.blog-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 17, 33, 0.48));
}

.blog-media time {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
}

.blog-media-research {
  background:
    linear-gradient(rgba(6, 17, 33, 0.12), rgba(6, 17, 33, 0.12)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.blog-media-thesis {
  background: linear-gradient(135deg, #20364f 0%, #0d1726 100%);
}

.blog-media-ai {
  background:
    radial-gradient(circle at 70% 38%, rgba(0, 210, 255, 0.35), transparent 25%),
    linear-gradient(135deg, #09203f 0%, #0d1726 100%);
}

.blog-media-pilgrimage {
  background: linear-gradient(135deg, #f6f8fb 0%, #dff6ff 100%);
}

.blog-media-idea {
  background: linear-gradient(135deg, #2c1b13 0%, #0d1726 100%);
}

.blog-media-community {
  background: linear-gradient(135deg, #e8f7ff 0%, #c4efe9 100%);
}

.blog-body {
  padding-top: 22px;
}

.blog-body h2 {
  margin-bottom: 18px;
  color: #1d3249;
  font-size: 1.35rem;
  line-height: 1.28;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d3249;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.blog-read-more i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #11b8d4;
  color: #ffffff;
  font-size: 0.75rem;
}

.blog-details-page .logo {
  text-decoration: none;
}

.article-detail-page {
  padding: 88px 0 112px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%),
    #ffffff;
}

.article-detail-shell {
  max-width: 1120px;
}

.article-detail-cover {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: 0;
  margin-bottom: 54px;
}

.article-detail-image {
  min-height: 520px;
  border-radius: 8px 0 0 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 54px rgba(19, 45, 73, 0.12);
}

.article-detail-title {
  margin-left: -70px;
  margin-bottom: 44px;
  padding: 38px;
  border-radius: 8px;
  background: #ffffff;
  border-left: 5px solid #0f9ac9;
  box-shadow: 0 24px 54px rgba(19, 45, 73, 0.16);
}

.article-detail-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0f9ac9;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-detail-title h2 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 2.35rem;
  line-height: 1.2;
}

.article-detail-title p {
  margin: 0;
  max-width: none;
  color: #607488;
  font-size: 1rem;
  line-height: 1.8;
  text-shadow: none;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 38px;
  align-items: start;
}

.article-detail-body {
  max-width: 760px;
  padding-left: 34px;
  border-left: 1px solid rgba(18, 57, 90, 0.14);
}

.article-detail-body h3 {
  margin: 28px 0 14px;
  color: #1d3249;
  font-size: 1.35rem;
}

.article-detail-body p,
.article-detail-body li {
  margin: 0 0 22px;
  max-width: none;
  color: #3d5368;
  font-family: "Roboto", sans-serif;
  font-size: 1.08rem;
  line-height: 2;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: none;
}

.article-attachment-card {
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: 8px;
  background: #102b4a;
  color: #ffffff;
}

.article-attachment-label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-attachment-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: none;
}

.article-attachment-link i {
  color: #22c7dc;
}

.blog-pagination {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 57, 90, 0.12);
  color: #0f6dbb;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.blog-pagination a.active,
.blog-pagination a:hover {
  background: #0f8ee8;
  color: #ffffff;
  border-color: #0f8ee8;
}

.news-page .logo {
  text-decoration: none;
}

.news-hero {
  min-height: 460px;
}

.news-section-header {
  margin-bottom: 34px;
}

.news-section-header h2 {
  margin: 10px 0 0;
  color: #1d3249;
  font-size: 2.7rem;
  line-height: 1.1;
}

.news-section-header h2 span {
  color: #0f9ac9;
  font-weight: 400;
}

.news-media-cooperation {
  background:
    linear-gradient(rgba(6, 17, 33, 0.18), rgba(6, 17, 33, 0.18)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.news-media-certificate {
  background: linear-gradient(135deg, #20364f 0%, #8a6f48 100%);
}

.news-media-methodology {
  background: linear-gradient(135deg, #f7fbff 0%, #dff6ff 100%);
}

.news-media-analysis {
  background: linear-gradient(135deg, #2c1b13 0%, #0d1726 100%);
}

.news-media-researcher {
  background:
    radial-gradient(circle at 64% 34%, rgba(0, 210, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #09203f 0%, #0d1726 100%);
}

.news-details-page .logo {
  text-decoration: none;
}

.news-details-content {
  padding: 88px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 22%),
    #ffffff;
}

.news-details-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.news-details-media {
  min-height: 430px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(19, 45, 73, 0.1);
}

.news-details-header,
.news-details-article {
  padding: 34px 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 20px 44px rgba(19, 45, 73, 0.06);
}

.news-details-header h2 {
  margin: 10px 0 16px;
  color: #1d3249;
  font-size: 2.25rem;
  line-height: 1.25;
  max-width: 820px;
}

.news-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 18px;
}

.news-details-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #607488;
  font-size: 0.9rem;
  font-weight: 800;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-tags span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #f2f7fb;
  color: #1d3249;
  font-size: 0.85rem;
  font-weight: 800;
}

.news-details-article h3 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 1.35rem;
}

.news-details-article p,
.news-details-article li {
  margin: 0 0 16px;
  max-width: none;
  color: #43576b;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: none;
}

.photos-page .logo {
  text-decoration: none;
}

.photos-hero {
  min-height: 460px;
}

.photos-albums-section {
  padding: 92px 0 112px;
  background: #ffffff;
}

.photos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.photos-main {
  min-width: 0;
}

.photos-album-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.photo-album-card {
  min-width: 0;
}

.photo-album-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #f8fbfe;
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.photo-folder-cover {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(18, 199, 221, 0.82), rgba(22, 146, 219, 0.78)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.photo-folder-cover i {
  color: #ffffff;
  font-size: 4rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.photo-folder-meta {
  padding: 20px 58px 22px 20px;
  display: grid;
  gap: 8px;
}

.photo-folder-meta strong {
  color: #1d3249;
  font-size: 1.08rem;
  line-height: 1.4;
}

.photo-folder-meta small {
  color: #0f9ac9;
  font-size: 0.9rem;
  font-weight: 800;
}

.photo-album-trigger > .fa-arrow-right {
  position: absolute;
}

.photo-album-trigger {
  position: relative;
}

.photo-album-trigger > .fa-arrow-right {
  right: 18px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f9ac9;
  box-shadow: 0 10px 22px rgba(19, 45, 73, 0.1);
}

.photo-album-panel {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
}

.photo-album-panel-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.photo-album-panel-header h3 {
  margin-top: 8px;
  color: #1d3249;
  font-size: 1.7rem;
}

.photo-album-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1d3249;
  cursor: pointer;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.photo-gallery-item {
  min-height: 170px;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-decoration: none;
}

.photo-gallery-item span {
  font-size: 0.9rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.photo-shot-one,
.photo-shot-three,
.photo-shot-five {
  background:
    linear-gradient(180deg, transparent 32%, rgba(6, 17, 33, 0.7)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.photo-shot-two {
  background: linear-gradient(135deg, #20364f 0%, #0d1726 100%);
}

.photo-shot-four {
  background: linear-gradient(135deg, #f7fbff 0%, #0f9ac9 100%);
}

.photo-shot-six {
  background:
    radial-gradient(circle at 70% 35%, rgba(0, 210, 255, 0.35), transparent 24%),
    linear-gradient(135deg, #09203f 0%, #0d1726 100%);
}

.videos-page .logo {
  text-decoration: none;
}

.videos-hero {
  min-height: 460px;
}

.videos-section {
  padding: 92px 0 112px;
  background: #ffffff;
}

.videos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
}

.videos-main {
  min-width: 0;
}

.video-sort-toolbar {
  margin: -6px 0 24px;
  display: flex;
  justify-content: flex-start;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.videos-grid .video-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbfe;
  color: inherit;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.videos-grid .video-card::before {
  content: none;
}

.videos-grid .video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.08);
}

.videos-grid .video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 33, 0.06) 0%, rgba(6, 17, 33, 0.56) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 56px
    );
}

.videos-grid .video-thumb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.videos-grid .video-thumb i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0f9ac9;
  font-size: 1rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.video-info {
  padding: 18px 18px 20px;
}

.video-info time {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0f9ac9;
  font-size: 0.9rem;
  font-weight: 800;
}

.video-info h3 {
  color: #1d3249;
  font-size: 1rem;
  line-height: 1.45;
}

.video-thumb-one,
.video-thumb-two,
.video-thumb-six {
  background:
    linear-gradient(135deg, rgba(18, 199, 221, 0.28), rgba(6, 17, 33, 0.35)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.video-thumb-three {
  background: linear-gradient(135deg, #f7fbff 0%, #a8e9f4 100%);
}

.video-thumb-four {
  background: linear-gradient(135deg, #3b1634 0%, #0d1726 100%);
}

.video-thumb-five,
.video-thumb-seven {
  background: linear-gradient(135deg, #f5f4fb 0%, #bfc7e8 100%);
}

.video-thumb-eight,
.video-thumb-nine {
  background: linear-gradient(135deg, #008fa1 0%, #0d1726 100%);
}

.faq-page .logo {
  text-decoration: none;
}

.faq-hero-page {
  min-height: 460px;
}

.faq-page-section {
  padding: 92px 0 112px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.07), transparent 24%),
    #ffffff;
}

.faq-page-shell {
  max-width: 980px;
}

.faq-page-title {
  margin-bottom: 28px;
}

.faq-page .faq-tabs {
  justify-content: flex-start;
  margin-bottom: 30px;
}

.faq-page-panels {
  border-radius: 8px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
  overflow: hidden;
}

.faq-page .faq-panel {
  padding: 10px;
}

.faq-page .faq-item {
  border-radius: 8px;
  background: #ffffff;
}

.faq-page .faq-item + .faq-item {
  margin-top: 10px;
}

.faq-page .faq-question {
  color: #1d3249;
}

.faq-page .faq-item.open .faq-question {
  color: #0f9ac9;
}

.faq-page .faq-answer p {
  color: #40546a;
}

.events-page .logo {
  text-decoration: none;
}

.event-details-page .logo {
  text-decoration: none;
}

.events-hero {
  min-height: 460px;
}

.event-details-hero {
  min-height: 460px;
}

.event-details-content {
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 24%),
    #ffffff;
}

.event-details-shell {
  max-width: 920px;
  margin: 0 auto;
}

.event-details-header-card {
  margin-bottom: 28px;
  padding: 36px 40px;
  border-radius: 12px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 20px 44px rgba(19, 45, 73, 0.08);
}

.event-details-kicker {
  margin-bottom: 14px;
  color: #0f9ac9;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-details-header-card h2 {
  margin: 0 0 18px;
  color: #1d3249;
  font-size: 2rem;
  line-height: 1.35;
  max-width: 780px;
  text-wrap: pretty;
}

.event-details-summary {
  max-width: 780px;
  margin: 0 0 22px;
  color: #607488;
  font-size: 1.02rem;
  line-height: 1.8;
  text-shadow: none;
}

.event-details-topbar {
  margin-bottom: 20px;
  padding: 20px 22px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
}

.event-details-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.event-details-price span {
  color: #607488;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-details-price strong {
  color: #11afd8;
  font-size: 2rem;
  font-weight: 900;
}

.event-details-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

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

.event-details-enroll {
  width: 190px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0f9ac9, #1fd0d8);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.event-details-payment {
  width: 190px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 154, 201, 0.22);
  color: #0f9ac9;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 42, 67, 0.04);
}

.event-details-payment i {
  color: #0f9ac9;
}

.event-details-stats {
  margin-bottom: 22px;
  padding: 0 6px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  border-bottom: 1px solid rgba(18, 57, 90, 0.08);
}

.event-details-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f9ac9;
  font-size: 0.95rem;
  font-weight: 800;
}

.event-details-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-details-meta-card {
  min-width: 160px;
  flex: 1 1 160px;
  padding: 18px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
}

.event-details-meta-card i {
  color: #0f9ac9;
  font-size: 1rem;
}

.event-details-meta-card span {
  color: #607488;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-details-meta-card strong {
  color: #1d3249;
  font-size: 1rem;
  font-weight: 800;
}

.event-details-article {
  padding: 36px 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 20px 44px rgba(19, 45, 73, 0.06);
}

.event-files-card {
  padding: 34px 40px 36px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 20px 44px rgba(19, 45, 73, 0.06);
}

.event-rich-block + .event-rich-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
}

.event-rich-block h3 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 1.35rem;
}

.event-files-card h3 {
  margin: 0 0 16px;
  color: #1d3249;
  font-size: 1.35rem;
}

.event-rich-block p,
.event-rich-block li {
  color: #43576b;
  font-size: 1rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  text-shadow: none;
}

.event-rich-block p {
  margin: 0 0 16px;
  max-width: none;
}

.event-rich-block ul {
  margin: 0;
  padding-left: 20px;
}

.event-files-list {
  display: grid;
  gap: 14px;
}

.event-file-link {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  color: #1d3249;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.event-file-link i {
  color: #0f9ac9;
  font-size: 1.05rem;
}

.events-current,
.events-previous,
.events-articles {
  padding: 92px 0 108px;
}

.events-current {
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 24%),
    #ffffff;
}

.events-previous {
  background: #f7fbff;
}

.events-articles {
  background: #ffffff;
}

.events-section-header {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.events-section-header .about-heading {
  margin-bottom: 0;
}

.events-section-header .about-heading h2 {
  white-space: nowrap;
}

.events-section-header p {
  max-width: 520px;
  margin: 0;
  color: #607488;
  font-size: 1rem;
  line-height: 1.7;
  text-shadow: none;
}

.events-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.events-catalog-main {
  min-width: 0;
}

.current-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.events-filter-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.events-filter-box,
.events-category-tags {
  padding: 26px;
  border-radius: 8px;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.06);
}

.events-filter-box h2,
.events-category-tags h3 {
  margin-bottom: 22px;
  color: #1d3249;
  font-size: 1.7rem;
  line-height: 1.18;
}

.events-filter-box h2 span,
.events-category-tags h3 span {
  color: #0f9ac9;
  font-weight: 400;
}

.events-filter-box label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.events-filter-box label span {
  color: #1d3249;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.events-filter-box select,
.events-filter-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(18, 57, 90, 0.08);
  border-radius: 8px;
  background: #ffffff;
  color: #40546a;
  font: inherit;
  padding: 0 12px;
  outline: none;
}

.events-filter-box button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #12c7dd 0%, #1692db 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.events-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.events-category-tags h3 {
  width: 100%;
}

.events-category-tags button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(18, 57, 90, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #607488;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.events-category-tags button.active {
  background: #0f9ac9;
  color: #ffffff;
  border-color: #0f9ac9;
}

.events-empty-message {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 8px;
  background: #f8fbfe;
  color: #607488;
  border: 1px solid rgba(18, 57, 90, 0.08);
}

.current-event-card {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fbfe;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.08);
}

.current-event-media {
  position: relative;
  min-height: 190px;
  display: block;
  background-size: cover;
  background-position: center;
}

.current-event-media::before,
.archive-event-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(6, 17, 33, 0.6));
}

.event-media-writing,
.archive-event-one,
.archive-event-four {
  background:
    linear-gradient(135deg, rgba(18, 199, 221, 0.18), rgba(6, 17, 33, 0.28)),
    url("img/hero-background-clean.jpg");
  background-size: cover;
  background-position: center;
}

.event-media-ai,
.archive-event-two,
.archive-event-five {
  background: linear-gradient(135deg, #09203f 0%, #0d1726 100%);
}

.event-media-knowledge,
.archive-event-three,
.archive-event-six {
  background: linear-gradient(135deg, #0f9ac9 0%, #1d3249 100%);
}

.event-status,
.program-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  background: #ff5b14;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.current-event-body,
.archive-event-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
}

.event-meta-row span {
  color: #607488;
  font-size: 0.86rem;
  font-weight: 700;
}

.event-meta-row span + span {
  position: relative;
  padding-left: 14px;
}

.event-meta-row span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(15, 154, 201, 0.5);
  transform: translateY(-50%);
}

.current-event-body h2,
.archive-event-body h3 {
  margin: 0;
  color: #1d3249;
  font-size: 1.03rem;
  line-height: 1.45;
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}

.event-fee-row {
  padding-top: 14px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
  color: #0f9ac9;
  font-size: 0.96rem;
  font-weight: 900;
}

.event-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 57, 90, 0.08);
  color: #0f9ac9;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: auto;
}

.previous-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.archive-event-card {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 57, 90, 0.08);
  box-shadow: 0 18px 42px rgba(19, 45, 73, 0.07);
}

.archive-event-media {
  position: relative;
  display: block;
  min-height: 190px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1100px) {
  :root {
    --header-offset: 178px;
  }

  .top-bar-row {
    justify-content: space-between;
  }

  .top-bar-link {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
    padding: 0 14px;
    font-size: 13px;
  }

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

  .main-nav {
    position: relative;
  }

  .main-nav.menu-open .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: calc(var(--header-offset) + 10px);
    right: 16px;
    left: auto;
    z-index: 130;
    width: min(300px, calc(100vw - 32px));
    padding: 12px;
    border-radius: 18px;
    background: rgba(6, 17, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .main-nav.menu-open .nav-links li {
    width: 100%;
  }

  .main-nav.menu-open .nav-links a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
  }

  .main-nav.menu-open .dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.menu-open .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }

  .main-nav.menu-open .dropdown-menu::before {
    display: none;
  }

  .logo-text {
    display: none;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
    padding: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-hero h1 {
    font-size: 3.4rem;
  }

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

  .about-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-signup-panel {
    grid-column: 1 / -1;
  }

  .about-advantages-track {
    grid-auto-columns: minmax(280px, 48%);
  }

  .about-categories-track {
    grid-auto-columns: minmax(210px, 32%);
  }

  .about-library-track {
    grid-auto-columns: minmax(285px, 48%);
  }

  .books-layout {
    grid-template-columns: 1fr;
  }

  .book-details-content {
    padding: 76px 0 84px;
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .books-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .books-sidebar .books-widget:last-child {
    grid-column: 1 / -1;
  }

  .book-details-headline h2 {
    font-size: 1.85rem;
  }

  .services-grid {
    gap: 28px 22px;
  }

  .service-media {
    min-height: 260px;
  }

  .contact-details-layout {
    grid-template-columns: 1fr;
  }

  .contact-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-media {
    min-height: 300px;
  }

  .photos-layout {
    grid-template-columns: 1fr;
  }

  .photos-sidebar {
    position: static;
  }

  .videos-layout {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-catalog-layout {
    grid-template-columns: 1fr;
  }

  .events-filter-sidebar {
    position: static;
  }

  .previous-events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-hero {
    height: auto;
    min-height: 100vh;
    padding: var(--header-offset) 0 60px;
    background-position: center 30%;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 42px;
  }

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

  p {
    max-width: 100%;
  }

  .stats-grid {
    margin-top: 0;
  }

  .scroll-cue {
    bottom: 18px;
  }

  .cta-actions {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    position: static;
    transform: none;
  }

  .home-insights {
    padding: 88px 0 76px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .video-card {
    min-height: 360px;
  }

  .programs-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .programs-heading h2 {
    font-size: 2.4rem;
  }

  .programs-track {
    grid-auto-columns: minmax(300px, 82vw);
  }

  .why-eventsgate {
    padding: 86px 0 90px;
  }

  .why-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-heading h2 {
    font-size: 2.45rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .articles-heading h2,
  .committees-heading h2 {
    font-size: 2.35rem;
  }

  .articles-track {
    grid-auto-columns: minmax(300px, 82vw);
  }

  .committees-track {
    grid-auto-columns: minmax(240px, 58vw);
  }

  .faq-showcase {
    padding: 86px 0 92px;
  }

  .faq-heading h2 {
    font-size: 2.65rem;
  }

  .library-heading h2 {
    font-size: 2.4rem;
  }

  .library-track {
    grid-auto-columns: minmax(285px, 72vw);
  }

  .trust-shell {
    padding: 26px;
  }

  .trust-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-heading h2,
  .partners-heading h2 {
    font-size: 2.35rem;
  }

  .testimonials-track {
    grid-auto-columns: minmax(320px, 82vw);
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .opinion-field-grid {
    grid-template-columns: 1fr;
  }

  .categories-heading h2 {
    font-size: 2.45rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-heading h2 {
    font-size: 2.45rem;
  }

  .contact-map-frame iframe {
    min-height: 420px;
  }

  .footer-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-form {
    min-width: 100%;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 144px;
  }

  .top-bar-row {
    min-height: 64px;
    flex-direction: column;
    align-items: stretch;
  }

  .top-bar-link {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .top-bar-link-accent {
    min-height: 34px;
  }

  .main-header {
    height: 80px;
    top: 64px;
  }

  .premium-hero {
    background-position: 62% center;
  }

  .nav-row {
    min-height: 80px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
    padding: 0;
  }

  h1 {
    font-size: 3.1rem;
    margin-bottom: 15px;
  }

  p {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .cta-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .main-nav.menu-open .nav-links {
    left: 16px;
    right: 16px;
    transform: none;
    top: calc(var(--header-offset) + 10px);
    width: auto;
  }

  .about-hero {
    min-height: 470px;
  }

  .about-hero h1 {
    font-size: 2.75rem;
  }

  .about-breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-overview {
    padding: 76px 0 84px;
  }

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

  .about-media-large,
  .about-media {
    min-height: 220px;
  }

  .about-info-grid,
  .about-sidebar {
    grid-template-columns: 1fr;
  }

  .about-heading h2 {
    font-size: 2.1rem;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .about-advantages {
    padding: 76px 0 84px;
  }

  .about-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-advantages-track {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .about-categories {
    padding: 76px 0 84px;
  }

  .about-categories-track {
    grid-auto-columns: minmax(170px, 48vw);
  }

  .about-library {
    padding: 76px 0 84px;
  }

  .about-library-track {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .about-book-cover {
    min-height: 270px;
  }

  .books-catalog {
    padding: 76px 0 84px;
  }

  .books-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .books-sort,
  .books-sort select {
    width: 100%;
  }

  .books-sort {
    align-items: stretch;
    flex-direction: column;
  }

  .books-grid,
  .books-sidebar {
    grid-template-columns: 1fr;
  }

  .books-card .about-book-cover {
    min-height: 260px;
  }

  .book-details-cover {
    width: min(100%, 420px);
    min-height: auto;
  }

  .book-details-headline h2 {
    font-size: 1.55rem;
  }

  .book-details-meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .book-download-btn {
    width: 100%;
    min-height: 42px;
    order: 4;
  }

  .book-details-meta span {
    width: 100%;
  }

  .book-request-modal {
    padding: 14px;
  }

  .book-request-dialog {
    max-height: calc(100vh - 28px);
  }

  .book-request-header {
    padding: 56px 24px 46px;
  }

  .book-request-header h2 {
    font-size: 1.65rem;
  }

  .book-request-form {
    width: calc(100% - 36px);
    margin: 34px auto 44px;
  }

  .book-details-article {
    padding: 22px 18px;
  }

  .services-catalog {
    padding: 76px 0 84px;
  }

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

  .service-details-content {
    padding: 76px 0 84px;
  }

  .service-details-media {
    min-height: 260px;
  }

  .service-details-header,
  .service-details-article {
    padding: 28px 24px;
  }

  .service-details-header h2 {
    font-size: 1.75rem;
  }

  .contact-social-section,
  .contact-form-section,
  .contact-details-section {
    padding: 76px 0 84px;
  }

  .contact-page-heading h2 {
    font-size: 2.35rem;
  }

  .contact-social-grid,
  .contact-input-grid,
  .contact-verification {
    grid-template-columns: 1fr;
  }

  .contact-social-grid {
    border-left: 0;
  }

  .contact-social-grid a {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 57, 90, 0.08);
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .blog-catalog {
    padding: 76px 0 84px;
  }

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

  .blog-media {
    min-height: 260px;
  }

  .article-detail-page {
    padding: 76px 0 84px;
  }

  .article-detail-cover {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .article-detail-image {
    min-height: 300px;
    border-radius: 8px 8px 0 0;
  }

  .article-detail-title {
    margin: 0;
    padding: 28px 24px;
    border-left: 0;
    border-top: 5px solid #0f9ac9;
    border-radius: 0 0 8px 8px;
  }

  .article-detail-title h2 {
    font-size: 1.75rem;
  }

  .article-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-detail-body {
    padding-left: 0;
    border-left: 0;
  }

  .article-attachment-card {
    position: static;
  }

  .news-details-content {
    padding: 76px 0 84px;
  }

  .news-details-media {
    min-height: 260px;
  }

  .news-details-header,
  .news-details-article {
    padding: 28px 24px;
  }

  .news-details-header h2 {
    font-size: 1.75rem;
  }

  .blog-body h2 {
    font-size: 1.18rem;
  }

  .photos-albums-section {
    padding: 76px 0 84px;
  }

  .photos-album-grid,
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-album-panel {
    padding: 22px 18px;
  }

  .videos-section {
    padding: 76px 0 84px;
  }

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

  .video-thumb {
    min-height: auto;
  }

  .faq-page-section {
    padding: 76px 0 84px;
  }

  .faq-page .faq-tabs {
    justify-content: flex-start;
  }

  .events-current,
  .events-previous,
  .events-articles {
    padding: 76px 0 84px;
  }

  .event-details-content {
    padding: 76px 0 84px;
  }

  .events-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-section-header .about-heading h2 {
    white-space: normal;
  }

  .event-details-header-card,
  .event-details-article,
  .event-files-card {
    padding: 28px 24px;
  }

  .event-details-header-card h2 {
    font-size: 1.7rem;
  }

  .event-details-topbar,
  .event-details-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-details-actions {
    width: 100%;
    align-items: stretch;
  }

  .event-details-enroll,
  .event-details-payment {
    width: 100%;
    justify-content: center;
  }

  .current-event-media {
    min-height: 190px;
  }

  .previous-events-grid {
    grid-template-columns: 1fr;
  }

  .current-events-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .scroll-cue {
    display: none;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-card .num {
    font-size: 1.5rem;
  }

  .stat-card i {
    font-size: 24px;
  }

  .home-insights {
    padding: 72px 0 64px;
  }

  .insight-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .news-item,
  .event-item {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    min-height: 150px;
  }

  .event-date {
    width: 92px;
  }

  .video-card {
    min-height: 320px;
    padding: 22px;
  }

  .programs-showcase {
    padding: 74px 0 80px;
  }

  .programs-heading h2 {
    font-size: 1.95rem;
  }

  .programs-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .programs-track {
    grid-auto-columns: minmax(285px, 88vw);
    gap: 18px;
  }

  .program-media {
    min-height: 270px;
  }

  .why-eventsgate {
    padding: 72px 0 74px;
  }

  .why-heading h2 {
    font-size: 2rem;
  }

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

  .why-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .articles-showcase {
    padding: 74px 0 42px;
  }

  .articles-heading h2,
  .committees-heading h2 {
    font-size: 2rem;
  }

  .articles-track {
    grid-auto-columns: minmax(285px, 88vw);
    gap: 18px;
  }

  .committees-track {
    grid-auto-columns: minmax(230px, 78vw);
    gap: 18px;
  }

  .article-media {
    min-height: 230px;
  }

  .committee-photo {
    min-height: 280px;
  }

  .committees-showcase {
    padding: 28px 0 84px;
  }

  .faq-showcase {
    padding: 74px 0 78px;
  }

  .faq-heading h2 {
    font-size: 2.1rem;
  }

  .faq-tabs {
    grid-template-columns: 1fr;
  }

  .faq-tab {
    text-align: center;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .library-showcase {
    padding: 76px 0 84px;
  }

  .library-heading h2 {
    font-size: 2rem;
  }

  .library-track {
    grid-auto-columns: minmax(270px, 84vw);
    gap: 18px;
  }

  .library-cover {
    min-height: 250px;
  }

  .library-body {
    min-height: 144px;
  }

  .trust-showcase {
    padding: 74px 0 84px;
  }

  .trust-shell {
    padding: 18px;
    border-radius: 26px;
  }

  .trust-heading h2,
  .partners-heading h2 {
    font-size: 2rem;
  }

  .trust-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .trust-cta {
    width: 100%;
  }

  .testimonials-track {
    grid-auto-columns: minmax(280px, 88vw);
    gap: 18px;
  }

  .testimonial-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .testimonial-text {
    font-size: 0.98rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .opinion-modal {
    padding: 14px;
  }

  .opinion-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 18px;
    border-radius: 22px;
  }

  .opinion-dialog-header {
    grid-template-columns: 1fr;
    padding-right: 46px;
  }

  .opinion-logo {
    width: 58px;
    height: 58px;
  }

  .opinion-dialog-header h2 {
    font-size: 1.85rem;
  }

  .opinion-check-row {
    grid-template-columns: 1fr;
  }

  .opinion-form-actions {
    justify-content: stretch;
  }

  .opinion-submit {
    width: 100%;
  }

  .categories-showcase {
    padding: 76px 0 84px;
  }

  .categories-heading h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    min-height: 156px;
    border-radius: 22px;
  }

  .contact-showcase {
    padding: 78px 0 88px;
  }

  .contact-copy,
  .contact-map-card {
    border-radius: 24px;
  }

  .contact-copy {
    padding: 22px 18px;
  }

  .contact-heading h2 {
    font-size: 2rem;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-map-frame iframe {
    min-height: 320px;
  }

  .site-footer {
    padding: 74px 0 28px;
  }

  .footer-brandline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-form {
    grid-template-columns: 1fr;
  }

  .footer-mini-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}
