/* Ericsson Hilda Font Family */
@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-ExtraLight.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-ExtraLight.woff")
      format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Light.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Light.woff")
      format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Regular.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Medium.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Medium.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Bold.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-Bold.woff")
      format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ericsson Hilda";
  src:
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-ExtraBold.woff2")
      format("woff2"),
    url("https://info.cradlepoint.com/rs/473-ZZR-267/images/EricssonHilda-ExtraBold.woff")
      format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --global-black: #000000;
  --global-white: #ffffff;
  --global-gray: #f2f2f2;
  --button-primary-bg-color: #1174e6;
  --button-primary-bg-hover-color: #0050ca;
  --font-family-primary: "Ericsson Hilda", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  background-color: var(--global-black);
}

body {
  background-color: var(--global-white);
  font-family: var(--font-family-primary);
}

ul {
  padding-left: 40px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 64px;
}

.hero .container:has(.mktoForm) {
  padding-right: 0;
}

main {
  display: flex;
  flex-direction: column;
}

.mktoEditor #onetrust-consent-sdk {
  display: none !important;
}

/* Typography */
h1 {
  font-size: 54px;
  line-height: 54px;
  font-weight: 250;
  font-family: var(--font-family-primary);
  margin-bottom: 18px;
}

h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: var(--font-family-primary);
}

/* Global */
.button-primary a {
  display: flex;
  align-items: center;
  background: var(--button-primary-bg-color);
  border: 1px solid var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
  min-height: 43px;
  min-width: 143px;
  width: fit-content;
  justify-content: center;
}
.button-primary a:hover {
  background: var(--button-primary-bg-hover-color);
  border: 1px solid var(--button-primary-bg-hover-color);
}

.button-secondary a {
  display: inline-block;
  background: transparent;
  color: var(--global-white);
  padding: 10px 24px;
  border: 1px solid var(--global-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
  min-height: 43px;
  min-width: 143px;
}
.button-secondary a:hover {
  background: var(--global-white);
  color: var(--global-black);
}

.button-primary a,
.button-secondary a,
.button-secondary-alt a {
  max-width: 160px;
  text-wrap: nowrap;
  overflow: hidden;
}

.button-secondary-alt a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
  background: var(--global-white);
  color: #4a4a4a;
  border: 2px solid #4a4a4a;
}

.button-secondary-alt a:hover {
  background: var(--global-gray);
  border-color: #4a4a4a;
}

/* Header */
.header {
  background: var(--global-black);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  min-height: 112px;
  transition: all 0.3s ease;
  align-items: center;
  width: 100%;
  z-index: 999;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.header .nav-brand {
  flex: 1;
}

header.header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

header.header.sticky-header ~ main {
  padding-top: var(--header-height, 80px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--navigation-link-hover-color);
  text-decoration: none;
  width: 100%;
}

.logo img {
  width: auto;
  height: 100%;
  max-height: 30px;
}

.logo .logo-text {
  font-size: 24px;
  color: var(--global-white);
  font-weight: 300;
  text-align: left;
  width: 100%;
  user-select: none;
}

.mobile-menu-btn-container {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--global-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-phone a {
  text-decoration: none;
  color: var(--global-white);
  font-weight: 400;
  font-size: 18px;
}

/* Hero */
.hero {
  padding: 3rem 0;
}

section.hero.hero-bg-image-display-visible {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-right-align .hero-left {
  text-align: center;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-subtitle {
  margin-bottom: 1rem;
}

.hero-right {
  width: 60%;
  margin: 0;
  min-width: 540px;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-right-align .hero-cta-buttons {
  justify-content: center;
  margin-top: 2rem;
}

.hero-cta-primary {
  background: var(--hero-primary-button-bg-color);
  color: var(--hero-primary-button-text-color);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-primary);
  text-decoration: none;
  font-family: var(--font-family-primary);
}

.hero-cta-primary:hover {
  background: var(--hero-primary-button-bg-hover-color);
  box-shadow: 0 6px 20px var(--shadow-primary-hover);
}

.hero-cta-secondary {
  background: var(--hero-secondary-button-bg-color);
  color: var(--hero-secondary-button-text-color);
  padding: 1rem 2rem;
  border: 2px solid var(--hero-secondary-button-text-color);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-family-primary);
}

.hero-cta-secondary:hover {
  background: var(--hero-secondary-button-bg-hover-color);
  border: 2px solid var(--hero-secondary-button-bg-hover-color);
  color: var(--hero-primary-button-text-color);
}

.hero-form-title {
  text-align: left;
  margin-bottom: 2rem;
}

.hero-form-title h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero-form-title p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
}

.signup-form {
  background: var(--hero-form-section-bg-color);
  border-radius: 8px;
  padding: 2.5rem;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  font-weight: 600;
}

/* Hero A */
.hero-a {
  position: relative;
  padding: 96px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #000000;
  overflow: hidden;
}

.hero-a .bg-image {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
}

.hero-a .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-a-cta {
  margin-top: 1rem;
  width: fit-content;
}

.hero-a-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 858px;
  color: var(--global-black);
  position: relative;
  z-index: 2;
}

.hero-label {
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 0.25rem 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font-family-primary);
  text-align: right;
  padding-left: 64px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.hero-a-title {
  margin-bottom: 0rem;
}

.hero-a-title h1 {
  color: var(--global-black);
}

.hero-a-title h2 {
  color: var(--global-black);
}

.hero-a-details {
  margin-top: 1rem;
}

.hero-a-body h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--global-black);
  margin: 0;
}

