:root {
  --dark: #071323;
  --text: #111827;
  --muted: #526176;
  --line: #dfe7f0;
  --blue: #0093CB;
  --bright-blue: #156de8;
  --green: #53cf68;
  --cyan: #16b7d3;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(23, 44, 77, 0.12);
}

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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.95), transparent 26rem),
    radial-gradient(circle at 72% 28%, rgba(21, 109, 232, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 72%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

body.thanks-page:not(.has-custom-cursor) {
  cursor: auto !important;
}

body.thanks-page:not(.has-custom-cursor) * {
  cursor: auto !important;
}

body.thanks-page:not(.has-custom-cursor) a,
body.thanks-page:not(.has-custom-cursor) button {
  cursor: pointer !important;
}

.thanks-card {
  width: min(100%, 560px);
  padding: 46px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(23, 44, 77, 0.12);
}

.thanks-card img {
  display: block;
  width: 160px;
  margin-bottom: 34px;
}

.thanks-card h1 {
  margin-top: 22px;
  color: #081223;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.98;
}

.thanks-card p {
  margin: 22px 0 8px;
  color: #526176;
  font-size: 21px;
  line-height: 1.5;
}

.thanks-card .live-badge {
  margin-left: 0;
  margin-right: auto;
}

.thanks-actions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.thanks-actions .calendar-cta {
  margin-top: 0;
}

.schedule-menu {
  position: relative;
}

.schedule-toggle {
  border: 1px solid rgba(207, 216, 226, 0.95);
  min-height: 56px;
  background: #ffffff;
  color: #12375f;
  box-shadow: 0 14px 34px rgba(23, 44, 77, 0.1);
}

.schedule-toggle:hover {
  background: #ffffff;
  color: #081223;
  box-shadow: 0 18px 42px rgba(23, 44, 77, 0.14);
}

.schedule-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-toggle[aria-expanded="true"] .schedule-chevron {
  transform: rotate(180deg);
}

.schedule-options {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 20;
  display: grid;
  gap: 4px;
  width: min(240px, calc(100vw - 56px));
  padding: 8px;
  border: 1px solid rgba(207, 216, 226, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(23, 44, 77, 0.16);
}

.schedule-options[hidden] {
  display: none;
}

.schedule-options a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #172033;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.schedule-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 8px;
  color: #12375f;
  background: #f7fafc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.schedule-options a:hover,
.schedule-options a:focus-visible {
  color: #081223;
  border-color: rgba(79, 171, 51, 0.24);
  background: #f4fbf2;
  transform: translateX(2px);
}

@media (max-width: 560px) {
  .thanks-actions,
  .schedule-menu,
  .thanks-actions .calendar-cta {
    width: 100%;
  }

  .schedule-options {
    left: 0;
    right: auto;
    width: 100%;
  }
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 24px;
  height: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translate(2px, 2px);
  transition: opacity 0.14s ease, width 0.16s ease, height 0.16s ease, transform 0.16s ease;
}

.custom-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4FAB33;
  clip-path: polygon(0 0, 0 100%, 44% 64%, 100% 66%);
  filter:
    drop-shadow(0 0 1px rgba(7, 19, 35, 0.9))
    drop-shadow(0 7px 12px rgba(7, 19, 35, 0.28));
  transition: clip-path 0.16s ease, background 0.16s ease, filter 0.16s ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-active {
  width: 28px;
  height: 28px;
  transform: translate(2px, 2px) rotate(-8deg) scale(0.92);
}

.custom-cursor.is-active::before {
  background: #0093CB;
  clip-path: polygon(8% 0, 100% 50%, 8% 100%, 28% 52%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(83, 207, 104, 0.16) 0 3px, transparent 3px),
    radial-gradient(circle, rgba(21, 109, 232, 0.11) 0 2px, transparent 2px);
  background-position: 82% 22%, 94% 58%;
  background-size: 84px 84px, 126px 126px;
  animation: floating-dots 10s ease-in-out infinite;
}

@keyframes floating-dots {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(14px, -10px, 0);
  }
}

.scroll-reveal {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 0.64s ease,
    transform 0.64s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.64s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal:not(.is-visible) {
  transform: translateY(28px) scale(0.985) !important;
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 180px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.main-nav a {
  color: #142033;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
  width: min(1300px, calc(100% - 96px));
  min-height: calc(100vh - 214px);
  margin: 0 auto;
  padding: 34px 0 58px;
}

.register-card {
  width: 100%;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(207, 216, 226, 0.92);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.card-heading h1 {
  color: #101827;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

.card-heading p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #34445a;
  font-size: 18px;
}

.card-heading p span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(83, 207, 104, 0.12);
}

.register-form {
  display: grid;
  gap: 16px;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 8px;
  color: #526176;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 650;
}

.privacy-consent:focus-within {
  border-color: rgba(79, 171, 51, 0.45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 171, 51, 0.1);
}

.privacy-consent a {
  color: #0093CB;
  font-weight: 850;
  text-decoration: none;
}

.privacy-consent a:hover {
  text-decoration: underline;
}

.field {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field:focus-within {
  border-color: rgba(18, 91, 178, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 109, 232, 0.08);
}

svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.field svg {
  color: #66758c;
}

input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #172033;
  font: inherit;
  font-size: 16px;
}

input::placeholder {
  color: #65738a;
}

.privacy-consent input {
  appearance: none;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.8px solid #9aa6b8;
  border-radius: 5px;
  background: #ffffff;
}

.privacy-consent input::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.privacy-consent input:checked {
  border-color: #4fab33;
  background: #4fab33;
}

.privacy-consent input:checked::before {
  opacity: 1;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #4fab33;
  box-shadow: 0 16px 34px rgba(21, 109, 232, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, background 0.24s ease;
}

button:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 22px 46px rgba(79, 171, 51, 0.24);
}

button:hover svg {
  transform: translateX(4px);
}

button svg {
  width: 26px;
  height: 26px;
  transition: transform 0.24s ease;
}

.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
  color: #637287;
  font-size: 15px;
}

.privacy svg {
  width: 18px;
  height: 18px;
}

.event-content {
  position: relative;
  max-width: 690px;
  padding-top: 8px;
}

.live-badge,
.learning-badge,
.speaker-badge,
.section-heading .speaker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px 0 12px;
  border-left: 3px solid var(--green);
  border-radius: 6px;
  color: #12375f;
  background: rgba(239, 245, 252, 0.72);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.live-badge svg,
.learning-badge svg,
.speaker-badge svg,
.section-heading .speaker-badge svg {
  width: 18px;
  height: 18px;
}

.event-content h2,
.learning-heading h2 {
  margin-top: 26px;
  color: #081223;
  font-size: clamp(56px, 6.5vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.event-content h2 span,
.learning-heading h2 span {
  display: block;
  color: #4FAB33;
}

.subtitle {
  margin-top: 12px;
  color: #44536a;
  font-size: 21px;
  line-height: 1.22;
}

.accent-line {
  display: block;
  width: 76px;
  height: 4px;
  margin: 34px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 55%, var(--bright-blue) 55% 100%);
}

.description {
  max-width: 620px;
  color: #314158;
  font-size: 21px;
  line-height: 1.48;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 640px;
  margin-top: 64px;
}

.event-details article {
  display: flex;
  align-items: center;
  gap: 22px;
}

.event-details article + article {
  padding-left: 34px;
  border-left: 1px solid rgba(113, 130, 153, 0.25);
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #062f60;
  background: linear-gradient(145deg, #edf5ff, #dfeaf7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.2;
}

.event-details span {
  display: block;
  color: #617087;
  font-size: 16px;
}

.event-details strong {
  display: block;
  margin-top: 5px;
  color: #2D2D2C;
  font-size: 19px;
  line-height: 1.25;
}

.event-details small {
  display: block;
  margin-top: 7px;
  color: #40506a;
  font-size: 16px;
}

.notice {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  margin-top: 50px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(239, 245, 252, 0.82);
  box-shadow: 0 16px 44px rgba(23, 44, 77, 0.06);
}

.detail-icon.small {
  width: 56px;
  height: 56px;
}

.detail-icon.small svg {
  width: 30px;
  height: 30px;
}

.notice p {
  color: #22324a;
  font-size: 18px;
  line-height: 1.45;
}

.notice strong {
  color: #4fab33;
}

.more-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 8px;
  color: #12375f;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 44, 77, 0.08);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.more-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 171, 51, 0.32);
  box-shadow: 0 18px 42px rgba(23, 44, 77, 0.12);
}

.more-cta svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: transform 0.22s ease;
}

.more-cta:hover svg {
  transform: translateY(2px);
}

.benefits-bar {
  display: grid;
  grid-template-columns: 140px repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 28px;
  min-height: 112px;
  padding: 22px max(48px, calc((100vw - 1300px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(21, 109, 232, 0.18), transparent 32rem),
    linear-gradient(90deg, #020b14, #07182a 58%, #020b14);
}

.benefits-bar img {
  width: 56px;
  height: auto;
  filter: brightness(0) invert(1);
}

.benefits-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 42px;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 17px;
  white-space: nowrap;
}

.benefits-bar svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1100px) {
  .site-header,
  .hero {
    width: min(100% - 44px, 780px);
    
  }

  .site-header {
    gap: 24px;
  }

  .main-nav {
    gap: 24px;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .register-card,
  .event-content {
    max-width: 720px;
  }

  .benefits-bar {
    grid-template-columns: 1fr;
    padding: 30px 28px;
  }

  .benefits-bar img {
    justify-self: center;
  }

  .benefits-bar div {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    width: min(100% - 28px, 520px);
    padding-top: 24px;
  }

  .brand img {
    width: 148px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .hero {
    width: min(100% - 28px, 520px);
    padding-top: 22px;
  }

  .register-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .field {
    min-height: 58px;
    padding: 0 16px;
    gap: 14px;
  }

  .event-content h2,
  .learning-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .subtitle {
    font-size: 21px;
  }

  .description {
    font-size: 21px;
  }

  .event-details {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 44px;
  }

  .event-details article + article {
    padding-left: 0;
    border-left: 0;
  }

  .notice {
    align-items: flex-start;
    padding: 18px;
  }

  .benefits-bar div {
    justify-content: flex-start;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (hover: none), (pointer: coarse) {
  body,
  body * {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none;
  }
}


.info-section {
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0 90px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading .speaker-badge {
  margin-bottom: 18px;
  color: #12375f;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.section-heading h2 {
  color: #081223;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.info-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(207, 216, 226, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(23, 44, 77, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 109, 232, 0.16), transparent 68%);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 91, 178, 0.28);
  box-shadow: 0 28px 70px rgba(23, 44, 77, 0.13);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.info-card h3 {
  color: #0b2344;
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.info-card p {
  color: #526176;
  font-size: 21px;
  line-height: 1.5;
}

.info-section {
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0 90px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  color: #081223;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
}

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

.info-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(207, 216, 226, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(23, 44, 77, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 109, 232, 0.16), transparent 68%);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 91, 178, 0.28);
  box-shadow: 0 28px 70px rgba(23, 44, 77, 0.13);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 900;
}

.info-card h3 {
  color: #0b2344;
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.info-card p {
  color: #526176;
  font-size: 21px;
  line-height: 1.5;
}

/* New Learning Section Styles */
.learning-section {
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.learning-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 91, 178, 0.1), transparent);
}

.learning-heading {
  max-width: 900px;
  margin-bottom: 58px;
}

.learning-badge {
  margin-bottom: 18px;
}

.learning-heading h2 {
  margin-top: 0;
}

.learning-heading h2 span {
  background: none;
  -webkit-text-fill-color: #4FAB33;
  margin-top: 0;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.learning-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid rgba(207, 216, 226, 0.8);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease,
    border-color 0.36s ease,
    background 0.36s ease;
  transform: translateY(0) rotateX(0);
  box-shadow: 
    0 8px 24px rgba(23, 44, 77, 0.06),
    0 1px 3px rgba(23, 44, 77, 0.1);
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.card-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4FAB33;
  transform-origin: top;
  animation: markerGrow 0.8s ease-out var(--card-delay);
}

@keyframes markerGrow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.card-content {
  position: relative;
  z-index: 2;   
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  background: #235713;
  border-radius: 14px;
  color: white;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 8px 16px rgba(21, 109, 232, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-card:hover .card-number {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 24px rgba(21, 109, 232, 0.35);
}

.learning-card h3 {
  color: #081223;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.learning-card p {
  color: #526176;
  font-size: 21px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
  font-weight: 500;
}

.card-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 109, 232, 0.08) 0%, transparent 70%);
  transition: all 0.4s ease;
}

.learning-card:hover {
  transform: translateY(-10px);
  border-color: rgba(18, 91, 178, 0.3);
  box-shadow: 
    0 24px 48px rgba(23, 44, 77, 0.15),
    0 8px 16px rgba(21, 109, 232, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(239, 245, 252, 0.95) 100%);
}

.learning-card:hover .card-accent {
  bottom: -20px;
  right: -20px;
  background: radial-gradient(circle, rgba(21, 109, 232, 0.15) 0%, transparent 70%);
}

.learning-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(83, 207, 104, 0) 0%, rgba(21, 109, 232, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  pointer-events: none;
}

.learning-card:hover::before {
  opacity: 1;
}

@media (max-width: 1100px) {
  .learning-section {
    width: min(100% - 44px, 780px);
  }

  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .learning-card {
    min-height: 280px;
    padding: 32px;
  }

  .info-section {
    width: min(100% - 44px, 780px);
  }

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

@media (max-width: 720px) {
  .learning-section {
    width: min(100% - 28px, 520px);
    padding: 58px 0 70px;
  }

  .learning-heading {
    margin-bottom: 38px;
  }

  .learning-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .learning-heading h2 span {
    margin-top: 0;
  }

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

  .learning-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .learning-card:hover {
    transform: translateY(-8px) rotateX(0deg);
  }

  .card-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .learning-card h3 {
    font-size: 18px;
  }

  .learning-card p {
    font-size: 21px;
  }

  .info-section {
    width: min(100% - 28px, 520px);
    padding: 58px 0 70px;
  }

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

  .info-card {
    min-height: auto;
  }
}

.speakers-section {
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 10px 0 95px;
}

.section-heading.center {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin: 0 0 50px auto;
  max-width: 900px;
}

.section-heading.center .speaker-badge {
  margin-bottom: 18px;
  color: #12375f;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.section-heading.center .heading-accent {
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px 0 18px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, #4FAB33 0 55%, #0093CB 55% 100%);
}

.section-heading.center p {
  max-width: 680px;
  margin: 0 0 0 auto;
  color: #526176;
  font-size: 21px;
  line-height: 1.45;
}

.section-heading.center h2 {
  margin-top: 0;
  color: #081223;
  font-size: clamp(56px, 6.5vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.section-heading.center h2 span {
  display: block;
  color: #4FAB33;
}

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

.speaker-card {
  position: relative;
  min-height: 390px;
  padding: 30px 38px 34px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    0 24px 62px rgba(23, 44, 77, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.speaker-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, #4FAB33, #0093CB);
}

.speaker-card::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 66px;
  height: 1px;
  background: rgba(207, 216, 226, 0.72);
}

.speaker-card:hover {
  transform: translateY(-10px);
  border-color: rgba(18, 91, 178, 0.28);
  box-shadow: 0 34px 88px rgba(23, 44, 77, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 251, 255, 0.96) 100%);
}

.badge-clip {
  display: none;
}

.speaker-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  margin-bottom: 42px;
}

.speaker-card-top img {
  width: 116px;
  height: auto;
  transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-card-top img {
  transform: translateY(-1px);
}

.speaker-card-top span {
  min-height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  color: #0061b8;
  background: rgba(0, 147, 203, 0.08);
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speaker-avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  border: 1px solid rgba(79, 171, 51, 0.12);
  border-radius: 28px;
  color: #0093CB;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(135deg, rgba(79, 171, 51, 0.13), rgba(0, 147, 203, 0.1));
  box-shadow: 0 18px 36px rgba(23, 44, 77, 0.06);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, border-color 0.34s ease;
}

.speaker-avatar svg {
  width: 54px;
  height: 54px;
  stroke-width: 1.8;
  transition: transform 0.34s ease, color 0.34s ease;
}

.speaker-card:hover .speaker-avatar {
  transform: translateY(-4px);
  border-color: rgba(79, 171, 51, 0.28);
  box-shadow: 0 24px 44px rgba(0, 147, 203, 0.11);
}

.speaker-card:hover .speaker-avatar svg {
  transform: scale(1.04);
}

.speaker-card:nth-child(1) .speaker-avatar svg {
  color: #0093CB;
}

.speaker-card:nth-child(1) .speaker-avatar svg path:last-child,
.speaker-card:nth-child(2) .speaker-avatar svg path:last-child,
.speaker-card:nth-child(3) .speaker-avatar svg path:nth-child(2) {
  color: #4FAB33;
}

.speaker-info {
  position: relative;
  z-index: 1;
}

.speaker-info::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #4FAB33;
}

.speaker-card h3 {
  color: #081223;
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0;
  font-weight: 700;
}

.speaker-card p {
  color: #0093CB;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.speaker-info span {
  display: block;
  color: #526176;
  font-size: 15px;
  font-weight: 500;
}

.speaker-info::after {
  content: "DIVIX ACCESS";
  display: block;
  width: fit-content;
  margin-top: 36px;
  padding-left: 24px;
  color: rgba(8, 18, 35, 0.5);
  background: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.speaker-info {
  position: relative;
}

.speaker-info h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -46px;
  width: 14px;
  height: 14px;
  border: 1.8px solid #73839a;
  border-radius: 4px;
  transform: rotate(45deg);
}

.speaker-info h3::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -39px;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid #73839a;
  border-bottom: 1.8px solid #73839a;
}

.calendar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 560px);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0 110px;
}

.calendar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px 0 12px;
  border-left: 3px solid var(--green);
  border-radius: 6px;
  color: #12375f;
  background: rgba(239, 245, 252, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.calendar-badge svg {
  width: 18px;
  height: 18px;
}

.calendar-copy h2 {
  max-width: 760px;
  margin-top: 24px;
  color: #081223;
  font-size: clamp(58px, 6.5vw, 92px);
  line-height: 0.98;
  font-weight: 700;
}

.calendar-copy h2 span {
  display: block;
  color: #4FAB33;
}

.calendar-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: #526176;
  font-size: 21px;
  line-height: 1.48;
}

.calendar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 8px;
  color: #ffffff;
  background: #4FAB33;
  box-shadow: 0 18px 40px rgba(79, 171, 51, 0.22);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.calendar-cta:hover {
  transform: translateY(-3px);
  background: #439f35;
  box-shadow: 0 24px 50px rgba(79, 171, 51, 0.3);
}

.calendar-cta svg {
  width: 25px;
  height: 25px;
  transition: transform 0.24s ease;
}

.calendar-cta:hover svg:last-child {
  transform: translateX(4px);
}

.thanks-actions .schedule-toggle,
.thanks-actions .schedule-toggle:hover {
  border: 1px solid rgba(207, 216, 226, 0.95);
  color: #12375f;
  background: #ffffff;
}

.thanks-actions .schedule-toggle:hover {
  color: #081223;
  box-shadow: 0 18px 42px rgba(23, 44, 77, 0.14);
}

.schedule-toggle .schedule-icon,
.schedule-toggle .schedule-chevron,
.schedule-toggle:hover .schedule-chevron {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
}

.schedule-toggle[aria-expanded="true"] .schedule-chevron,
.schedule-toggle[aria-expanded="true"]:hover .schedule-chevron {
  transform: rotate(180deg);
}

.calendar-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 46px;
}

.calendar-perks article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(113, 130, 153, 0.22);
}

.calendar-perks article:last-child {
  border-right: 0;
}

.calendar-perks svg {
  width: 34px;
  height: 34px;
  color: #4FAB33;
}

.calendar-perks strong,
.calendar-perks span {
  display: block;
}

.calendar-perks strong {
  color: #334155;
  font-size: 16px;
  line-height: 1.25;
}

.calendar-perks span {
  margin-top: 4px;
  color: #526176;
  font-size: 15px;
  line-height: 1.25;
}

.calendar-visual {
  perspective: 1200px;
}

.calendar-card {
  position: relative;
  overflow: hidden;
  padding: 0 30px 30px;
  border: 1px solid rgba(207, 216, 226, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 34px 90px rgba(23, 44, 77, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: rotateX(6deg) rotateY(-8deg);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.calendar-card:hover {
  transform: rotateX(2deg) rotateY(-4deg) translateY(-8px);
  box-shadow: 0 42px 105px rgba(23, 44, 77, 0.2);
}

.calendar-card::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border-radius: 22px;
  background: rgba(79, 171, 51, 0.16);
  transform: translateZ(-34px);
  filter: blur(2px);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -30px 30px;
  padding: 34px 34px;
  border-bottom: 0;
  background: #4FAB33;
}

.calendar-top span {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
}

.calendar-top strong {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 24px;
  line-height: 34px;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays span {
  color: #9aa6b8;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.calendar-days span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #081223;
  background: transparent;
  font-size: 19px;
  font-weight: 700;
}

.calendar-days .is-event {
  position: relative;
  color: #ffffff;
  background: #4FAB33;
  box-shadow: 0 16px 34px rgba(79, 171, 51, 0.32);
  transform: translateZ(34px) scale(1.12);
}

.calendar-days .is-event::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

.calendar-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(239, 245, 252, 0.82);
}

.calendar-note span {
  color: #526176;
  font-size: 15px;
  font-weight: 700;
}

.calendar-note strong {
  color: #081223;
  font-size: 21px;
}

.terms-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
  padding: 16px 0 110px;
}

.terms-copy {
  align-self: start;
}

.terms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px 0 12px;
  border-left: 3px solid var(--green);
  border-radius: 6px;
  color: #12375f;
  background: rgba(239, 245, 252, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.terms-badge svg {
  width: 18px;
  height: 18px;
}

.terms-copy h2 {
  max-width: 620px;
  margin-top: 24px;
  color: #081223;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 700;
}

.terms-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: #526176;
  font-size: 21px;
  line-height: 1.48;
}

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

.terms-grid article {
  min-height: 178px;
  padding: 28px;
  border: 1px solid rgba(207, 216, 226, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(23, 44, 77, 0.07);
}

.terms-grid strong {
  display: block;
  color: #12375f;
  font-size: 18px;
  line-height: 1.25;
}

.terms-grid p {
  margin-top: 12px;
  color: #526176;
  font-size: 17px;
  line-height: 1.48;
}

.site-footer {
  width: 100%;
  margin: 56px 0 0;
  padding: 28px 0 24px;
  color: #e7edf6;
  background: #171717;
  box-shadow: 0 -18px 70px rgba(7, 19, 35, 0.08);
}

.footer-shell {
  width: min(1300px, calc(100% - 96px));
  margin: 0 auto;
}

.footer-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  min-height: 88px;
  margin-bottom: 28px;
  border: 1px solid rgba(207, 216, 226, 0.9);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(23, 44, 77, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 20px 30px;
  color: #505050;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  color: #12375f;
  transform: translateY(-2px);
}

.contact-item:focus-visible {
  outline: 3px solid rgba(83, 207, 104, 0.36);
  outline-offset: -3px;
}

.contact-item svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: currentColor;
  stroke-width: 1.8;
}

.contact-item span,
.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: #858585;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-item strong {
  margin-top: 7px;
  color: #4a4a4a;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-divider {
  width: 1px;
  height: 48px;
  background: rgba(80, 80, 80, 0.48);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  color: #e7edf6;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #53cf68;
  transform: translateX(2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(231, 237, 246, 0.12);
  color: #8d9ab0;
  font-size: 14px;
}

.footer-bottom img {
  display: block;
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .speakers-section {
    width: min(100% - 44px, 780px);
  }

  .section-heading.center {
    max-width: 680px;
    margin-left: auto;
  }

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

  .calendar-section {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 780px);
  }

  .terms-section {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 780px);
  }

  .footer-shell {
    width: min(100% - 44px, 780px);
  }

  .footer-contact-strip {
    grid-template-columns: 1fr;
    margin-bottom: 38px;
  }

  .contact-divider {
    width: calc(100% - 56px);
    height: 1px;
    margin: 0 auto;
  }

  .contact-item {
    padding: 22px 28px;
  }

  .calendar-perks {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calendar-perks article {
    border-right: 0;
    padding-right: 0;
  }

  .calendar-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .speakers-section {
    width: min(100% - 28px, 520px);
    padding-bottom: 70px;
  }

  .section-heading.center {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
  }

  .section-heading.center .heading-accent,
  .section-heading.center p {
    margin-left: 0;
  }

  .calendar-section {
    width: min(100% - 28px, 520px);
    padding-bottom: 70px;
  }

  .terms-section {
    width: min(100% - 28px, 520px);
    padding-bottom: 70px;
  }

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

  .terms-grid article {
    min-height: auto;
    padding: 24px;
  }

  .site-footer {
    margin-top: 64px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-shell {
    width: min(100% - 28px, 520px);
  }

  .footer-contact-strip {
    border-radius: 10px;
  }

  .contact-item {
    gap: 14px;
    padding: 18px 18px;
  }

  .contact-item svg {
    width: 34px;
    height: 34px;
  }

  .contact-item small {
    font-size: 11px;
  }

  .contact-item strong {
    font-size: clamp(17px, 5vw, 22px);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .calendar-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .calendar-card {
    padding: 0 20px 20px;
    border-radius: 16px;
  }

  .calendar-top {
    margin: 0 -20px 24px;
    padding: 26px 22px;
  }

  .calendar-top span {
    font-size: 32px;
  }

  .calendar-top strong {
    font-size: 18px;
  }

  .calendar-weekdays,
  .calendar-days {
    gap: 6px;
  }

  .calendar-days span {
    border-radius: 9px;
    font-size: 14px;
  }

  .calendar-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
