/* ========== Base ========== */
html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family:
    "Pretendard Variable",
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: keep-all;
  line-height: 1.3;
}

p,
span,
div {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.6;
}

/* ========== Layout & Page ========== */
.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #f8fafc,
    #fff,
    rgba(248, 250, 252, 0.8)
  );
  font-family: inherit;
  color: #0f172a;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow-x: hidden;
  position: relative;
}

.top-banner {
  background: linear-gradient(to right, #0f172a, #1e293b, #000);
  color: #fff;
  padding: 0.875rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  cursor: pointer;
  position: relative;
  z-index: 50;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: visible;
  transition: all 0.3s;
}
.top-banner:hover {
  background: linear-gradient(to right, #1e293b, #0f172a);
}
.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.top-banner span {
  display: block;
  width: 100%;
  min-width: 0;
  word-break: break-word;
  position: relative;
  z-index: 10;
  text-align: center;
  white-space: normal;
}
.top-banner .highlight {
  color: #facc15;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(250, 204, 21, 0.3);
}

@media (min-width: 640px) {
  .top-banner {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-direction: row;
    gap: 0.5rem;
  }
  .top-banner span {
    width: auto;
  }
}
@media (min-width: 768px) {
  .top-banner {
    font-size: 0.875rem;
  }
}

.cta-floating {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 4rem;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(5rem);
  opacity: 0;
  scale: 0.95;
}
.cta-floating.visible {
  transform: translateY(0);
  opacity: 1;
  scale: 1;
}
@media (min-width: 640px) {
  .cta-floating {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(5rem);
    width: 92%;
    max-width: 28rem;
  }
  .cta-floating.visible {
    transform: translateX(-50%) translateY(0);
  }
}
.cta-floating-btn {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 0.625rem 0;
  border-radius: 0.75rem;
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.cta-floating-btn:hover {
  background: #1d4ed8;
}
.cta-floating-btn:active {
  transform: scale(0.95);
}
.cta-floating-btn .row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  padding-bottom: 0.125rem;
  font-size: 1rem;
}
.cta-floating-btn .row.sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.025em;
  opacity: 0.9;
}
.cta-floating-btn .pulse {
  color: #fde047;
  font-weight: 700;
  animation: pulse 2s ease-in-out infinite;
}
.cta-floating-btn .divider {
  width: 1px;
  height: 0.75rem;
  background: rgba(96, 165, 250, 0.5);
}
.cta-floating-btn .muted {
  color: #dbeafe;
}
@media (min-width: 768px) {
  .cta-floating-btn .row {
    font-size: 1.125rem;
  }
}

.utility-bar {
  display: none;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 0.5rem 1rem;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  position: relative;
  z-index: 50;
}
@media (min-width: 1024px) {
  .utility-bar {
    display: flex;
  }
}
@media (min-width: 768px) {
  .utility-bar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.utility-bar .links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.025em;
}
.utility-bar .links a {
  transition: color 0.2s;
}
.utility-bar .links a:hover {
  color: #2563eb;
}
.utility-bar .vdiv {
  width: 1px;
  height: 0.5rem;
  background: #e2e8f0;
}
.utility-bar .social-wrap {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: 0.5rem;
  border-left: 1px solid #e2e8f0;
  padding-left: 1rem;
}
.utility-bar .social-wrap a {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}
.utility-bar .social-wrap a:hover {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fecaca;
}
.utility-bar .social-wrap a.fb:hover {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
}
.utility-bar .social-wrap a.ig:hover {
  background: #fdf2f8;
  color: #ec4899;
  border-color: #fbcfe8;
}
.utility-bar .social-wrap a.naver:hover {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .nav-bar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  cursor: pointer;
}
.nav-logo {
  height: 2rem;
  object-fit: contain;
  object-position: left;
  max-width: 120px;
}
@media (min-width: 375px) {
  .nav-logo {
    max-width: 150px;
  }
}
@media (min-width: 768px) {
  .nav-logo {
    height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .nav-logo {
    max-width: none;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .nav-desktop {
    gap: 0.75rem;
  }
}
.nav-cta {
  background: #0f172a;
  color: #fff;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-cta:active {
  transform: scale(0.95);
}
.nav-cta .badge {
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-weight: 900;
  animation: pulse 2s ease-in-out infinite;
}
.nav-dd-wrap {
  position: relative;
  flex-shrink: 0;
}
.nav-dd-btn {
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.nav-dd-btn:hover {
  color: #2563eb;
}
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}
.nav-dd-wrap:hover .nav-dd-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dd-inner {
  width: 11rem;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
}
.nav-dd-inner a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-dd-inner a:hover {
  background: #eff6ff;
  color: #2563eb;
}
.nav-event-link {
  position: relative;
  flex-shrink: 0;
}
.nav-event-link a {
  padding: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  display: block;
  transition: color 0.2s;
}
.nav-event-link a:hover {
  color: #2563eb;
}
.nav-event-link .dot {
  position: absolute;
  top: 0;
  right: -6px;
  width: 0.75rem;
  height: 0.75rem;
  background: #ef4444;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  margin-top: -2px;
}
.nav-mobile-btn {
  display: flex;
  padding: 0.75rem;
  margin: -0.25rem;
  color: #475569;
  flex-shrink: 0;
  touch-action: manipulation;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-mobile-btn {
    display: none;
  }
}

/* Keyframes */
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}
.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out;
}
.animate-bounce-subtle {
  animation: bounce-subtle 2s ease-in-out infinite;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #e8f4f0;
  animation: fade-in 0.3s ease-out;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem 0.5rem;
}
.mobile-menu .social-row {
  display: flex;
  gap: 0.75rem;
}
.mobile-menu .social-row a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}
.mobile-menu .close-btn {
  padding: 0.5rem;
  color: #475569;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-login-banner {
  margin: 0 1rem;
  margin-top: 0.5rem;
  background: #e8826a;
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: #fff;
}
.mobile-login-banner p {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.mobile-login-banner .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-login-banner .links {
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-login-banner .links a:hover {
  text-decoration: underline;
}
.mobile-login-banner .login-btn {
  background: #fff;
  color: #e8826a;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu-list {
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.mobile-menu-list > a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1.125rem;
  font-weight: 900;
  color: #1e293b;
}
.mobile-menu-list .red-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #ef4444;
  border-radius: 9999px;
  margin-left: 0.375rem;
  margin-top: -0.5rem;
}
.mobile-menu-list .item {
  border-bottom: 1px solid #f1f5f9;
}
.mobile-menu-list .item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 900;
  color: #1e293b;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-list .item .chevron {
  color: #94a3b8;
  transition: transform 0.2s;
}
.mobile-menu-list .item.open .chevron {
  transform: rotate(180deg);
}
.mobile-menu-list .subs {
  padding-bottom: 0.5rem;
}
.mobile-menu-list .subs a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  color: #475569;
  transition: color 0.2s;
}
.mobile-menu-list .subs a:hover {
  color: #2563eb;
}
.mobile-menu-list > a:last-of-type {
  border-bottom: none;
}
.mobile-menu-spacer {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

/* Hero / Header */
.hero {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.9)
  );
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(59, 130, 246, 0.06),
    transparent
  );
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
  opacity: 0.25;
}
.hero-inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
.hero-badge {
  display: inline-block;
  border: 2px solid rgba(191, 219, 254, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.375rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
  animation: bounce-subtle 2s ease-in-out infinite;
}
@media (min-width: 375px) {
  .hero-badge {
    padding: 0.5rem 1.25rem;
    font-size: 11px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-badge {
    margin-bottom: 2rem;
  }
}
@media (min-width: 375px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.hero h1,
.hero h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0f172a;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
.hero h1 .gradient,
.hero h2 .gradient {
  color: transparent;
  background: linear-gradient(to right, #1d4ed8, #4338ca);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: #93c5fd;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 375px) {
  .hero h1,
  .hero h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .hero h1 .gradient,
  .hero h2 .gradient {
    text-decoration-thickness: 8px;
    text-underline-offset: 8px;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .hero h1,
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.15;
  }
}
@media (min-width: 1024px) {
  .hero h1,
  .hero h2 {
    font-size: 4.5rem;
  }
}
.hero-sub {
  font-size: 13px;
  margin-bottom: 1rem;
  color: #334155;
  font-weight: 700;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub .yellow-box {
  color: #0f172a;
  font-weight: 900;
  background: rgba(253, 224, 71, 0.3);
  padding: 0 0.25rem;
  border-radius: 0.25rem;
}
@media (min-width: 375px) {
  .hero-sub {
    font-size: 15px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 640px) {
  .hero-sub {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-sub {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .hero-sub br.md-only {
    display: none;
  }
}
.gift-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fecaca;
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 100%;
  max-width: 42rem;
  transform: translateY(0);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.gift-box:hover {
  transform: translateY(-4px);
}
.gift-box .blur1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: #fef2f2;
  border-radius: 9999px;
  filter: blur(48px);
  margin-right: -4rem;
  margin-top: -4rem;
  opacity: 0.7;
}
.gift-box .blur2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: #fffbeb;
  border-radius: 9999px;
  filter: blur(40px);
  margin-left: -2rem;
  margin-bottom: -2rem;
  opacity: 0.5;
}
.gift-box-mobile {
  display: block;
}
.gift-box-mobile p {
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1.25;
  position: relative;
  z-index: 10;
}
.gift-box-mobile .red-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ef4444;
}
.gift-box-mobile .pill {
  background: #fef2f2;
  color: #dc2626;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
@media (min-width: 375px) {
  .gift-box-mobile p {
    flex-direction: row;
    gap: 0.5rem;
    font-size: 1rem;
  }
}
.gift-box-desktop {
  display: none;
}
@media (min-width: 768px) {
  .gift-box {
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 2.5rem;
  }
  .gift-box-mobile {
    display: none;
  }
  .gift-box-desktop {
    display: block;
  }
  .gift-box-desktop .title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
  }
  .gift-box-desktop .title-row span {
    font-size: 1.125rem;
    letter-spacing: 0.025em;
  }
  .gift-box-desktop .main-p {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.25;
    position: relative;
    z-index: 10;
  }
  .gift-box-desktop .main-p .ul {
    color: #ef4444;
    text-decoration: underline;
    text-decoration-color: #fecaca;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
  }
  .gift-box-desktop .foot {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 700;
    background: #f8fafc;
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
  }
  .gift-box-desktop .foot .red {
    color: #ef4444;
    font-weight: 900;
  }
}
@media (min-width: 375px) {
  .gift-box {
    border-radius: 1.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}
.hero-cta {
  width: 100%;
  max-width: 32rem;
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #fff;
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 900;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.5);
  transition: all 0.3s;
}
.hero-cta:hover {
  background: linear-gradient(to right, #000, #0f172a);
  transform: scale(1.02);
}
.hero-cta:active {
  transform: scale(0.95);
}
@media (min-width: 375px) {
  .hero-cta {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    gap: 0.75rem;
    border-radius: 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero-cta {
    padding: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-cta {
    font-size: 1.875rem;
  }
}
.hero-cta-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fade-in-up 0.5s ease-out;
}
.hero-cta-note .timer-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 800;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dbeafe;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 375px) {
  .hero-cta-note .timer-pill {
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .hero-cta-note .timer-pill {
    font-size: 1.125rem;
  }
}
.hero-cta-note .disclaimers {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.025em;
}
@media (min-width: 375px) {
  .hero-cta-note .disclaimers {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .hero-cta-note .disclaimers {
    font-size: 0.875rem;
  }
}
.hero-cta-note .disclaimers .sep {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  color: #cbd5e1;
}
@media (min-width: 375px) {
  .hero-cta-note .disclaimers .sep {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.hero-buttons-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 375px) {
  .hero-buttons-wrap {
    gap: 1.25rem;
  }
}

/* Section common */
.section {
  padding: 2rem 1rem;
}
.section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.section-title-sm {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 0.875rem;
  font-weight: 900;
  color: #475569;
  font-style: italic;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .md-only {
    display: inline;
  }
}
@media (max-width: 767px) {
  .md-only {
    display: none;
  }
}

/* Awards section */
#awards {
  padding: 2.5rem 1rem;
  background: #000;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#awards .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
#awards .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #000,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7)
  );
}
#awards .overlay2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(234, 179, 8, 0.06),
    transparent
  );
  pointer-events: none;
}
#awards .inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 375px) {
  #awards {
    padding: 3.5rem 1.5rem;
  }
  #awards .inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  #awards {
    padding: 5rem 2rem;
  }
  #awards .inner {
    padding: 0 2rem;
  }
}
#awards h3 {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.9);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
@media (min-width: 375px) {
  #awards h3 {
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  #awards h3 {
    margin-bottom: 3rem;
  }
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-wrap .gradient-l {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5rem;
  background: linear-gradient(to right, #0a0a0a, transparent);
  z-index: 10;
  pointer-events: none;
}
.marquee-wrap .gradient-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5rem;
  background: linear-gradient(to left, #0a0a0a, transparent);
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 768px) {
  .marquee-wrap .gradient-l,
  .marquee-wrap .gradient-r {
    width: 10rem;
  }
}
.marquee-track {
  display: flex;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.award-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1.5rem;
  cursor: default;
}
@media (min-width: 768px) {
  .award-card {
    margin: 0 2.5rem;
  }
}
.award-card .icon-wrap {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.75rem;
  position: relative;
  transition: transform 0.3s;
}
.award-card:hover .icon-wrap {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .award-card .icon-wrap {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
  }
}
.award-card .icon-wrap .glow {
  position: absolute;
  inset: 0;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 9999px;
  filter: blur(24px);
  transform: scale(0.75);
  transition: background 0.2s;
}
.award-card:hover .icon-wrap .glow {
  background: rgba(245, 158, 11, 0.2);
}
.award-card .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 10;
}
.award-card .icon-wrap .fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.award-card .no1-badge {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(30px, -8px);
}
.award-card .no1-badge span {
  background: #2563eb;
  font-size: 10px;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.award-card .year {
  font-size: 9px;
  font-weight: 700;
  color: rgba(251, 191, 36, 0.8);
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .award-card .year {
    font-size: 10px;
  }
}
.award-card .name {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 0.125rem;
  color: #fff;
}
@media (min-width: 768px) {
  .award-card .name {
    font-size: 0.875rem;
  }
}
.award-card .desc {
  font-size: 9px;
  color: #94a3b8;
  font-weight: 700;
}
@media (min-width: 768px) {
  .award-card .desc {
    font-size: 10px;
  }
}

/* Review cards section */
.review-section {
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, #f8fafc, #fff);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
@media (min-width: 375px) {
  .review-section {
    padding: 2.5rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .review-section {
    padding: 4rem 1.5rem;
  }
}
.review-section .section-inner {
  margin-bottom: 1.5rem;
}
@media (min-width: 375px) {
  .review-section .section-inner {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .review-section .section-inner {
    margin-bottom: 4rem;
  }
}
.review-section .grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .review-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.12);
  border-color: rgba(191, 219, 254, 0.8);
}
@media (min-width: 375px) {
  .review-card {
    padding: 2rem;
    border-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .review-card {
    padding: 2.5rem;
    border-radius: 2.5rem;
  }
}
.review-card .stars {
  color: #facc15;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.review-card .text {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  word-break: keep-all;
}
@media (min-width: 375px) {
  .review-card .text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .review-card .text {
    font-size: 1.25rem;
  }
}
.review-card .footer {
  font-weight: 700;
  color: #94a3b8;
  font-size: 0.75rem;
  border-top: 1px solid #f8fafc;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 375px) {
  .review-card .footer {
    font-size: 0.875rem;
    padding-top: 1.5rem;
  }
}
.review-card .footer .icon {
  color: #e2e8f0;
  transition: color 0.2s;
}
.review-card:hover .footer .icon {
  color: #dbeafe;
}
.review-card .highlight-inline {
  background: rgba(254, 249, 195, 0.8);
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  margin: 0 0.25rem;
}

/* Video reviews section */
.video-section {
  padding: 2rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 375px) {
  .video-section {
    padding: 2.5rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .video-section {
    padding: 4rem 1.5rem;
  }
}
.video-section .pt {
  padding-top: 2rem;
}
@media (min-width: 375px) {
  .video-section .pt {
    padding-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .video-section .pt {
    padding-top: 3rem;
  }
}
.video-section h3 {
  font-size: 1.125rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.video-section h3 .rec {
  color: #ef4444;
  font-size: 0.75rem;
  vertical-align: top;
  animation: pulse 2s ease-in-out infinite;
}
@media (min-width: 375px) {
  .video-section h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .video-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.video-row {
  margin-bottom: 2.5rem;
}
@media (min-width: 375px) {
  .video-row {
    margin-bottom: 3rem;
  }
}
.video-row .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
@media (min-width: 375px) {
  .video-row .header {
    margin-bottom: 1.5rem;
  }
}
.video-row .header .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.video-row .header .tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.video-row .header .tag.adult {
  background: #0f172a;
  color: #fff;
}
.video-row .header .tag.junior {
  background: #2563eb;
  color: #fff;
}
.video-row .header h4 {
  font-size: 1.125rem;
  font-weight: 900;
  color: #334155;
}
@media (max-width: 767px) {
  .video-row .header h4 br {
    display: block;
  }
}
.video-row .header .more {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.video-row .header .more:hover {
  color: #0f172a;
}
.video-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  padding-left: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.video-scroll.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.video-scroll.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
@media (min-width: 375px) {
  .video-scroll {
    padding-bottom: 1.5rem;
  }
}
.video-tile {
  flex: none;
  height: 8rem;
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  scroll-snap-align: center;
  position: relative;
}
.video-tile:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.video-tile.aspect-video {
  aspect-ratio: 16/10;
}
.video-tile.aspect-9-16 {
  aspect-ratio: 9/16;
}
@media (min-width: 375px) {
  .video-tile {
    height: 10rem;
  }
}
@media (min-width: 768px) {
  .video-tile {
    height: 12rem;
  }
}
.video-tile.junior {
  height: 12rem;
}
@media (min-width: 375px) {
  .video-tile.junior {
    height: 14rem;
  }
}
@media (min-width: 768px) {
  .video-tile.junior {
    height: 18rem;
  }
}
.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.video-tile:hover img {
  opacity: 0.6;
}
.video-tile .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.5),
    transparent
  );
}
.video-tile .caption h4 {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.25;
  margin-bottom: 0.125rem;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
.video-tile.junior .caption {
  padding: 1rem;
}
.video-tile.junior .caption h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.video-tile.junior .caption p {
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 500;
}

/* CTA section blue */
.cta-blue {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom right, #2563eb, #4338ca);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blue .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}
.cta-blue .inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
.cta-blue h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
@media (min-width: 768px) {
  .cta-blue h3 {
    font-size: 2.25rem;
  }
}
.cta-blue p {
  font-size: 1.125rem;
  color: #dbeafe;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .cta-blue p {
    font-size: 1.25rem;
  }
}
.cta-blue .btn {
  background: #fff;
  color: #2563eb;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.cta-blue .btn:hover {
  background: #eff6ff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
@media (min-width: 768px) {
  .cta-blue .btn {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .cta-blue p br.md-only {
    display: none;
  }
}

/* Unlimited section */
#unlimited {
  padding: 2.5rem 1rem;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  position: relative;
}
#unlimited .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #2563eb, #9333ea, #dc2626);
}
#unlimited .blur-l {
  position: absolute;
  left: -10rem;
  top: 10rem;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}
#unlimited .blur-r {
  position: absolute;
  right: -10rem;
  bottom: 0;
  width: 500px;
  height: 500px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}
#unlimited .inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 375px) {
  #unlimited {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #unlimited {
    padding: 4rem 1.5rem;
  }
}
#unlimited .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #334155;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(12px);
}
#unlimited .badge span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#unlimited h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
#unlimited h2 .gradient {
  color: transparent;
  background: linear-gradient(to right, #ef4444, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  #unlimited h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  #unlimited h2 {
    font-size: 3.75rem;
  }
}
#unlimited .sub {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.625;
}
@media (min-width: 768px) {
  #unlimited .sub {
    font-size: 1.125rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  #unlimited .sub {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  #unlimited .sub br {
    display: block;
  }
}
.unlimited-card {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 2.5rem;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
  box-shadow: 0 20px 60px -15px rgba(255, 255, 255, 0.1);
}
.unlimited-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.unlimited-card .glow1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.2),
    rgba(147, 51, 234, 0.2)
  );
  border-radius: 9999px;
  filter: blur(48px);
}
.unlimited-card .glow2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(
    to top right,
    rgba(34, 197, 94, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  border-radius: 9999px;
  filter: blur(48px);
}
.unlimited-card .pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #22c55e, #10b981);
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}
.unlimited-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.25;
}
.unlimited-card h3 .gradient {
  color: transparent;
  background: linear-gradient(to right, #60a5fa, #4ade80, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
}
@media (min-width: 768px) {
  .unlimited-card {
    padding: 3rem;
  }
  .unlimited-card h3 {
    font-size: 1.875rem;
  }
}
.unlimited-card .features {
  margin-bottom: 0;
}
.unlimited-card .feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}
.unlimited-card .feature .icon-box {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
}
.unlimited-card .feature:hover .icon-box {
  transform: scale(1.1);
}
.unlimited-card .feature .title {
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .unlimited-card .feature .title {
    font-size: 1.125rem;
  }
}
.unlimited-card .feature .desc {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}
.unlimited-card .feature .check {
  flex-shrink: 0;
  color: #4ade80;
  opacity: 0;
  transition: opacity 0.2s;
}
.unlimited-card .feature:hover .check {
  opacity: 1;
}
.unlimited-card .cta-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.unlimited-card .cta-row p {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
.unlimited-card .cta-row .green {
  color: #4ade80;
}
.unlimited-cta-wrap {
  margin-top: 5rem;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(to right, #dc2626, #ef4444);
  display: inline-block;
  width: 100%;
  max-width: 42rem;
  transition: transform 0.2s;
  cursor: pointer;
  box-shadow: 0 20px 60px -15px rgba(220, 38, 38, 0.5);
}
.unlimited-cta-wrap:hover {
  transform: scale(1.02);
}
.unlimited-cta-wrap .inner {
  background: #0f172a;
  border-radius: 1.4rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .unlimited-cta-wrap .inner {
    flex-direction: row;
    padding: 1.5rem 3rem;
  }
}
.unlimited-cta-wrap .inner:hover::before {
  opacity: 1;
}
.unlimited-cta-wrap .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(220, 38, 38, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.unlimited-cta-wrap .inner .text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #cbd5e1;
  position: relative;
  z-index: 10;
}
.unlimited-cta-wrap .inner .text .ul {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.unlimited-cta-wrap .inner .arrow-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .unlimited-cta-wrap .inner .arrow-wrap {
    font-size: 1.875rem;
  }
}
.unlimited-cta-wrap .inner .arrow-wrap svg {
  transition: transform 0.2s;
}
.unlimited-cta-wrap:hover .inner .arrow-wrap svg {
  transform: translateX(4px);
}
#unlimited .foot-note {
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

/* Safe zone section */
#safe-zone {
  padding: 2.5rem 1rem;
  background: linear-gradient(
    to bottom,
    rgba(239, 246, 255, 0.8),
    rgba(248, 250, 252, 0.5)
  );
}
@media (min-width: 375px) {
  #safe-zone {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #safe-zone {
    padding: 4rem 1.5rem;
  }
}
#safe-zone .box {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #0f172a;
  border-radius: 2rem;
  padding: 1.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, 0.2);
}
@media (min-width: 375px) {
  #safe-zone .box {
    border-width: 6px;
    border-radius: 2.5rem;
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  #safe-zone .box {
    border-width: 8px;
    border-radius: 3rem;
    padding: 4rem;
  }
}
#safe-zone .deco-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2.5rem;
  opacity: 0.04;
  pointer-events: none;
}
#safe-zone .deco-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(191, 219, 254, 0.3);
  border-radius: 9999px;
  filter: blur(48px);
  margin-left: -8rem;
  margin-bottom: -8rem;
  pointer-events: none;
}
#safe-zone .content {
  position: relative;
  z-index: 10;
  text-align: center;
}
#safe-zone h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.25;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
  color: #0f172a;
}
@media (min-width: 768px) {
  #safe-zone h2 {
    font-size: 1.875rem;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  #safe-zone h2 {
    font-size: 3rem;
  }
}
#safe-zone h2 svg {
  color: #2563eb;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