.hero-a-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--global-black);
  margin: 0;
}

.hero-a-button {
  display: inline-block;
  background: transparent;
  color: var(--global-white);
  padding: 10px 24px;
  border: 1px solid var(--global-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
}

.hero-a-button:hover {
  background: var(--global-white);
  color: var(--global-black);
}

.hero-a .hero-left__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.hero-a #HeroAAssetImage {
  flex-shrink: 0;
}

.hero-a #HeroAAssetImage img {
  max-width: 172px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-a .hero-a-title {
  flex: 1;
}

/* Hero B */
.hero-b {
  padding: 96px 0;
}

.hero-b .hero-content {
  display: flex;
  gap: 64px;
  align-items: center;
}

.hero-b .hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.hero-b-label {
  margin-bottom: 0.5rem;
}

.hero-b-badge {
  display: inline-block;
  background: var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font-family-primary);
}

.hero-b-title {
  margin-bottom: 0.5rem;
}

.hero-b-body h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

.hero-b-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
}

.hero-b .hero-left__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.hero-b #HeroBAssetImage {
  flex-shrink: 0;
}

.hero-b #HeroBAssetImage img {
  max-width: 172px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-b .hero-b-title {
  flex: 1;
}

.hero-b-body {
  margin-top: 1rem;
}

.hero-b-body p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-dark);
  margin: 0;
}

.hero-b-cta {
  margin-top: 1rem;
  width: fit-content;
}

.hero-b-button {
  display: inline-block;
  background: var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
}

.hero-b-button:hover {
  background: var(--button-primary-bg-hover-color);
}

.hero-b-keywords,
.hero-b-keywords ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  flex-wrap: wrap;
  width: fit-content;
}

.hero-b-keyword {
  background: var(--global-gray);
  color: #767676;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}

.hero-keywords,
.hero-keywords ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  flex-wrap: wrap;
  width: fit-content;
}

.hero-keywords ul > li,
.hero-keywords > li {
  background: transparent;
  border: 2px solid #868686;
  color: #868686;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

.hero-b #HeroBImage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-b #HeroBImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero C */
.hero-c {
  padding: 0;
  position: relative;
}

.hero-c .hero-content {
  display: flex;
  align-items: flex-start;
}

.hero-c .hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  max-width: 50%;
  background-color: var(--global-white);
  padding-right: 64px;
}

.hero-c .container {
  padding: 0;
  max-width: 1600px;
  padding: 0 64px;
  padding-top: 164px;
  padding-bottom: 96px;
  position: relative;
}

.hero-c .hero-content-container {
  max-width: 1600px;
}

.hero-c-badge {
  display: inline-block;
  background: var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font-family-primary);
}

.hero-c .hero-left__top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.hero-c #HeroCImage {
  flex-shrink: 0;
}

.hero-c #HeroCImage img {
  max-width: 172px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-c .hero-title {
  flex: 1;
}

.hero-c .hero-label {
  position: absolute;
  top: 96px;
}

