@charset "UTF-8";
:root {
  /* Colors — original palette */
  --typography: #404040;
  --typography-white: #ffffff;
  --background-lv1: #FFFFE2;
  --background-lv2: #F1E4C3;
  --background-white: #FFFFFF;
  --button-background: #FFB100;
  --footer-background: #637A9F;
  /* Gradients (using original tones) */
  --gradient-brand: linear-gradient(135deg, #FFB100 0%, #FF9800 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
  --gradient-footer: linear-gradient(135deg, #637A9F 0%, #4A6380 100%);
  --gradient-text-heading: linear-gradient(135deg, #FFB100 0%, #FF9800 100%);
  --gradient-accent-line: linear-gradient(90deg, #FFB100 0%, #FF9800 50%, #FFB100 100%);
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 4px 20px rgba(255, 177, 0, 0.25);
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.6s ease;
  /* Fonts */
  --font-size: 10px;
  --font-size-extralight: 1.0rem;
  --font-size-light: 1.2rem;
  --font-size-medium: 1.6rem;
  --font-size-h1: 3.2rem;
  --font-size-h2: 6.4rem;
  --font-size-h3: 2.0rem;
  --letter-spacing: 0.05em;
  --line-height: 1.5;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-family: "Barlow", "Noto Sans JP", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  :root {
    --font-size-h2: 7.2rem;
    --font-size-h3: 2.4rem;
    --font-size-extralight: 1.2rem;
    --font-size-light: 1.4rem;
    --font-size-medium: 1.8rem;
  }
}
@media screen and (min-width: 1280px) {
  :root {
    --font-size-h2: 9.0rem;
    --font-size-h3: 2.8rem;
    --font-size-extralight: 1.4rem;
    --font-size-light: 1.6rem;
    --font-size-medium: 2.0rem;
  }
}

* {
  letter-spacing: var(--letter-spacing);
}

html {
  font-size: var(--font-size);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
  font-family: var(--font-family);
  color: var(--typography);
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

.wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-text-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*
BUTTON
================================================================================== */
.button-container {
  display: flex;
  justify-content: center;
}
.button-container .button {
  width: 200px;
  height: 52px;
  border-radius: 26px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
  color: var(--typography-white);
  font-weight: var(--font-weight-bold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  /* Shimmer effect */
}
.button-container .button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(255, 177, 0, 0.4);
}
.button-container .button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.button-container .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transition: none;
}
.button-container .button:hover::after {
  animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/*
HEADER — Glassmorphism + Navigation
================================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  /* Hamburger button */
  /* Navigation */
}
.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.site-header.scroll {
  background-color: rgba(255, 255, 226, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 177, 0, 0.2);
}
.site-header.scroll .site-title a {
  color: var(--typography);
}
.site-header.scroll .nav-toggle span {
  background-color: var(--typography);
}
.site-header.scroll .site-nav a {
  color: var(--typography);
}
.site-header .site-title {
  display: inline-block;
  color: var(--typography-white);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extra-bold);
}
.site-header .site-title a {
  display: block;
  height: 100%;
}
.site-header .nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}
.site-header .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--typography-white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header .nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .site-header .nav-toggle {
    display: none;
  }
}
.site-header .site-nav {
  display: none;
}
.site-header .site-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 226, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: var(--shadow-md);
}
.site-header .site-nav.open a {
  display: block;
  padding: 12px 5%;
  color: var(--typography);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-medium);
  transition: background-color var(--transition-fast);
}
.site-header .site-nav.open a:hover {
  background-color: rgba(255, 177, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .site-header .site-nav {
    display: flex;
    gap: 24px;
  }
  .site-header .site-nav a {
    color: var(--typography-white);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-light);
    transition: opacity var(--transition-fast);
  }
  .site-header .site-nav a:hover {
    opacity: 0.7;
  }
}