#safe-zone .two-cols {
  display: grid;
  gap: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  #safe-zone .two-cols {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}
#safe-zone .col h4 {
  font-size: 1.5rem;
  font-weight: 900;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
  border-bottom: 2px solid;
}
#safe-zone .col h4.blue {
  color: #2563eb;
  border-color: #dbeafe;
}
#safe-zone .col h4.gray {
  color: #94a3b8;
  border-color: #f1f5f9;
}
#safe-zone .col .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #334155;
  background: rgba(239, 246, 255, 0.5);
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  #safe-zone .col .item {
    justify-content: flex-start;
  }
}
#safe-zone .col .item.strike {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: rgba(248, 113, 113, 0.5);
  text-decoration-thickness: 2px;
  padding: 0.75rem;
}
#safe-zone .col .note {
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  #safe-zone .col .note {
    padding-left: 0.5rem;
  }
}
#safe-zone .cta-btn {
  width: 100%;
  max-width: 28rem;
  background: #0f172a;
  color: #fff;
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
#safe-zone .cta-btn:hover {
  background: #000;
  transform: scale(1.05);
}

/* Why section */
#why {
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(to bottom, #fff, rgba(248, 250, 252, 0.5));
}
@media (min-width: 375px) {
  #why {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #why {
    padding: 4rem 1.5rem;
  }
}
#why .section-inner {
  text-align: center;
}
#why .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #why .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#why h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: #0f172a;
}
@media (min-width: 640px) {
  #why h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  #why h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  #why h2 {
    font-size: 2.25rem;
  }
}
#why .sub {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #why .sub {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
#why .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  #why .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
#why .stat-card {
  position: relative;
  background: #fff;
  border: 2px solid #e2e8f0;
  padding: 2rem;
  border-radius: 1.5rem;
  transition: all 0.3s;
}
#why .stat-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
@media (min-width: 768px) {
  #why .stat-card {
    padding: 2.5rem;
  }
}
#why .stat-card .number {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#why .stat-card .number.red {
  background: linear-gradient(to right, #ef4444, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
}
#why .stat-card .number.blue {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
}
#why .stat-card .number.purple {
  background: linear-gradient(to right, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
}
#why .stat-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #0f172a;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  #why .stat-card h3 {
    font-size: 1.5rem;
  }
}
#why .stat-card p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.625;
}
@media (min-width: 768px) {
  #why .stat-card p {
    font-size: 1rem;
  }
}