.hero-c .hero-left-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.hero-c #HeroCBodyText h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.hero-c #HeroCBodyText p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-family-primary);
}

.hero-c-keywords,
.hero-c-keywords ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  flex-wrap: wrap;
  width: fit-content;
}

.hero-c-keyword {
  background: var(--global-gray);
  color: #767676;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}

.hero-c .hero-right {
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-c .hero-form-title p {
  font-size: 20px;
  line-height: 28px;
  color: var(--text-dark);
  margin: 0;
  font-family: var(--font-family-primary);
}

.hero-c .hero-form-title p strong {
  font-weight: 700;
  font-family: var(--font-family-primary);
}

.hero-c-cta {
  margin-top: 1rem;
  width: fit-content;
}

.hero-c-button a {
  display: inline-block;
  background: var(--button-primary-bg-color);
  color: var(--global-white);
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
}

.hero-c-button a:hover {
  background: var(--button-primary-bg-hover-color);
}

.hero-c.hero-c-dark .hero-c-button a {
  background: transparent;
  color: var(--global-white);
  border: 1px solid var(--global-white);
}

.hero-c.hero-c-dark .hero-c-button a:hover {
  background: var(--global-white);
  color: var(--global-black);
}

/* Hero C Dark Mode */
.hero-c.hero-c-dark,
.hero-c.hero-c-dark section.hero.hero-c .hero-content,
.hero-c.hero-c-dark .hero-left {
  background-color: #000000;
}

.hero-c.hero-c-dark .hero-title h1,
.hero-c.hero-c-dark .hero-title h2 {
  color: var(--global-white);
}

.hero-c.hero-c-dark #HeroCBodyText h3,
.hero-c.hero-c-dark #HeroCBodyText p {
  color: var(--global-white);
}

.hero-c.hero-c-dark .hero-form-title p {
  color: var(--global-white);
}

.hero-c.hero-c-dark .hero-right,
.hero-c.hero-c-dark .hero-content {
  background-color: var(--global-black) !important;
}

.hero-c.hero-c-dark .hero-form-title p strong {
  color: var(--global-white);
}

/* Hero C Dark Mode - Form Styling */
.hero-c.hero-c-dark .mktoField {
  background: #1a1a1a !important;
  border: 1px solid var(--global-white) !important;
  color: var(--global-white) !important;
}

.hero-c.hero-c-dark .mktoForm input,
.hero-c.hero-c-dark .mktoForm select.mktoField,
.hero-c.hero-c-dark .mktoForm textarea {
  color: var(--global-white) !important;
}

.hero-c.hero-c-dark .mktoForm input::placeholder,
.hero-c.hero-c-dark .mktoForm textarea::placeholder {
  color: #a0a0a0 !important;
}

.hero-c.hero-c-dark .mktoForm input:focus,
.hero-c.hero-c-dark .mktoForm select.mktoField:focus,
.hero-c.hero-c-dark .mktoForm textarea:focus {
  border: 1px solid var(--global-white) !important;
  outline: none !important;
}

.hero-c.hero-c-dark .mktoForm select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='white' d='M297.4 470.6C309.9 483.1 330.2 483.1 342.7 470.6L534.7 278.6C547.2 266.1 547.2 245.8 534.7 233.3C522.2 220.8 501.9 220.8 489.4 233.3L320 402.7L150.6 233.4C138.1 220.9 117.8 220.9 105.3 233.4C92.8 245.9 92.8 266.2 105.3 278.7L297.3 470.7z'/></svg>") !important;
  background-position: right 1rem center !important;
  background-repeat: no-repeat !important;
  background-size: 0.9rem !important;
}

.hero-c.hero-c-dark .mktoForm .mktoCheckboxList > input[type="checkbox"] {
  background-color: #1a1a1a !important;
  border: 1px solid var(--global-white) !important;
}

.hero-c.hero-c-dark
  .mktoForm
  .mktoCheckboxList
  > input[type="checkbox"]:checked {
  background-color: var(--button-primary-bg-color) !important;
  border-color: var(--button-primary-bg-color) !important;
}

.hero-c.hero-c-dark .mktoHtmlText {
  color: var(--global-white) !important;
}

.hero-c.hero-c-dark .mktoHtmlText.mktoHasWidth > a,
.hero-c.hero-c-dark .mktoHtmlText.mktoHasWidth > a:hover {
  color: var(--global-white) !important;
}

