/* ============================================================
   Halal Gourmet Japan - Restaurant Listing LP
   Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  --color-primary: #c93430;
  --color-primary-dark: #a82a27;

  --color-cta: #e8960c;
  --color-cta-dark: #d4870b;
  --color-accent: #000099;
  --color-yellow: #ffcc00;

  --color-yellow-light: #fff3cc;
  --color-white: #fff;
  --color-bg: #fff;
  --color-bg-gray: #f8f8f8;

  --color-text: #333;
  --color-text-light: #666;
  --color-text-lighter: #999;
  --color-border: #e0e0e0;
  --font-family: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  --container-max: 1080px;
  --section-padding: 80px;
  --section-padding-mobile: 56px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 4px 24px rgba(0, 0, 0, 0.12);
  --transition-base: 0.3s ease;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

/* ------------------------------------------------------------
   Utility: Container
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* PC-only line break */
.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}

/* ------------------------------------------------------------
   Utility: Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.btn--primary {
  background-color: var(--color-cta);
  color: #fff;
  text-shadow: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
  background-color: var(--color-cta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--large {
  padding: 16px 48px;
  font-size: 18px;
  min-height: 56px;
}

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

@media (min-width: 768px) {
  .btn--large {
    padding: 18px 56px;
    font-size: 20px;
  }
}

/* ------------------------------------------------------------
   Sections: Common
   ------------------------------------------------------------ */
.section {
  padding: var(--section-padding-mobile) 0;
}

.section--white {
  background-color: var(--color-bg);
}

.section--gray {
  background-color: var(--color-bg-gray);
}

.section__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
}

.section__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: var(--color-yellow);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section__title--light {
  color: var(--color-white);
}

.section__title .accent {
  color: var(--color-primary);
}

.section__title--light .accent {
  color: var(--color-yellow);
}

.section__lead {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--color-text-light);
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.9);
}

.section__body {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--color-text-light);
}

.section__supplement {
  font-size: 15px;
  line-height: 1.8;
  max-width: 800px;
  margin: 32px auto 0;
  padding: 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-light);
}

.section__note {
  font-size: 14px;
  color: var(--color-text-lighter);
  text-align: center;
  margin-top: 32px;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-padding) 0;
  }

  .section__title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .section__lead {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------
   Yellow Accent Highlights
   ------------------------------------------------------------ */
.highlight--strong {
  background: linear-gradient(transparent 50%, var(--color-yellow) 50%);
  padding: 0 4px;
  font-weight: 700;
}

/* ------------------------------------------------------------
   Fade-in Animation
   ------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Section 1: Hero
   ------------------------------------------------------------ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 80px 0 80px;
  overflow: hidden;
}

/* White wave curve at the bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__text {
  text-align: center;
}

.hero__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__sub {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__micro {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* Hero title highlight color */
.hero__highlight {
  color: #ffd700;
}

/* Phone mockups */
.hero__phones {
  position: relative;
  width: 280px;
  height: 340px;
  flex-shrink: 0;
}

.hero__phone {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}

.hero__phone img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__phone--back {
  width: 180px;
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.hero__phone--front {
  width: 180px;
  top: 20px;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }

  .hero__text {
    text-align: left;
    flex: 1;
  }

  .hero__title {
    font-size: 38px;
    line-height: 1.4;
  }

  .hero__sub {
    font-size: 17px;
  }

  .hero__micro {
    font-size: 14px;
  }

  .hero__phones {
    width: 340px;
    height: 440px;
  }

  .hero__phone--back {
    width: 220px;
  }

  .hero__phone--front {
    width: 220px;
  }
}

@media (min-width: 960px) {
  .hero__title {
    font-size: 42px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .hero__phones {
    width: 380px;
    height: 480px;
  }

  .hero__phone--back {
    width: 240px;
  }

  .hero__phone--front {
    width: 240px;
    top: 30px;
  }
}

/* ------------------------------------------------------------
   Card Grids
   ------------------------------------------------------------ */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------------------------------------
   Section 2: Stat Cards (Market Opportunity)
   ------------------------------------------------------------ */
.stat-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.stat-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.stat-card__icon {
  display: inline-flex;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card__label {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.stat-card__number {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  border-bottom: 4px solid var(--color-yellow);
  display: inline-block;
  padding-bottom: 4px;
  white-space: nowrap;
}

.stat-card__number--text {
  font-size: 32px;
}

.stat-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .stat-card {
    padding: 40px 28px;
  }

  .stat-card__number {
    font-size: 42px;
  }
}

/* ------------------------------------------------------------
   Section 3: Problem Cards (Pain Points)
   ------------------------------------------------------------ */
.problem-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.problem-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.problem-card__emoji {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}

.problem-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.problem-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .problem-card {
    padding: 40px 28px;
  }

  .problem-card__title {
    font-size: 20px;
  }
}

.reassurance {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--color-primary);
}

.reassurance__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  background: linear-gradient(transparent 50%, var(--color-yellow) 50%);
  display: inline;
}