/* Infra section */
#infra {
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(to bottom, #f8fafc, #fff);
}
@media (min-width: 375px) {
  #infra {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #infra {
    padding: 6rem 1.5rem;
  }
}
#infra .section-inner {
  text-align: center;
}
#infra .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #infra .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#infra h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0f172a;
}
@media (min-width: 375px) {
  #infra h2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  #infra h2 {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}
#infra .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  #infra .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #infra .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.infra-card {
  aspect-ratio: 4/3;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.infra-card:hover {
  transform: translateY(-8px);
}
@media (min-width: 768px) {
  .infra-card {
    border-radius: 2.5rem;
  }
}
.infra-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.infra-card:hover img {
  transform: scale(1.1);
}
.infra-card .tint {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.infra-card .tint.tint-blue {
  background: #2563eb;
}
.infra-card .tint.tint-slate {
  background: #0f172a;
}
.infra-card .tint.tint-amber {
  background: #fbbf24;
}
.infra-card .tint.tint-red {
  background: #ef4444;
}
.infra-card .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}
.infra-card .content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .infra-card .content {
    padding: 2rem;
  }
}
.infra-card .content .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.infra-card:hover .content .icon-box {
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .infra-card .content .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
  }
}
.infra-card .content h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .infra-card .content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.infra-card .content p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .infra-card .content p {
    font-size: 0.875rem;
  }
}