.hero-c.hero-c-dark .mktoForm label {
  color: var(--global-white) !important;
}

.hero-c.hero-c-dark .mktoForm label > a,
.hero-c.hero-c-dark .mktoForm label > a:hover {
  color: var(--global-white) !important;
}

/* Full Width Content Section */
.full-width-content {
  margin-top: 46px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.full-width-content-inner {
  margin: 0 auto;
}

.full-width-content h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.full-width-content h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.full-width-content h4 strong {
  font-weight: 800;
  font-family: var(--font-family-primary);
}

.full-width-content p {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-dark);
  margin: 0;
}

.full-width-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.full-width-buttons.justify-center {
  align-items: center;
}

.full-width-buttons-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

/* Full Width Form Section */
.full-width-form {
  background: var(--global-gray);
  margin-top: 96px;
}

.fw-form-title {
  padding-bottom: 25px;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 475px;
  margin: auto;
}

.fw-form-inner {
  padding: 96px 170px;
}

/* Event Agenda Section */
.event-agenda {
  padding-top: 96px;
}

.agenda-container {
  display: flex;
}

.event-agenda-content {
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 4rem;
  align-items: start;
}

.event-agenda-left h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.event-agenda-left h3 strong {
  font-weight: 700;
  font-family: var(--font-family-primary);
}

.event-agenda-location {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  color: var(--text-dark);
}

.event-agenda-left p {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-dark);
  margin: 0;
}

.event-agenda-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.event-agenda-section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.event-agenda-section-title h2 {
  font-size: 54px;
  font-weight: 200;
  line-height: 1;
  margin: 0;
  color: var(--text-dark);
}

.event-agenda-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.event-agenda-tab {
  background: var(--global-black);
  color: var(--global-white);
  padding: 8px 1rem;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 116px;
  text-align: center;
}

.event-agenda-tab:hover:not(.active) {
  background: #333333;
}

.event-agenda-tab.active {
  background: var(--button-primary-bg-color) !important;
  color: var(--global-white) !important;
}

.event-agenda-tab.active:hover {
  background: var(--button-primary-bg-hover-color) !important;
}

.event-agenda-lists {
  position: relative;
}

.event-agenda-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 6px;
}

.event-agenda-list ul {
  padding: 0;
}

.event-agenda-list.active {
  display: flex;
}

.event-agenda-list li {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-items: center;
}

.event-agenda-list li:nth-child(odd) {
  background: var(--global-gray);
}

.event-agenda-list li:nth-child(even) {
  background: #f8f8f8;
}

.agenda-time {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: var(--text-dark);
  min-width: 154px;
  flex-shrink: 0;
}

.agenda-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-dark);
  flex: 1;
}

.event-agenda-list .col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.event-agenda-list h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.event-agenda-list .col .left,
.event-agenda-list .col .right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-agenda-list .col li {
  display: flex;
  gap: 0rem;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

/* Speakers */
.speakers {
  padding-top: 96px;
  background: #ffffff;
}

.speakers-top-text {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 972px;
  margin-left: auto;
  margin-right: auto;
}

.speakers-top-text h2 {
  font-size: 54px;
  font-weight: 200;
  line-height: 54px;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.speakers-top-text h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 54px;
  margin-bottom: 26px;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.speakers-top-text h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 1rem 0;
  color: var(--text-dark);
}

.speakers-top-text p {
  font-size: 16px;
  line-height: 22px;
  margin: 1.5rem 0 0 0;
  color: var(--text-dark);
}

.speakers-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 972px;
  margin: 0 auto 2rem auto;
  position: relative;
  width: 100%;
  margin-bottom: 0px;
}

.speakers-grid-bottom {
  margin-top: 80px;
}

.speaker-wrapper:first-child {
  padding-left: 0;
}

.speaker-wrapper:last-child {
  padding-right: 0;
}

.speaker-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}

.speaker-wrapper .speaker-bar {
  position: relative;
}

