* {
  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);
}

.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: 18px;
  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: balance;
  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);
}

.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/photo-1505373877841-8d25f7d46678.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/photo-1505373877841-8d25f7d46678.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-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;
  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/photo-1505373877841-8d25f7d46678.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/photo-1505373877841-8d25f7d46678.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/photo-1505373877841-8d25f7d46678.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;
  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/photo-1505373877841-8d25f7d46678.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/photo-1505373877841-8d25f7d46678.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-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.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-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/photo-1505373877841-8d25f7d46678.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/photo-1505373877841-8d25f7d46678.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;
}

@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: absolute;
    top: calc(100% + 22px);
    right: 0;
    width: min(300px, 78vw);
    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;
  }

  .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: 50%;
    right: auto;
    transform: translateX(-50%);
    top: calc(100% + 18px);
    width: min(280px, calc(100vw - 32px));
  }

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