/* Management section */
#management {
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
@media (min-width: 375px) {
  #management {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #management {
    padding: 6rem 1.5rem;
  }
}
#management .section-inner {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 375px) {
  #management .section-inner {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  #management .section-inner {
    margin-bottom: 5rem;
  }
}
#management .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
#management h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  color: #0f172a;
}
@media (min-width: 375px) {
  #management h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  #management h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  #management h2 {
    font-size: 3rem;
  }
}
#management .sub {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 700;
}
@media (min-width: 375px) {
  #management .sub {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #management .sub {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  #management .sub {
    font-size: 1.25rem;
  }
}
#management .flex-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  #management .flex-wrap {
    flex-direction: row;
    gap: 4rem;
  }
}
#management .check-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 12px solid #0f172a;
  border-radius: 3rem;
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, 0.2);
  padding: 2.5rem;
  background: #fff;
  overflow: hidden;
}
#management .check-card .blur1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: #dbeafe;
  border-radius: 9999px;
  margin-right: -5rem;
  margin-top: -5rem;
  filter: blur(48px);
}
#management .check-card .blur2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: #e0e7ff;
  border-radius: 9999px;
  margin-left: -3rem;
  margin-bottom: -3rem;
  filter: blur(40px);
}
#management .check-card h4 {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  color: #2563eb;
  margin-bottom: 3rem;
  font-style: italic;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}