.speaker-wrapper .speakers-bio-arrow {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  width: 10px;
  height: 16px;
  color: var(--button-primary-bg-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  pointer-events: none;
}

.speaker-card {
  background: transparent;
  padding: 0;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.speaker-image {
  width: 220px;
  height: 256px;
  margin: 0 0 1rem 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

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

.speaker-info {
  margin-bottom: 0.5rem;
  min-height: 100px;
}

.speaker-info h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
}

.speaker-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 0.25rem 0;
  color: var(--text-dark);
}

.speaker-company {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin: 0 0 1rem 0;
  color: var(--text-dark);
  font-family: var(--font-family-primary);
}

.speaker-arrow {
  display: none;
}

.speaker-bar {
  display: block;
  height: 4px;
  background: var(--global-black);
  border-radius: 2px;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  transition: background 0.3s ease;
  width: 100%;
}

.speaker-mobile-bio {
  display: none;
}

.speaker-bio {
  display: none;
}

.speakers-bio-container {
  max-width: 972px;
  margin: 2rem auto 0 auto;
  position: relative;
  min-height: 166px;
  overflow: visible;
  z-index: 1;
  display: none;
}

.speakers-bio-bar-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 25;
  pointer-events: none;
  margin-bottom: 0px;
}

.speakers-bio-bar {
  height: 4px;
  background: var(--global-black);
  border-radius: 2px;
  transition: background 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.speakers-bio-arrow-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
  overflow: visible;
  z-index: 30;
}

.speakers-bio-arrow svg {
  width: 10px;
  height: 16px;
}

.speakers-bio-content {
  position: relative;
  margin-top: 24px;
  min-height: 146px;
  z-index: 20;
}

/* Full-width bio rows */
.speakers-bio-row {
  width: 100%;
  max-width: 972px;
  margin: 1rem auto;
  position: relative;
  min-height: 0;
  margin-top: 0px;
}

.speaker-bio-display {
  display: block;
  width: 100%;
  background: #f8f8f8;
  padding: 0;
  border-radius: 4px;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.speaker-bio-display.active {
  max-height: 2000px;
  padding: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  opacity: 1;
  position: relative;
  pointer-events: auto;
  width: 100%;
}

/* Hover styles for speaker wrapper - bars and arrows */
.speaker-wrapper:hover .speaker-bar {
  background: var(--button-primary-bg-color);
}

.speaker-wrapper:hover .speakers-bio-arrow {
  opacity: 1;
}

.speaker-bio-display p {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  color: var(--text-dark);
}

.speaker-bio-display p strong {
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

section.speakers.hidden .speaker-bio-display,
section.speakers.hidden .speakers-bio-bar,
section.speakers.hidden .speakers-bio-arrow,
section.speakers.hidden .speakers-mobile-bio,
section.speakers.hidden .speakers-bio-row {
  display: none !important;
}

section.speakers.hidden .speakers-grid-bottom {
  margin-top: 30px;
}

section.speakers.hidden .speaker-card {
  cursor: default;
}

/* Footer */
.footer {
  margin-top: 96px;
  padding: 4rem 0 2rem 0;
  background: var(--global-black);
  color: var(--global-white);
  padding-top: 96px;
  padding-bottom: 90px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
  opacity: 0.7;
}

.footer-social-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-right {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.footer-contact {
  text-align: right;
  max-width: 203px;
}

.footer-contact-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
  font-family: var(--font-family-primary);
}

.footer-contact-phone {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
  font-family: var(--font-family-primary);
  text-decoration: none;
}

.footer-address {
  text-align: right;
  max-width: 204px;
}

.footer-address-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
}

.footer-address-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
}

.footer-address-country {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-copyright {
  text-align: right;
  max-width: 471px;
}

.footer-copyright-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: var(--global-white);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: var(--global-white);
}

.footer-legal-link {
  color: var(--global-white);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.footer-legal-link:hover {
  opacity: 0.7;
}

.footer-legal-separator {
  color: var(--global-white);
  margin: 0 0.25rem;
  white-space: pre;
}

.footer .svg-inline--fa {
  height: 100%;
  width: 100%;
}

/* Sponsor Section */
.sponsor {
  margin-top: 96px;
  padding: 84px 0;
  background: var(--global-black);
  width: 100%;
}

.sponsor .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sponsor-content {
  margin-bottom: 3rem;
  max-width: 972px;
}

.sponsor-content h2 {
  font-size: 54px;
  font-weight: 400;
  line-height: normal;
  color: var(--global-white);
  margin: 0 0 1.5rem 0;
}

.sponsor-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global-white);
  margin: 0;
}