/*
FOOTER — Gradient + Navigation
================================================================================== */
.site-footer {
  color: var(--typography-white);
  background: var(--gradient-footer);
  overflow: hidden;
  position: relative;
}
.site-footer .wrapper {
  margin: 80px auto 60px;
}
.site-footer .wrapper .site-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extra-bold);
  margin-bottom: 40px;
}
.site-footer .wrapper .footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 40px;
}
.site-footer .wrapper .footer-nav a {
  color: var(--typography-white);
  font-size: var(--font-size-light);
  font-weight: var(--font-weight-bold);
  transition: opacity var(--transition-fast);
}
.site-footer .wrapper .footer-nav a:hover {
  opacity: 0.7;
}
.site-footer .wrapper .sns-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}
.site-footer .wrapper .sns-list a {
  display: block;
  max-width: 50px;
  aspect-ratio: 1/1;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}
.site-footer .wrapper .sns-list a:hover {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}
.site-footer .wrapper .sns-list a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer .wrapper .portfolio-msg {
  font-size: var(--font-size-light);
  margin-bottom: 40px;
}
.site-footer .wrapper .copyright p {
  text-align: center;
  font-size: var(--font-size-light);
  font-weight: var(--font-weight-light);
}

/*
HERO / TOP — Gradient overlay + Parallax
================================================================================== */
.top {
  background-image: url("../images/craft-beer.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 78px 0 40px;
  color: var(--typography-white);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top {
    background-attachment: scroll;
  }
}
.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
}
.top .wrapper {
  height: calc(100svh - 78px - 40px);
  min-height: 812px;
  position: relative;
}
.top .wrapper .catch-copy {
  position: absolute;
  top: 15%;
  right: 0;
}
.top .wrapper .catch-copy span {
  display: block;
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  text-align: right;
  padding: 5px;
  margin-bottom: 5px;
}
.top .wrapper .catch-copy span:nth-last-child(1) {
  margin-bottom: 0;
}
.top .wrapper .title {
  position: absolute;
  top: 35%;
  right: 0;
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extra-bold);
  text-align: right;
}
.top .wrapper .title h2 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.top .wrapper .hero-cta {
  position: absolute;
  top: 55%;
  right: 0;
}
.top .wrapper .portfolio-msg {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*
SECTION — Base
================================================================================== */
.section {
  background-color: var(--background-lv1);
  overflow: hidden;
  /* Section images */
}
.section .wrapper {
  margin: 80px auto 60px;
}
.section .wrapper .section-title {
  margin-bottom: 40px;
  text-align: center;
}
.section .wrapper .section-title h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
  background: var(--gradient-text-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section .wrapper .section-title p {
  font-weight: var(--font-weight-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--font-size-light);
}
.section .wrapper .section-content .delicious-point {
  margin-top: 60px;
}
.section .wrapper .section-content .delicious-point .point {
  display: block;
  margin-bottom: 60px;
}
.section .wrapper .section-content .delicious-point .point .point-img-container {
  margin-bottom: 40px;
}
.section .wrapper .section-content .delicious-point .point .point-img-container img {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition-base);
}
.section .wrapper .section-content .delicious-point .point .point-img-container img:hover {
  transform: scale(1.05);
}
.section .wrapper .section-content .delicious-point .point .point-content .point-num-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.section .wrapper .section-content .delicious-point .point .point-content .point-num-container .point-num {
  display: inline-block;
  padding: 10px 45px;
  border-radius: 20px;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-glow);
  color: var(--typography-white);
  font-weight: var(--font-weight-bold);
}
.section .wrapper .section-content .delicious-point .point .point-content h4 {
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 40px;
}
.section .wrapper .section-content .delicious-point .point .point-content > p {
  margin-bottom: 10px;
}
.section .wrapper .section-content .delicious-point .point .point-content > p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .section .wrapper .section-content .delicious-point .point {
    display: flex;
  }
  .section .wrapper .section-content .delicious-point .point .point-img-container {
    width: 50%;
    margin-bottom: 0;
  }
  .section .wrapper .section-content .delicious-point .point .point-content {
    width: 50%;
  }
}
.section .section-img-wrapper {
  position: relative;
  overflow: hidden;
}
.section .section-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.section .section-img-wrapper .section-img {
  width: 100%;
  max-height: 512px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.section .section-img-wrapper:hover .section-img {
  transform: scale(1.05);
}
.section .section-img {
  width: 100%;
  max-height: 512px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
CONTRAST SECTIONS — alternating backgrounds
================================================================================== */
#secretDelicious,
#lineup,
#customerVoice {
  background-color: var(--background-lv2);
}

#secretDelicious .section-img-wrapper .section-img,
#secretDelicious .section-img {
  max-height: 768px;
}
#secretDelicious .point {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
#secretDelicious .point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/*
SLIDESHOW
================================================================================== */
#specialEvents .wrapper.section-top {
  margin: 80px auto 40px;
}
#specialEvents .wrapper.section-bottom {
  margin: 40px auto 60px;
}
#specialEvents .slider-container {
  width: 100%;
  margin: 0 auto;
  /* Slick dots */
}
#specialEvents .slider-container .slick-slide {
  margin: 0 10px;
  border-radius: 20px;
}
#specialEvents .slider-container .slick-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#specialEvents .slider-container .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 0;
  list-style: none;
}
#specialEvents .slider-container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(64, 64, 64, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
#specialEvents .slider-container .slick-dots li.slick-active button {
  background-color: var(--button-background);
  transform: scale(1.3);
}
@media screen and (min-width: 1921px) {
  #specialEvents .slider-container {
    width: 1280px;
  }
  #specialEvents .slider-container .slick-slide {
    margin: 0;
  }
}
#specialEvents .section-content p {
  margin-bottom: 40px;
}