#management .check-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  position: relative;
  z-index: 10;
  align-items: center;
}
@media (min-width: 768px) {
  #management .check-card ul {
    text-align: center;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  #management .check-card ul {
    text-align: left;
    align-items: flex-start;
  }
}
#management .check-card li {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 280px;
}
#management .check-card li .dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}
#management .check-card li span {
  font-weight: 700;
  color: #334155;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
#management .management-right {
  flex: 1;
}
#management .management-right h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  font-style: italic;
  color: #1e293b;
  word-break: keep-all;
}
@media (min-width: 768px) {
  #management .management-right h3 {
    font-size: 2.25rem;
    text-align: left;
  }
}
#management .management-right h3 .red {
  color: #ef4444;
}
#management .management-right .charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  #management .management-right .charts {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
#management .chart-box {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#management .chart-box p {
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 2rem;
}
#management .chart-box .bars {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 8rem;
}
#management .chart-box .bar {
  flex: 1;
  border-radius: 0.75rem 0.75rem 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
}
#management .chart-box .bar span {
  font-weight: 900;
  font-size: 0.875rem;
}
#management .chart-box .bar.gray {
  background: #e2e8f0;
}
#management .chart-box .bar.gray span {
  color: #475569;
}
#management .chart-box .bar.blue {
  background: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}
#management .chart-box .bar.blue .pct {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  color: #2563eb;
  animation: bounce-subtle 2s ease-in-out infinite;
}
#management .chart-box .bar.blue span {
  color: #fff;
  position: relative;
  z-index: 10;
}
#management .chart-box .bar.orange {
  background: #f97316;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}
#management .chart-box .bar.orange .pct {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  color: #f97316;
  animation: bounce-subtle 2s ease-in-out infinite;
}
#management .chart-box .bar.orange span {
  color: #fff;
  position: relative;
  z-index: 10;
}
#management .chart-box .bar.blue {
  height: 95%;
}
#management .chart-box .bar.gray.first {
  height: 89%;
}
#management .chart-box .bar.gray.second {
  height: 57%;
}
#management .chart-box .bar.orange {
  height: 100%;
}