.sponsor-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 972px;
  margin: 0 auto;
}

.sponsor-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-image img {
  height: 100%;
  width: 100%;
  max-height: 175px;
  max-width: 245px;
  display: block;
}

/* Three Column Section */
.three-column {
  padding-top: 96px;
  background: var(--global-white);
  width: 100%;
}

.three-column .container {
  margin: 0 auto;
  padding: 0 64px;
}

.three-column-grid {
  display: flex;
  gap: 4rem;
  align-items: start;
  justify-content: center;
}

.three-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.three-column-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-column-icon img {
  min-width: 72px;
  max-width: 406px;
  min-height: 72px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.three-column-content {
  margin-bottom: 2rem;
  max-width: 406px;
}

.three-column-content_title {
  margin: 0;
  margin-bottom: 1rem;
  transition: height 0.3s ease;
}

.three-column-content_description {
  transition: height 0.3s ease;
}

.three-column-content h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--global-black);
  margin: 0;
  text-align: center;
}

.three-column-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global-black);
  margin: 0;
  text-align: center;
}

.three-column-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.three-column-button a {
  text-align: center;
  margin: 0 auto;
}

/* Two Columns Img Right Section */
.two-col-img-right-a,
.two-col-img-right-b {
  padding-top: 96px;
  background: var(--global-white);
  width: 100%;
}

.two-col-img-right-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.two-col-img-right-text {
  flex: 2;
}

.two-col-img-right-text-content {
  margin-bottom: 2rem;
}

.two-col-img-right-title {
  font-size: 36px;
  font-weight: 300;
  line-height: normal;
  color: var(--global-black);
  margin: 0 0 1.5rem 0;
}

.two-col-img-right-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--global-black);
  margin: 0 0 1.5rem 0;
}

.two-col-img-right-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global-black);
  margin: 0;
}

.two-col-img-right-button-wrapper {
  display: flex;
  align-items: center;
}

.two-col-img-right-button {
  text-align: center;
}

.two-col-img-right-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.two-col-img-right-image-content {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  max-width: 475px;
}

.two-col-img-right-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Two Columns Img Left Section */
.two-col-img-left-a,
.two-col-img-left-b {
  padding-top: 96px;
  background: var(--global-white);
  width: 100%;
}

.two-col-img-left-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.two-col-img-left-text {
  flex: 1;
}

.two-col {
  margin-bottom: 2rem;
}

.two-col h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: normal;
  color: var(--global-black);
  margin: 0 0 30px 0;
}

.two-col h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--global-black);
  margin: 0 0 11px 0;
}

.two-col p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--global-black);
  margin: 0;
}

.two-col-img-left-button-wrapper {
  display: flex;
  align-items: center;
}

.two-col-img-left-button {
  text-align: center;
}

.two-col-img-left-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.two-col-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 475px;
}

/* Full Width Image Section */
.full-width-image {
  width: 100%;
  padding: 0;
  padding-top: 96px;
  margin: 0;
  background: var(--global-white);
}