/*
LINEUP
================================================================================== */
#lineup .lineup-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #lineup .lineup-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
#lineup .lineup-list .lineup-item {
  background-color: var(--background-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
#lineup .lineup-list .lineup-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
#lineup .lineup-list .lineup-item .lineup-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#lineup .lineup-list .lineup-item .lineup-detail {
  padding: 24px;
}
#lineup .lineup-list .lineup-item .lineup-detail h4 {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-medium);
  margin-bottom: 10px;
}
#lineup .lineup-list .lineup-item .lineup-detail .lineup-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
#lineup .lineup-list .lineup-item .lineup-detail .lineup-tags span {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: var(--typography-white);
  font-size: var(--font-size-extralight);
  font-weight: var(--font-weight-bold);
}
#lineup .lineup-list .lineup-item .lineup-detail p {
  font-size: var(--font-size-light);
  line-height: 1.7;
}
#lineup .lineup-cta {
  margin-top: 40px;
}

/*
CUSTOMER VOICE
================================================================================== */
#customerVoice .voice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  #customerVoice .voice-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
#customerVoice .voice-list .voice-item {
  background-color: var(--background-white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
#customerVoice .voice-list .voice-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
}
#customerVoice .voice-list .voice-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
#customerVoice .voice-list .voice-item .voice-stars {
  color: #FFB100;
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
#customerVoice .voice-list .voice-item .voice-text {
  font-size: var(--font-size-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
#customerVoice .voice-list .voice-item .voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#customerVoice .voice-list .voice-item .voice-author .voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--typography-white);
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  flex-shrink: 0;
}
#customerVoice .voice-list .voice-item .voice-author .voice-name {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-light);
}
#customerVoice .voice-list .voice-item .voice-author .voice-name span {
  display: block;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-extralight);
  color: #888;
  margin-top: 2px;
}

/*
FLOW
================================================================================== */
#flow .section-content > p {
  margin-bottom: 40px;
}
#flow .section-content .flow-list .flow {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background-color: var(--background-white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
#flow .section-content .flow-list .flow:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
#flow .section-content .flow-list .flow:nth-last-child(1) {
  margin-bottom: 0;
}
#flow .section-content .flow-list .flow .flow-img {
  width: 25%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flow .section-content .flow-list .flow .flow-img img {
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-base);
}
#flow .section-content .flow-list .flow .flow-img img:hover {
  transform: scale(1.05);
}
#flow .section-content .flow-list .flow .flow-content {
  width: 75%;
  padding-left: 20px;
}
#flow .section-content .flow-list .flow .flow-content h4 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