/* Curriculum section */
#curriculum {
  padding: 2.5rem 1rem;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  text-align: left;
  position: relative;
}
#curriculum .radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(59, 130, 246, 0.06),
    transparent 50%
  );
  pointer-events: none;
}
#curriculum .section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  text-align: center;
}
#curriculum .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #curriculum .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#curriculum .section-inner > svg {
  margin: 0 auto;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  animation: spin-slow 8s linear infinite;
}
@media (min-width: 375px) {
  #curriculum .section-inner > svg {
    margin-bottom: 2rem;
  }
}
#curriculum h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
}
@media (min-width: 375px) {
  #curriculum h2 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  #curriculum h2 {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}
#curriculum .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  #curriculum .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.curriculum-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.curriculum-card:hover {
  transform: translateY(-8px);
}
@media (min-width: 375px) {
  .curriculum-card {
    aspect-ratio: 1.4/1;
  }
}
@media (min-width: 768px) {
  .curriculum-card {
    aspect-ratio: 1.2/1;
    padding: 2.5rem;
    border-radius: 2rem;
  }
}
.curriculum-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.curriculum-card:hover img {
  transform: scale(1.1);
}
.curriculum-card .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.3), transparent);
}
.curriculum-card h3 {
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 10;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
@media (min-width: 375px) {
  .curriculum-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .curriculum-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.curriculum-card p {
  font-size: 10px;
  color: #e5e7eb;
  font-weight: 500;
  position: relative;
  z-index: 10;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 375px) {
  .curriculum-card p {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .curriculum-card p {
    font-size: 0.875rem;
  }
}
#curriculum .cta-wrap {
  margin-top: 2.5rem;
  animation: fade-in-up 0.5s ease-out;
}
@media (min-width: 375px) {
  #curriculum .cta-wrap {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  #curriculum .cta-wrap {
    margin-top: 4rem;
  }
}
#curriculum .cta-wrap button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
@media (min-width: 375px) {
  #curriculum .cta-wrap button {
    width: auto;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #curriculum .cta-wrap button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}
#curriculum .cta-wrap button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
#curriculum .cta-wrap .free-badge {
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  letter-spacing: 0.05em;
}
#curriculum .cta-wrap .link-text {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(59, 130, 246, 0.3);
}
#curriculum .cta-wrap button:hover .link-text {
  color: #93c5fd;
}
#curriculum .cta-wrap button:hover svg {
  transform: translateX(4px);
}
#curriculum .cta-wrap svg {
  transition: transform 0.2s;
}

/* Animation section */
#animation {
  padding: 2.5rem 1rem;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  text-align: center;
  border-bottom: 1px solid #334155;
}
@media (min-width: 375px) {
  #animation {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #animation {
    padding: 6rem 1.5rem;
  }
}
#animation .section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
#animation .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #animation .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#animation h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-style: italic;
  letter-spacing: -0.025em;
  color: #fff;
}
@media (min-width: 375px) {
  #animation h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  #animation h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  #animation h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  #animation h2 br {
    display: block;
  }
}
#animation .sub {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (min-width: 375px) {
  #animation .sub {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #animation .sub {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}
#animation .scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  padding-left: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
#animation .scroll.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#animation .scroll.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  #animation .scroll {
    gap: 1.5rem;
  }
}
.animation-tile {
  flex: none;
  width: 16rem;
  aspect-ratio: 16/10;
  background: #1e293b;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #cbd5e1;
  border: 2px solid #334155;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
}
.animation-tile:hover {
  background: #334155;
  border-color: #2563eb;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}
@media (min-width: 768px) {
  .animation-tile {
    width: 20rem;
    border-radius: 1.5rem;
  }
}
.animation-tile .img-wrap {
  position: absolute;
  inset: 0;
  background: #334155;
}
.animation-tile .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.animation-tile:hover .img-wrap img {
  opacity: 1;
}
.animation-tile .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}
.animation-tile:hover .overlay {
  background: rgba(0, 0, 0, 0.1);
}
.animation-tile span {
  font-size: 0.875rem;
  position: relative;
  z-index: 10;
  color: #fff;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .animation-tile span {
    font-size: 1rem;
  }
}
#animation .btn {
  margin-top: 2rem;
  background: #2563eb;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
}
#animation .btn:hover {
  background: #1d4ed8;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
@media (min-width: 768px) {
  #animation .btn {
    font-size: 1.125rem;
  }
}

/* Textbooks section */
#textbooks {
  padding: 2.5rem 1rem;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}
@media (min-width: 375px) {
  #textbooks {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #textbooks {
    padding: 6rem 1.5rem;
  }
}
#textbooks .section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
#textbooks .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #textbooks .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#textbooks h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-style: italic;
  letter-spacing: -0.025em;
  color: #0f172a;
}
@media (min-width: 375px) {
  #textbooks h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  #textbooks h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  #textbooks h2 {
    font-size: 3rem;
  }
}
#textbooks .sub {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (min-width: 375px) {
  #textbooks .sub {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #textbooks .sub {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}
#textbooks .scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  padding-left: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 2rem;
}
#textbooks .scroll.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#textbooks .scroll.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  #textbooks .scroll {
    gap: 1.5rem;
  }
}
.textbook-card {
  flex: none;
  width: 18rem;
  background: #fff;
  padding: 0;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
}
.textbook-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .textbook-card {
    width: 20rem;
    border-radius: 2.5rem;
  }
}
.textbook-card .img-wrap {
  height: 10rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .textbook-card .img-wrap {
    height: 12rem;
  }
}
.textbook-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.textbook-card:hover .img-wrap img {
  transform: scale(1.05);
}
.textbook-card .img-wrap .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #fff, transparent, transparent);
}
.textbook-card .img-wrap .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 10px;
  font-weight: 900;
  background: #2563eb;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.textbook-card .body {
  padding: 1.5rem;
  padding-top: 1rem;
  background: #fff;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .textbook-card .body {
    padding: 2rem;
  }
}
.textbook-card .body h3 {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #1e293b;
}
@media (min-width: 768px) {
  .textbook-card .body h3 {
    font-size: 1.25rem;
  }
}
.textbook-card .body p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}
@media (min-width: 768px) {
  .textbook-card .body p {
    font-size: 0.875rem;
  }
}
#textbooks .btn {
  margin-top: 2rem;
  background: #0f172a;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
}
#textbooks .btn:hover {
  background: #000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
@media (min-width: 768px) {
  #textbooks .btn {
    font-size: 1.125rem;
  }
}