.reassurance__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.reassurance__body + .reassurance__body {
  margin-top: 12px;
  font-weight: 700;
  color: var(--color-text);
}

/* Section subtitle */
.section__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-light);
  margin-top: -32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section__subtitle {
    font-size: 16px;
    margin-top: -40px;
  }
}

/* About box (Service section) */
.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background-color: var(--color-bg-gray);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  margin-bottom: 48px;
}

.about-box__emoji {
  flex: 0 0 auto;
  font-size: 80px;
  line-height: 1;
  text-align: center;
}

.about-box__text {
  flex: 1;
}

.about-box__heading {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.about-box__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about-box__text p:last-child {
  margin-bottom: 0;
}

.about-box__text .accent {
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .about-box {
    flex-direction: row;
    padding: 48px 40px;
    gap: 40px;
  }

  .about-box__emoji {
    flex: 0 0 auto;
    font-size: 120px;
  }

  .about-box__heading {
    font-size: 24px;
  }

  .about-box__text p {
    font-size: 16px;
  }
}

/* Solution lead (after pain points) */
.solution-lead {
  text-align: center;
  position: relative;
  margin: 48px 0 40px;
  padding: 28px 24px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 20px rgba(201, 52, 48, 0.3);
}

.solution-lead__arrow {
  display: none;
}

.solution-lead__text {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.solution-lead__text .accent {
  color: var(--color-yellow);
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .solution-lead {
    padding: 32px 40px 28px;
  }

  .solution-lead__text {
    font-size: 28px;
    white-space: nowrap;
  }
}

/* ------------------------------------------------------------
   Section 4: Benefit Cards
   ------------------------------------------------------------ */
.benefit-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 24px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: box-shadow var(--transition-base);
}

.benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.benefit-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
  font-size: 40px;
  line-height: 1;
}

.benefit-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.4;
}

.benefit-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .benefit-card {
    padding: 36px 32px;
  }

  .benefit-card__title {
    font-size: 19px;
  }

  .benefit-card__desc {
    font-size: 15px;
  }
}

/* Small screen: stack icon and content vertically */
@media (max-width: 480px) {
  .benefit-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ------------------------------------------------------------
   Section 5: KPI Grid (Results)
   ------------------------------------------------------------ */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.kpi-card {
  background-color: var(--color-bg-gray);
  border-radius: var(--border-radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow var(--transition-base);
}

.kpi-card:hover {
  box-shadow: var(--shadow-card);
}

.kpi-card__number {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.kpi-card__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.kpi-card__desc {
  font-size: 12px;
  color: var(--color-text-lighter);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .kpi-card {
    padding: 32px 20px;
  }

  .kpi-card__number {
    font-size: 36px;
  }

  .kpi-card__label {
    font-size: 14px;
  }

  .kpi-card__desc {
    font-size: 13px;
  }
}

/* ------------------------------------------------------------
   Section 6: Media Cards (Promotion)
   ------------------------------------------------------------ */
.media-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.media-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.media-card__icon {
  display: inline-flex;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.media-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.media-card__stat {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}

.media-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   Section 7: FAQ Accordion
   ------------------------------------------------------------ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition-base);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  transition: transform var(--transition-base);
  color: var(--color-text-lighter);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 0 24px;
}

.faq-item__answer-inner p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ------------------------------------------------------------
   Section 8: Contact / CTA
   ------------------------------------------------------------ */
.section--cta {
  background: linear-gradient(135deg, #7a1c1a 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 768px) {
  .section--cta {
    padding: var(--section-padding) 0;
  }
}

/* Contact Email */
.contact-email {
  text-align: center;
}

.contact-email__micro {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-email__fallback {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-email__fallback-link {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.contact-email__fallback-link:hover {
  color: var(--color-white);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background-color: #222;
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer__brand {
    flex-direction: row;
    gap: 16px;
  }
}

.footer__copy {
  font-size: 13px;
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ------------------------------------------------------------
   Sticky Header (appears after hero scrolls out)
   ------------------------------------------------------------ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 60px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.sticky-header.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.sticky-header__logo {
  height: 100%;
  width: auto;
}

.btn--small {
  padding: 10px 28px;
  font-size: 14px;
  min-height: 40px;
}

@media (min-width: 768px) {
  .sticky-header {
    height: 95px;
  }

  .sticky-header__inner {
    padding: 0 40px;
  }

  .btn--small {
    padding: 14px 36px;
    font-size: 16px;
    min-height: 48px;
  }
}

/* ------------------------------------------------------------
   Sticky CTA (Mobile)
   ------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta__inner {
  max-width: 480px;
  margin: 0 auto;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item__answer {
    transition: none;
  }

  .sticky-cta {
    transition: none;
  }

  .btn {
    transition: none;
  }
}