/*
SUBSCRIPTION PLAN — Pricing grid
================================================================================== */
#subscriptionPlan .wrapper .section-content {
  text-align: center;
  margin-bottom: 40px;
}
#subscriptionPlan .plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  #subscriptionPlan .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
#subscriptionPlan .plan-card {
  background-color: var(--background-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  flex: 1;
  /* Popular plan */
}
#subscriptionPlan .plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
}
#subscriptionPlan .plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
#subscriptionPlan .plan-card .plan-img {
  width: 100%;
  overflow: hidden;
}
#subscriptionPlan .plan-card .plan-img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}
#subscriptionPlan .plan-card .plan-img:hover img {
  transform: scale(1.05);
}
#subscriptionPlan .plan-card .popular-badge,
#subscriptionPlan .plan-card .plan-header,
#subscriptionPlan .plan-card .plan-features,
#subscriptionPlan .plan-card .button-container {
  padding-left: 28px;
  padding-right: 28px;
}
#subscriptionPlan .plan-card .plan-header {
  padding-top: 24px;
}
#subscriptionPlan .plan-card .plan-features {
  flex: 1;
}
#subscriptionPlan .plan-card .button-container {
  padding-bottom: 32px;
}
#subscriptionPlan .plan-card.popular {
  box-shadow: var(--shadow-md);
  border: 2px solid var(--button-background);
}
@media screen and (min-width: 768px) {
  #subscriptionPlan .plan-card.popular {
    transform: scale(1.05);
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  #subscriptionPlan .plan-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
  }
}
#subscriptionPlan .plan-card .popular-badge {
  display: inline-block;
  width: 200px;
  background: var(--gradient-brand);
  color: var(--typography-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-extralight);
  padding: 4px 20px;
  border-radius: 12px;
  margin: 20px auto 0;
}
#subscriptionPlan .plan-card .plan-header {
  margin-bottom: 28px;
}
#subscriptionPlan .plan-card .plan-header .plan-name {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}
#subscriptionPlan .plan-card .plan-header .plan-price .price-amount {
  font-size: 4rem;
  font-weight: var(--font-weight-extra-bold);
  line-height: 1.2;
  background: var(--gradient-text-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#subscriptionPlan .plan-card .plan-header .plan-price .price-unit {
  font-size: var(--font-size-light);
  font-weight: var(--font-weight-bold);
}
#subscriptionPlan .plan-card .plan-header .plan-price .tax {
  font-size: var(--font-size-extralight);
  font-weight: var(--font-weight-regular);
  color: #888;
}
#subscriptionPlan .plan-card .plan-features {
  text-align: left;
  margin-bottom: 28px;
  padding: 0 24px;
}
#subscriptionPlan .plan-card .plan-features li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--font-size-light);
  position: relative;
}
#subscriptionPlan .plan-card .plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--button-background);
  font-weight: var(--font-weight-bold);
}
#subscriptionPlan .plan-card .plan-features li:last-child {
  border-bottom: none;
}

/*
Q&A
================================================================================== */
#qAndA {
  position: relative;
}
#qAndA .wrapper .section-content .qa-list li {
  border-bottom: 1px solid rgba(64, 64, 64, 0.15);
  position: relative;
  transition: all var(--transition-base);
}
#qAndA .wrapper .section-content .qa-list li:hover {
  background-color: rgba(255, 177, 0, 0.06);
}
#qAndA .wrapper .section-content .qa-list li:nth-last-of-type(1) {
  border-bottom: none;
}
#qAndA .wrapper .section-content .qa-list li a {
  display: block;
  padding: 15px 5px;
  position: relative;
}
#qAndA .wrapper .section-content .qa-list li p {
  padding: 15px 5px;
  position: relative;
  left: 0;
  top: 0;
  visibility: visible;
  opacity: 1;
  display: none;
  transition: none;
}
#qAndA .wrapper .section-content .qa-list li .open-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  -webkit-mask: url("../images/icons/open.svg");
          mask: url("../images/icons/open.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--typography);
  transition: all var(--transition-base);
}
#qAndA .wrapper .section-content .qa-list li.active .open-icon {
  transform: translateY(-50%) rotate(135deg);
}
#qAndA img {
  aspect-ratio: 1/1;
}
#qAndA .footer-devider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 226, 0) 0%, rgb(99, 122, 159) 100%);
}

/*
BACK TO TOP
================================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--typography-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), box-shadow var(--transition-fast);
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top.visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}/*# sourceMappingURL=style.css.map */