/* Process section */
#process {
  padding: 2.5rem 1rem;
  background: linear-gradient(to bottom, #fff, rgba(248, 250, 252, 0.5));
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
}
@media (min-width: 375px) {
  #process {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #process {
    padding: 5rem 1.5rem;
  }
}
#process .section-inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
#process .mb {
  margin-bottom: 2rem;
}
@media (min-width: 375px) {
  #process .mb {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  #process .mb {
    margin-bottom: 3rem;
  }
}
#process .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #process .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#process h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #0f172a;
}
@media (min-width: 375px) {
  #process h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  #process h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  #process h2 {
    font-size: 2.25rem;
  }
}
#process .sub {
  color: #64748b;
  font-weight: 700;
  font-size: 0.875rem;
  font-style: italic;
}
@media (min-width: 375px) {
  #process .sub {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #process .sub {
    font-size: 1.125rem;
  }
}
#process .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  #process .grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}
.process-step {
  position: relative;
  height: 100%;
}
.process-step .card {
  background: #fff;
  border: 2px solid #f1f5f9;
  padding: 1.25rem;
  border-radius: 1rem;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .process-step .card {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
    border-radius: 1rem;
  }
}
.process-step .card:hover {
  border-color: #2563eb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  background: rgba(239, 246, 255, 0.3);
}
.process-step .num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .process-step .num {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}
.process-step .card:hover .num {
  background: #2563eb;
  color: #fff;
}
.process-step .card h4 {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: #1e293b;
  letter-spacing: -0.025em;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .process-step .card h4 {
    margin-bottom: 0.5rem;
  }
}
.process-step .card:hover h4 {
  color: #1d4ed8;
}
.process-step .card p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 700;
  line-height: 1.25;
  word-break: keep-all;
  text-align: center;
}
@media (min-width: 768px) {
  .process-step .card p {
    font-size: 0.75rem;
  }
}

/* FAQ section */
#faq {
  padding: 4rem 1.5rem;
  background: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #faq {
    padding: 6rem 1.5rem;
  }
}
#faq .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.05;
}
#faq .section-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
#faq .header {
  text-align: center;
  margin-bottom: 3rem;
}
#faq .eyebrow {
  color: #60a5fa;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
#faq h2 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  #faq h2 {
    font-size: 2.25rem;
  }
}
#faq .sub {
  color: #94a3b8;
  font-weight: 500;
}
#faq .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#faq .item {
  background: #1e293b;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s;
  border: 1px solid #334155;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#faq .item:hover {
  background: #1e293b;
  border-color: rgba(59, 130, 246, 0.3);
}
#faq .item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f8fafc;
  transition: color 0.2s;
  text-align: left;
}
@media (min-width: 768px) {
  #faq .item h3 {
    font-size: 1.25rem;
  }
}
#faq .item:hover h3 {
  color: #fff;
}
#faq .item p {
  color: #94a3b8;
  line-height: 1.625;
  font-weight: 500;
  padding-left: 2rem;
  border-left: 2px solid #334155;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
#faq .item p .a {
  color: #64748b;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Reviews grid section */
#reviews {
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(to bottom, #f8fafc, #fff);
  text-align: center;
}
@media (min-width: 375px) {
  #reviews {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 768px) {
  #reviews {
    padding: 6rem 1.5rem;
  }
}
#reviews .section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
#reviews .eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
@media (min-width: 375px) {
  #reviews .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
}
#reviews h2 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  letter-spacing: -0.05em;
  color: #0f172a;
}
@media (min-width: 375px) {
  #reviews h2 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  #reviews h2 {
    font-size: 1.875rem;
    margin-bottom: 6rem;
  }
}
@media (min-width: 1024px) {
  #reviews h2 {
    font-size: 2.25rem;
  }
}
#reviews .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 768px) {
  #reviews .grid {
    margin-bottom: 5rem;
  }
}
#reviews .grid.expanded {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #reviews .grid.expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #reviews .grid.expanded {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review-tile {
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.review-tile:hover {
  border-color: #bfdbfe;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.review-tile.img-tile {
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  .review-tile.img-tile {
    aspect-ratio: 1/1;
  }
}
.review-tile .img-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.review-tile .img-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.review-tile:hover .img-inner img {
  transform: scale(1.05);
}
.review-tile .img-inner .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.review-tile .img-inner .label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  text-align: left;
}
.review-tile .img-inner .label span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.25rem;
}
.review-tile.text-tile .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  text-align: left;
}
@media (min-width: 768px) {
  .review-tile.text-tile .content {
    padding: 2rem;
  }
}
.review-tile .stars {
  display: flex;
  color: #facc15;
  margin-bottom: 1rem;
  gap: 0.25rem;
}
.review-tile h5 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
  line-height: 1.25;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .review-tile h5 {
    font-size: 1.25rem;
  }
}
.review-tile .body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  color: #64748b;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .review-tile .body {
    font-size: 1rem;
  }
}
.review-tile .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f8fafc;
}
.review-tile .footer .author {
  font-size: 0.875rem;
  font-weight: 700;
  color: #94a3b8;
}
.review-tile .footer .icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}
#reviews .expand-btn {
  background: #0f172a;
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}
#reviews .expand-btn:hover {
  background: #000;
  transform: scale(1.05);
}
@media (min-width: 375px) {
  #reviews .expand-btn {
    padding: 1.25rem 3rem;
    font-size: 1rem;
    border-radius: 1rem;
  }
}
@media (min-width: 768px) {
  #reviews .expand-btn {
    padding: 1.5rem 4rem;
    font-size: 1.125rem;
    border-radius: 2rem;
  }
}

