:root {
  --nav-bg: #083f7a;
  --nav-bg-deep: #062f5a;
  --brand-orange: #ff9800;
  --brand-orange-deep: #e78800;
  --text: #0b1b34;
  --muted: #4e5d6f;
  --muted-strong: #425366;
  --surface: #f3f4f6;
  --line: #dce2ea;
  --footer-bg: #0a1735;
  --shadow-soft: 0 6px 18px rgba(12, 35, 66, 0.08);
  --shadow-med: 0 10px 26px rgba(12, 35, 66, 0.12);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background-color: var(--surface);
  background-image: linear-gradient(95deg, rgba(7, 49, 95, 0.2), rgba(7, 49, 95, 0.16)),
    url("assets/gimpa-campus-home.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a { color: inherit; }

body.plain-bg {
  background: #fff;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 52px 0; }

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.center { text-align: center; }
.list-plain { margin: 0; padding: 0; list-style: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 80px;
}

.brand { min-width: 210px; }

.brand-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-sub {
  margin-top: 3px;
  font-size: 13px;
  color: #ffc76e;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
}

.nav-links a,
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
  color: #dfeaf9;
  font-weight: 500;
  font-size: 17px;
  padding: 0 2px;
  white-space: nowrap;
  line-height: 1;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-drop-toggle:hover,
.nav-drop-toggle.active {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.nav-drop-toggle {
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--nav-bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-med);
  z-index: 30;
}

.nav-dropdown-menu a {
  padding: 8px 6px;
  font-size: 15px;
  border-bottom: 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  min-height: 40px;
  border-radius: 10px;
  white-space: nowrap;
  line-height: 1.1;
}

.crest {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  border: 2px solid #f0f4fb;
  background: #f7fbff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-lg {
  padding: 15px 24px;
  font-size: 28px;
}

.btn-accent {
  background: var(--brand-orange);
  color: #fff;
}

.btn-accent:hover { background: var(--brand-orange-deep); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-outline {
  background: #fff;
  color: #0c3b70;
  border-color: #cad5e3;
}

.downloads-btn {
  background: #0c4a8f;
  color: #fff;
  border-color: #0c4a8f;
}

.downloads-btn:hover {
  background: #083f7a;
}

.hero {
  position: relative;
  color: #fff;
  background-image: linear-gradient(95deg, rgba(7, 49, 95, 0.32), rgba(7, 49, 95, 0.28)),
    url("assets/gimpa-campus-home.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 58, 110, 0.28), rgba(11, 58, 110, 0.18));
}

.hero-content {
  position: relative;
  padding: 108px 20px 114px;
  max-width: 840px;
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 152, 0, 0.4);
  background: rgba(9, 45, 86, 0.7);
  color: #ffd18b;
  padding: 10px 16px;
  font-size: 16px;
}

.hero h1 {
  margin: 18px 0 14px;
  line-height: 1.02;
}

.h1-top {
  display: block;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 90px);
  letter-spacing: -0.025em;
}

.h1-bottom {
  display: block;
  font-weight: 800;
  font-size: clamp(52px, 7vw, 102px);
  color: var(--brand-orange);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 860px;
  margin: 0;
  color: #deebfb;
  font-size: 17px;
  line-height: 1.6;
}

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

.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 13px;
  backdrop-filter: blur(4px);
}

.info-card .icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #ffb23f;
}

.info-card .label { color: #dce8f8; font-size: 12px; }
.info-card .value { margin-top: 2px; color: #fff; font-size: 25px; font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 14px;
}

.hero-cta .btn-lg {
  padding: 11px 18px;
  font-size: 18px;
}

.home-about-section {
  background: #fff;
}

.organizer-contact {
  margin-top: 14px;
  max-width: 680px;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(9, 45, 86, 0.6);
  padding: 14px 16px;
}

.organizer-contact h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.organizer-contact p,
.organizer-contact li {
  color: #deebfb;
  line-height: 1.5;
}

.organizer-contact ul {
  margin: 0;
  padding-left: 18px;
}

.split {
  display: grid;
  align-items: center;
  gap: 34px;
  grid-template-columns: 1.06fr 1fr;
}

.split .photo {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-med);
}

.split .photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.split h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.split p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.kpis {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kpi {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.kpi .bar {
  width: 4px;
  min-height: 52px;
  background: var(--brand-orange);
  border-radius: 99px;
}

.kpi .num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: #0d3f76;
}

.kpi .label {
  margin-top: 5px;
  color: #4f5f72;
  font-size: 16px;
}

.card-grid { display: grid; gap: 26px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e9eef5;
  color: #0f477f;
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-card h4 {
  margin: 0 0 8px;
  font-size: 26px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.speaker-card {
  background: #f5f7fb;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e6ee;
  box-shadow: var(--shadow-soft);
}

.speaker-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}

.speaker-body { padding: 20px 22px 18px; }
.speaker-body h3 { margin: 0; font-size: 24px; }

.orange {
  margin-top: 8px;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 16px;
}

.org {
  margin-top: 6px;
  color: var(--muted-strong);
  font-size: 15px;
}

.topic {
  margin-top: 14px;
  border-radius: 10px;
  background: #e9edf4;
  padding: 12px;
  color: #2a3950;
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e4e9f1;
  color: #617086;
  font-size: 14px;
  font-weight: 600;
}

.day { margin: 0 0 34px; }
.day h3 { margin: 0; font-size: 36px; letter-spacing: -0.02em; }
.day .rule {
  height: 3px;
  border-radius: 99px;
  background: #d79b2f;
  margin: 14px 0 20px;
}

.agenda { display: grid; gap: 16px; }

.slot {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 12px;
}

.time { font-size: 28px; color: #3f4c5d; }

.badge {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #d9dee6;
  background: #f3f5f8;
  color: #435265;
}

.badge.keynote { border-color: #c9d7e7; background: #e8f0f9; color: #184a77; }
.badge.workshop { border-color: #f3d7a4; background: #fff4df; color: #a76600; }
.badge.general { border-color: #d9dee6; background: #f3f5f8; color: #3f4d5e; }
.badge.showcase,
.badge.panel { border-color: #b8ddc7; background: #e8f8ee; color: #2d7a4b; }

.content { grid-column: 3; }
.title { font-size: 30px; font-weight: 700; line-height: 1.3; }
.sub,
.meta,
.loc { margin-top: 6px; color: var(--muted-strong); font-size: 16px; }

.tier {
  text-align: center;
  margin: 22px 0 10px;
  font-size: 34px;
}

.sponsor-grid {
  display: grid;
  gap: 18px;
  margin: 14px 0 32px;
}

.sponsor-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sponsor-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sponsor-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sponsor-card {
  position: relative;
  height: 164px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid #d2d9e2;
  background: #f6f8fb;
  color: #4d5d71;
  font-weight: 800;
  font-size: 52px;
}

.sponsor-card .sub {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: #4d5d71;
  font-weight: 500;
}

.sponsor-card.platinum { background: #f1f5fa; color: #0c4781; }
.sponsor-card.gold { background: #fff9ef; border-color: #eed4a3; color: #ff9800; }

.cta-band {
  margin-top: 30px;
  background: linear-gradient(95deg, #083f7a, #0c4a8f);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  padding: 54px 26px;
}

.cta-band h3 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.2;
}

.cta-band p {
  margin: 12px 0 22px;
  color: #d8e5f7;
  font-size: 18px;
}

.site-footer {
  margin-top: 56px;
  background: var(--footer-bg);
  color: #dbe6f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 42px 20px 30px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #fff;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: #becbe0;
  text-decoration: none;
  line-height: 1.6;
  font-size: 14px;
}

.footer-grid .list-plain li + li { margin-top: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0 24px;
  color: #aab9d1;
  font-size: 14px;
}

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

.content-stack {
  display: grid;
  gap: 20px;
}

.info-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.info-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #0d3f76;
}

.info-panel p,
.info-panel li {
  font-size: 15px;
  line-height: 1.6;
  color: #2f3e53;
}

.info-panel ul {
  margin: 0;
  padding-left: 22px;
}

.institution-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 12px;
}

.institution-hero .hero-overlay {
  background: linear-gradient(100deg, rgba(11, 58, 110, 0.62), rgba(11, 58, 110, 0.52));
}

.institution-hero .section-header {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 44px 24px;
}

.institution-hero .section-header h2 {
  color: #fff;
}

.institution-hero .section-header p {
  max-width: 980px;
  color: #e3eefb;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d9e2d0;
}

.budget-table th,
.budget-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #d9e2d0;
}

.budget-table thead th {
  background: #6fb617;
  color: #fff;
  font-weight: 700;
}

.budget-table tbody tr:nth-child(odd) td {
  background: #f4fbe7;
}

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

.award-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
}

.award-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #0f3b63;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.criteria-chip {
  background: #eef5d8;
  color: #193a5a;
  border: 1px solid #d2e4a8;
  border-radius: 999px;
  text-align: center;
  padding: 12px 10px;
  font-weight: 600;
}

.id-tag {
  width: min(100%, 320px);
  min-height: 500px;
  margin: 8px 0 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f7fc 34%, #0b2f58 34%, #082645 100%);
  border: 2px solid #d8e1ee;
  box-shadow: 0 10px 26px rgba(7, 36, 70, 0.18);
}

.id-tag-header {
  padding: 18px 18px 10px;
  color: #10243b;
}

.id-tag-event {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.id-tag-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #425366;
  font-weight: 600;
}

.id-tag-photo-wrap {
  margin: 6px 18px 0;
  border: 3px solid #e56f4e;
  border-radius: 14px;
  padding: 4px;
  background: #fff;
}

.id-tag-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.id-tag-body {
  padding: 14px 18px 10px;
  color: #eef5ff;
}

.id-tag-name {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
}

.id-tag-email,
.id-tag-category,
.id-tag-org {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #d8e5f7;
}

.id-tag-footer {
  margin-top: 10px;
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: #e8f1fe;
  font-size: 12px;
  line-height: 1.45;
}

.id-tag-footer #ticket-id {
  display: inline-flex;
  margin-bottom: 8px;
  background: #fff;
  color: #0d3b69;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.chatbot-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #ff9800;
  color: #fff;
  box-shadow: 0 10px 22px rgba(231, 136, 0, 0.4);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 80;
}

.chatbot-fab:hover {
  background: #e78800;
  transform: translateY(-1px);
}

.chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 84px;
  width: min(360px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #d9e3ef;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(10, 39, 74, 0.2);
  z-index: 80;
  overflow: hidden;
}

.chatbot-panel[hidden] { display: none; }

.chatbot-head {
  padding: 12px 14px;
  background: #0b4b8d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.chatbot-title {
  font-size: 14px;
  font-weight: 700;
}

.chatbot-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.chatbot-body {
  max-height: 340px;
  overflow-y: auto;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: #f9fbfe;
}

.chatbot-msg {
  max-width: 92%;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chatbot-msg.user {
  margin-left: auto;
  background: #0b4b8d;
  color: #fff;
}

.chatbot-msg.bot {
  background: #fff;
  color: #203349;
  border: 1px solid #d7e1ec;
}

.chatbot-msg a {
  color: #0c4a8f;
  font-weight: 600;
}

.chatbot-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chatbot-action-btn {
  border: 1px solid #c8d6e7;
  border-radius: 8px;
  background: #fff;
  color: #0b4b8d;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #dce6f1;
  background: #fff;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #ced9e6;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  padding: 9px 10px;
}

.chatbot-send {
  border: 0;
  border-radius: 9px;
  background: #0b4b8d;
  color: #fff;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .brand-title { font-size: 24px; }
  .nav-links a,
  .nav-drop-toggle { font-size: 16px; }
  .btn { font-size: 15px; }
  .btn-lg { font-size: 18px; }
  .lead { font-size: 17px; }
  .info-card .value { font-size: 20px; }
  .split h2,
  .section-header h2,
  .day h3,
  .tier,
  .speaker-body h3 { font-size: clamp(30px, 3vw, 42px); }
  .kpi .num { font-size: 36px; }
  .sponsor-card { font-size: 38px; height: 134px; }
  .feature-card h4 { font-size: 24px; }
  .title { font-size: 24px; }
}

@media (max-width: 960px) {
  .nav { min-height: 74px; }
  .section { padding: 46px 0; }
  .split { grid-template-columns: 1fr; }
  .card-grid.cols-3,
  .features,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.cols-2,
  .sponsor-grid.cols-2,
  .sponsor-grid.cols-3,
  .sponsor-grid.cols-4,
  .info-cards { grid-template-columns: 1fr; }
  .slot { grid-template-columns: 1fr; }
  .content { grid-column: 1; }

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

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

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 12px 20px 16px;
    background: var(--nav-bg-deep);
    flex-direction: column;
    gap: 12px;
    margin: 0;
  }

  .nav-links a,
  .nav-drop-toggle {
    font-size: 17px;
    padding: 8px 0;
    text-align: left;
    width: 100%;
  }
  .nav-dropdown { display: block; }
  .nav-dropdown-menu {
    position: static;
    margin-top: 6px;
    min-width: 0;
    padding: 0 0 0 12px;
    gap: 2px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-dropdown-menu a { font-size: 16px; }
  .nav-cta .btn { display: none; }
  .crest { width: 50px; height: 50px; font-size: 19px; }
  .hero-content { padding: 72px 20px 84px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-grid,
  .features,
  .card-grid.cols-3 { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .chatbot-fab {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    right: 12px;
    bottom: 76px;
    width: calc(100vw - 24px);
  }
}

.crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