.full-width-image-content {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.full-width-image-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .container,
  .hero-c .container,
  .three-column .container,
  .hero .container:has(.mktoForm) {
    padding: 0 24px;
  }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-right {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }

  .hero-cta-buttons {
    margin-bottom: 0;
    margin-top: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-form-title h3 {
    font-size: 1.5rem;
  }

  .hero-form-title p {
    font-size: 0.95rem;
  }

  .hero-a {
    min-height: 500px;
  }

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

  .hero-a-title h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .hero-a-title h2 {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 0;
  }

  .hero-a-details p {
    font-size: 1rem;
  }

  .hero-a-event,
  .hero-a-location {
    font-size: 0.9rem;
  }

  .hero-a .hero-left__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-a #HeroAAssetImage img {
    max-width: 100%;
    width: 171px;
  }

  .hero-b-title h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .hero-b-title h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .hero-b-details p {
    font-size: 1rem;
  }

  .hero-b-event,
  .hero-b-location {
    font-size: 0.9rem;
  }

  .hero-b .hero-left__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-b #HeroBAssetImage img {
    max-width: 100%;
    width: 171px;
  }

  .hero-b-body p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }

  .hero-b-keywords {
    gap: 0.75rem;
  }

  .hero-b-keyword {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-a-keywords {
    gap: 0.75rem;
  }

  .hero-a-keyword {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-c {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero-c .hero-right {
    padding: 0;
    min-height: auto;
    background-color: transparent;
  }

  .hero-c .hero-right,
  section.hero.hero-c .hero-content {
    background-color: transparent !important;
  }

  .hero-c .hero-left {
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 24px;
  }

  section.hero.hero-c .hero-content {
    background-color: var(--global-white);
  }

  form,
  .mktoFieldDescriptor,
  .mktoFieldWrap,
  form input,
  .mktoForm select.mktoField,
  .mktoForm textarea {
    width: 100% !important;
  }

  .full-width-content {
    padding: 4rem 0;
  }

  .full-width-content-inner {
    max-width: 100%;
    gap: 1.5rem;
  }

  .full-width-heading h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .full-width-heading h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .full-width-subheading h3 {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .full-width-body h4 {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .full-width-body p {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .full-width-buttons-row {
    flex-direction: row;
  }

  .full-width-button {
    width: 100%;
  }

  .event-agenda-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .event-agenda-title h2 {
    font-size: 2rem;
  }

  .event-agenda-details p {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .event-agenda-location {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .event-agenda-section-title h2 {
    font-size: 2.5rem;
  }

  .event-agenda-tabs {
    gap: 0.75rem;
    justify-content: center;
  }

  .event-agenda-tab {
    min-width: auto;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .event-agenda-list li {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    align-items: flex-start;
  }

  .agenda-time {
    min-width: auto;
    width: 100%;
  }

  .hero-c .hero-left__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-c #HeroCImage img {
    max-width: 100%;
    width: 171px;
  }

  .hero-c .hero-title h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .hero-c .hero-title h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .hero-c #HeroCBodyText h3 {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .hero-c #HeroCBodyText p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }

  .hero-c-keywords {
    gap: 0.75rem;
  }

  .hero-c-keyword {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-c .hero-form-title p {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .hero-c .hero-label {
    position: static;
  }

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

  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--global-black);
    flex-direction: column;
    padding: 1.5rem 20px;
    gap: 1rem;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
  }

  .nav-links.active {
    display: flex !important;
    padding-top: 0;
    padding-bottom: 32px;
  }

  .nav-phone {
    width: 100%;
    text-align: center;
  }

  .nav-phone a {
    display: block;
    padding: 0.75rem 0;
    font-size: 18px;
  }

  .nav-actions {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
  }

  .nav-actions .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }

  .mobile-menu-btn-container {
    display: block !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    z-index: 1000;
    position: relative;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
  }

  .header {
    position: relative;
  }

  .header .container {
    position: relative;
  }

  .fw-form-inner {
    padding: 96px 0;
  }

  .footer {
    padding: 3rem 0 2rem 0;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-right {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .footer-contact,
  .footer-address {
    text-align: left;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-bottom-right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-copyright {
    text-align: left;
    max-width: 100%;
  }

  .footer-legal-links {
    text-align: left;
    max-width: 100%;
    justify-content: flex-start;
  }

  .signup-form {
    padding: 2rem;
  }

  .speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 0;
  }

  .speaker-info {
    min-height: auto;
    margin-bottom: 0px;
  }

  .speaker-image-img,
  .speaker-image-img img {
    height: auto;
    width: 100%;
  }
  .speaker-wrapper {
    width: 100%;
    margin: auto;
    max-width: 500px;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  /* Hide desktop bio container on mobile */
  .speakers-bio-container {
    display: none !important;
  }

  /* Disable hover functionality on mobile */
  .speaker-card {
    pointer-events: none;
    padding-bottom: 1rem;
  }

  .speaker-card:hover {
    transform: none;
  }

  /* Hide desktop elements on mobile */
  .speaker-bar {
    display: none !important;
  }

  .speaker-wrapper .speakers-bio-arrow {
    display: none !important;
  }

  .speakers-bio-row {
    display: none !important;
  }

  .speaker-bio-display {
    display: none !important;
  }

  /* Show mobile bios */
  .speaker-mobile-bio {
    display: block !important;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 4px;
  }

  .speaker-mobile-bio p {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    color: var(--text-dark);
  }

  .speaker-mobile-bio p strong {
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
  }

  .speakers-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .speakers-subtitle {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .speakers-description {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .speaker-bio {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    border-radius: 4px;
  }

  .speaker-arrow {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 0.5rem;
    transform: rotate(0deg);
  }

  .speaker-bar {
    display: none !important;
  }

  .speaker-wrapper .speakers-bio-arrow {
    display: none !important;
  }

  .speaker-bio-display {
    display: none !important;
  }

  .speaker-mobile-bio {
    display: block !important;
    margin-top: 0;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 4px;
  }

  section.speakers.hidden .speaker-mobile-bio {
    display: none !important;
  }

  .agenda-container {
    display: block;
  }

  .event-agenda-right {
    padding-top: 40px;
  }

  .sponsor {
    padding: 4rem 0;
  }

  .sponsor-title {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .sponsor-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sponsor-images {
    gap: 2rem;
    flex-direction: column;
  }

  .sponsor-image {
    width: 100%;
    max-width: 200px;
  }

  .three-column-grid {
    flex-direction: column;
    gap: 4rem;
  }

  .three-column-content {
    max-width: 100%;
  }

  .three-column-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .three-column-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .two-col-img-right-content {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .two-col-img-right-text {
    max-width: 100%;
  }

  .two-col-img-right-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .two-col-img-right-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .two-col-img-right-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .two-col-img-right-image-content {
    max-width: 100%;
  }

  .two-col-img-left-content {
    flex-direction: column;
    gap: 3rem;
  }

  .two-col-img-left-text {
    max-width: 100%;
  }

  .two-col-img-left-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .two-col-img-left-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .two-col-img-left-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .two-col-img-left-image-content {
    max-width: 100%;
  }

  .logo .logo-text {
    font-size: 22px;
  }

  .hero-keywords,
  .hero-keywords ul {
    margin-top: 0;
  }

  .speakers-grid-bottom {
    margin-top: 2rem;
  }
}

.nav-actions {
  display: block;
}

.full-width {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 991px) {
  .speaker-mobile-bio {
    display: none !important;
  }
  /* Check if any .mktoFormRow contains more than 1 .mktoFormCol */
  .hero-c .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) input,
  .hero-c .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) select {
    width: 200px !important;
  }
  .hero-c .mktoForm .mktoFormRow .mktoFormCol input[type="checkbox"],
  .hero-c .mktoForm .mktoFormRow .mktoFormCol input[type="radio"] {
    width: auto !important;
  }

  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol)
    input,
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol)
    select {
    width: 325px !important;
  }

  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol)
    input,
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol)
    select {
    width: 225px !important;
  }
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol)
    .mktoFormCol,
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol)
    .mktoFormCol,
  .hero-c .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) .mktoFormCol {
    all: unset !important;
    padding-right: 12px !important;
  }
  .full-width-form
    #FullWidthForm.mktoForm
    .mktoFormRow
    .mktoFormCol
    input[type="checkbox"],
  .full-width-form
    #FullWidthForm.mktoForm
    .mktoFormRow
    .mktoFormCol
    input[type="radio"] {
    width: auto !important;
  }
}

@media (min-width: 1300px) {
  .speaker-mobile-bio {
    display: none !important;
  }
  /* Check if any .mktoFormRow contains more than 1 .mktoFormCol */
  .hero-c .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) input,
  .hero-c .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) select {
    width: 250px !important;
  }
  .hero-c .mktoForm .mktoFormRow .mktoFormCol input[type="checkbox"],
  .hero-c .mktoForm .mktoFormRow .mktoFormCol input[type="radio"] {
    width: auto !important;
  }
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol)
    input,
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol)
    select {
    width: 446px !important;
  }
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol)
    input,
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol)
    select {
    width: 290px !important;
  }
  .full-width-form .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol) {
    max-width: 892px !important;
  }
  .full-width-form
    .mktoForm:has(.mktoFormRow .mktoFormCol ~ .mktoFormCol ~ .mktoFormCol) {
    max-width: 870px !important;
  }
  .full-width-form
    #FullWidthForm.mktoForm
    .mktoFormRow
    .mktoFormCol
    input[type="checkbox"],
  .full-width-form
    #FullWidthForm.mktoForm
    .mktoFormRow
    .mktoFormCol
    input[type="radio"] {
    width: auto !important;
  }
}