/* Final CTA section */
.final-cta {
  padding: 2.5rem 1rem;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.5), #fff);
  padding-bottom: 3rem;
}
@media (min-width: 375px) {
  .final-cta {
    padding: 3rem 1.25rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .final-cta {
    padding: 6rem 1.5rem;
    padding-bottom: 10rem;
  }
}
.final-cta .section-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .box {
  background: #0f172a;
  color: #fff;
  padding: 2rem;
  text-align: center;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.5);
}
@media (min-width: 375px) {
  .final-cta .box {
    padding: 3rem;
    border-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .final-cta .box {
    padding: 6rem;
    border-radius: 4rem;
  }
}
.final-cta .box .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse 80% 70% at 50% 0%,
      rgba(59, 130, 246, 0.08),
      transparent 50%
    ),
    linear-gradient(to bottom, #1e293b, #0f172a, #020617);
}
.final-cta .box .content {
  position: relative;
  z-index: 10;
}
.final-cta .box h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
@media (min-width: 375px) {
  .final-cta .box h2 {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .final-cta .box h2 {
    font-size: 3.75rem;
    margin-bottom: 4rem;
  }
}
.final-cta .box h2 .blue {
  color: #3b82f6;
}
.final-cta .box .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 375px) {
  .final-cta .box .buttons {
    gap: 2rem;
  }
}
.final-cta .box .cta-btn {
  width: 100%;
  max-width: 36rem;
  background: #2563eb;
  color: #fff;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 900;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.final-cta .box .cta-btn:hover {
  background: #3b82f6;
  transform: scale(1.05);
}
@media (min-width: 375px) {
  .final-cta .box .cta-btn {
    font-size: 1.25rem;
    padding: 1.5rem 2.5rem;
    border-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .final-cta .box .cta-btn {
    font-size: 1.875rem;
    padding: 2rem 3rem;
  }
}
.final-cta .box .disclaimers {
  font-size: 10px;
  opacity: 0.4;
  font-weight: 700;
  letter-spacing: 0.025em;
  word-break: keep-all;
}
@media (min-width: 375px) {
  .final-cta .box .disclaimers {
    font-size: 0.75rem;
  }
}
.final-cta .box .big-ein {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  font-weight: 900;
  font-size: 5rem;
  opacity: 0.05;
  font-style: italic;
  user-select: none;
  pointer-events: none;
  transition: transform 0.2s;
}
@media (min-width: 375px) {
  .final-cta .box .big-ein {
    font-size: 8rem;
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .final-cta .box .big-ein {
    font-size: 15rem;
    padding: 2.5rem;
  }
}
.final-cta .box:hover .big-ein {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 500;
  font-size: 0.75rem;
}
.footer .top {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .footer .top {
    flex-direction: row;
  }
}
.footer .top .links {
  display: flex;
  gap: 1.5rem;
  font-weight: 700;
}
.footer .top .links a {
  transition: color 0.2s;
}
.footer .top .links a:hover {
  color: #0f172a;
}
.footer .top .social {
  display: flex;
  gap: 0.5rem;
}
.footer .top .social a {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.footer .top .social a.yt {
  background: #ef4444;
  color: #fff;
}
.footer .top .social a.fb {
  background: #2563eb;
  color: #fff;
}
.footer .top .social a.ig {
  background: #ec4899;
  color: #fff;
}
.footer .top .social a.naver {
  background: #22c55e;
  color: #fff;
}
.footer .top .social a:hover {
  transform: scale(1.1);
}
.footer .main {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 1.5rem;
}
.footer .main img {
  height: 2rem;
  margin-bottom: 1.5rem;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: filter 0.2s;
}
.footer .main img:hover {
  filter: grayscale(0);
}
.footer .main .grid {
  display: grid;
  gap: 0.5rem 2rem;
  max-width: 56rem;
  font-size: 11px;
  line-height: 1.625;
  color: #64748b;
}
@media (min-width: 768px) {
  .footer .main .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .main .grid .row {
  display: flex;
  gap: 0.5rem;
}
.footer .main .grid .row .label {
  font-weight: 700;
  white-space: nowrap;
}
.footer .main .grid .row.col-2 {
  grid-column: span 2;
}
.footer .bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
  font-size: 10px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fade-in 0.3s ease-out;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}
.modal-overlay.video {
  z-index: 200;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.modal-overlay .modal-box {
  position: relative;
  width: 100%;
  max-width: 72rem;
  height: 90vh;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.modal-overlay .modal-box .header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  z-index: 10;
}
@media (min-width: 768px) {
  .modal-overlay .modal-box .header {
    padding: 2rem;
  }
}
.modal-overlay .modal-box .header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -0.025em;
}
.modal-overlay .modal-box .header h3 .blue {
  color: #2563eb;
}
.modal-overlay .modal-box .header .close {
  background: #f1f5f9;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  color: #64748b;
}
.modal-overlay .modal-box .header .close:hover {
  background: #e2e8f0;
  color: #ef4444;
}
.modal-overlay .modal-box .body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: #f8fafc;
}
@media (min-width: 768px) {
  .modal-overlay .modal-box .body {
    padding: 2rem;
  }
}
.modal-overlay .modal-box .body .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal-overlay .modal-box .body .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .modal-overlay .modal-box .body .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.modal-overlay.video .close-float {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}
.modal-overlay.video .close-float button {
  color: #fff;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-overlay.video .close-float button:hover {
  color: #ef4444;
}
.modal-overlay.video .video-wrap {
  position: relative;
  width: 100%;
  max-width: 80rem;
  aspect-ratio: 16/10;
  background: #000;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-overlay.video .video-wrap.tall {
  height: 80vh;
  aspect-ratio: 9/16;
  max-width: none;
}
.modal-overlay.video .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Kakao floating */
.kakao-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 375px) {
  .kakao-float {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.75rem;
  }
}
@media (min-width: 768px) {
  .kakao-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.kakao-float .bubble {
  background: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  animation: bounce-subtle 2s ease-in-out infinite;
}
@media (min-width: 375px) {
  .kakao-float .bubble {
    padding: 0.5rem 1rem;
  }
}
.kakao-float .bubble span {
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}
@media (min-width: 375px) {
  .kakao-float .bubble span {
    font-size: 0.875rem;
  }
}
.kakao-float a {
  width: 3rem;
  height: 3rem;
  background: #fee500;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  cursor: pointer;
  border: 2px solid #fee500;
  text-decoration: none;
}
@media (min-width: 375px) {
  .kakao-float a {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.kakao-float a:hover {
  transform: scale(1.1);
}
.kakao-float a span {
  color: #3c1e1e;
  font-weight: 900;
  font-size: 0.75rem;
}
@media (min-width: 375px) {
  .kakao-float a span {
    font-size: 0.875rem;
  }
}

/* 전역 제목 크기 제한 */
h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.5rem, 4.5vw, 2rem) !important;
}

/* Mobile Typography (<768px) */
@media (max-width: 768px) {
  /* Balanced Headline Wrapping */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: center;
    text-wrap: balance;
  }

  /* Fluid Typography with clamp() */
  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  }

  h2 {
    font-size: clamp(1.5rem, 4.5vw, 2rem) !important;
  }

  h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem) !important;
  }

  h4 {
    font-size: clamp(1.125rem, 3.5vw, 1.5rem) !important;
  }

  /* Body Text Padding */
  section > div > p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Section Spacing for Visual Rhythm */
  section {
    margin-bottom: 3rem;
  }
}

/* Hide Scrollbar for Horizontal Scroll */
.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Infinite Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 40s linear infinite;
}

.pause-marquee:hover {
  animation-play-state: paused;
}
