@import url("./Token.css");

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c_White);
  color: var(--c_Black);
  font-family: "Pretendard Variable", var(--f_FamilyMain), sans-serif;
  font-size: var(--f_BodySize);
  font-weight: var(--f_BodyWeight);
  line-height: var(--f_BodyLh);
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   COMMON LAYOUT & COMPONENTS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-bg {
  position: relative;
}

.grid-bg::before,
.grid-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--c_LightGrey);
  pointer-events: none;
  z-index: -1;
}

.grid-bg::before {
  left: 33.333%;
}
.grid-bg::after {
  left: 66.666%;
}

.tag-box {
  display: inline-block;
  border: 1px solid var(--c_NormalGrey);
  padding: 6px 14px;
  font-size: var(--f_TagSize);
  font-weight: 500;
  color: var(--c_HeavyGrey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tag-box-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--c_White) 18%, transparent);
  background: color-mix(in srgb, var(--c_White) 4%, transparent);
  backdrop-filter: blur(8px);
  color: color-mix(in srgb, var(--c_White) 85%, transparent);
  font-size: var(--f_TagSize);
  font-weight: 500;
  padding: 6px 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tag-box-dark::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--c_White) 90%, transparent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--c_White) 80%, transparent);
}

@media (max-width: 900px) {
  .grid-bg::before,
  .grid-bg::after {
    display: none;
  }
}

/* ==========================================================================
   MOBILE BR CONTROL (HEADINGS & HEADING-SIZE CLASSES ONLY)
   ========================================================================== */
@media (max-width: 900px) {
  br {
    display: none;
  }

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  .logo br,
  .main-title br,
  .section-title br,
  .chart-header-title br,
  .card-title br,
  .impact-title br,
  .step-title br,
  .faq-question br,
  .cta-card h2 br {
    display: inline;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c_White);
  border-bottom: 1px solid var(--c_NormalGrey);
  padding: 18px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: var(--f_SubheadingSize);
  font-weight: var(--f_HeadingWeight);
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: var(--f_SubBodySize);
  font-weight: 400;
  color: var(--c_HeavyGrey);
  cursor: pointer;
  transition: color 0.2s;
}

.btn-split {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--c_Black);
  background-color: var(--c_Black);
  color: var(--c_White);
  font-size: var(--f_BodySize);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn-split .btn-text {
  padding: 14px 24px;
}

.btn-split .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-left: 1px solid var(--c_White);
  border-left-color: color-mix(in srgb, var(--c_White) 20%, transparent);
}

.btn-split .btn-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-split-outline {
  position: relative;
  overflow: hidden;
  background-color: var(--c_White);
  color: var(--c_Black);
  border: 1px solid var(--c_NormalGrey);
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
  z-index: 1;
}

.btn-split-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c_Black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-split-outline .btn-text {
  position: relative;
  z-index: 2;
}

.btn-split-outline .btn-icon {
  position: relative;
  z-index: 2;
  border-left-color: var(--c_NormalGrey);
  transition: border-color 0.3s ease;
}

@media (hover: hover) {
  .nav-links a:hover {
    color: var(--c_Black);
  }
  .btn-split:hover {
    opacity: 0.9;
  }
  .btn-split:hover .btn-icon svg {
    transform: translate(2px, -2px);
  }
  .btn-split-outline:hover {
    color: var(--c_White);
    border-color: var(--c_Black);
  }
  .btn-split-outline:hover::before {
    transform: scaleX(1);
  }
  .btn-split-outline:hover .btn-icon {
    border-left-color: color-mix(in srgb, var(--c_White) 20%, transparent);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.section1 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c_NormalGrey);
  padding: 60px 0;
}

.section1-container {
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.main-title {
  font-size: var(--f_HeadingSize);
  font-weight: var(--f_HeadingWeight);
  line-height: var(--f_HeadingLh);
  color: var(--c_Black);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: var(--f_BodySize);
  line-height: var(--f_BodyLh);
  color: var(--c_HeavyGrey);
  margin-bottom: 36px;
}

.category-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-item {
  font-size: var(--f_BodySize);
  font-weight: 600;
  color: var(--c_Black);
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.tab-item .check-icon {
  width: 16px;
  height: 16px;
  stroke: var(--c_Black);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .section1 {
    min-height: auto;
  }
}

/* ==========================================================================
   SECTION 2: CHART & COMPARISON TABLE
   ========================================================================== */
.section2 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--c_NormalGrey);
}

.section2 .container {
  width: 100%;
}

.bg-sub {
  background-color: color-mix(in srgb, var(--c_LightGrey) 30%, var(--c_White));
}

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: var(--f_HeadingSize);
  font-weight: var(--f_HeadingWeight);
  line-height: var(--f_HeadingLh);
  color: var(--c_Black);
  margin-bottom: 16px;
}

.section-desc {
  font-size: var(--f_BodySize);
  line-height: var(--f_BodyLh);
  color: var(--c_HeavyGrey);
  max-width: 540px;
}

.cmp-card {
  border: 1px solid var(--c_NormalGrey);
  background: var(--c_White);
  padding: 40px;
}

.chart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--f_SubheadingSize);
  font-weight: var(--f_SubheadingWeight);
  line-height: 1.2;
  color: var(--c_Black);
  margin-bottom: 32px;
}

.chart-header-title [data-icon="chart"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chart-header-title .chart-icon {
  display: block;
  stroke: var(--c_Black);
  width: 20px;
  height: 20px;
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.chart-grid {
  display: grid;
  grid-template-columns: 20% repeat(4, 1fr);
  align-items: flex-end;
  height: 200px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--c_NormalGrey);
  box-sizing: border-box;
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}

.chart-col:first-child {
  visibility: hidden;
}

.chart-val {
  font-size: var(--f_SubBodySize);
  color: var(--c_HeavyGrey);
  margin-bottom: 8px;
  text-align: center;
}

.chart-val.highlight {
  font-size: var(--f_BodySize);
  font-weight: 700;
  color: var(--c_Black);
}

.bar-track {
  width: 36px;
  height: 120px;
  background-color: var(--c_White);
  border: 1px solid var(--c_NormalGrey);
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
  box-sizing: border-box;
}

.bar-fill {
  width: 100%;
  background-color: var(--c_NormalGrey);
  height: 0% !important;
  transition: height 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill.active {
  background-color: var(--c_Black);
}

.bar-fill.is-animated {
  height: var(--target-height) !important;
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.cmp-table th,
.cmp-table td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--c_NormalGrey);
  font-size: var(--f_BodySize);
  width: 20%;
  vertical-align: middle;
}

.cmp-table th {
  background-color: var(--c_White);
  color: var(--c_Black);
  font-weight: 700;
  padding-top: 20px;
}

.cmp-table th.align-left,
.cmp-table td.align-left {
  text-align: left;
  width: 20%;
}

.cmp-table td.check {
  font-weight: bold;
  color: var(--c_Black);
}

.cmp-table [data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.cmp-table .check-icon,
.cmp-table .close-icon {
  stroke: var(--c_Black);
  width: 18px;
  height: 18px;
}

.mobile-text {
  display: none;
}

@media (max-width: 900px) {
  .section2 {
    min-height: auto;
    padding: 60px 0;
  }
  .cmp-card {
    padding: 20px 16px;
  }
  .cmp-table th,
  .cmp-table td {
    padding: 12px 6px;
    font-size: 14px;
  }
  .chart-grid {
    height: 160px;
  }
  .bar-track {
    height: 90px;
    width: 28px;
  }
  .desktop-text {
    display: none;
  }
  .mobile-text {
    display: inline;
  }
}

/* ==========================================================================
   SECTION 3: KEY FEATURES
   ========================================================================== */
.section3 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--c_NormalGrey);
}

.section3 .container {
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--c_White);
  border: 1px solid var(--c_NormalGrey);
  padding: 48px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  min-height: 340px;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--c_Black) 6%, transparent);
  }
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.card-label-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--f_BodySize);
  font-weight: 700;
  color: var(--c_Black);
}

.card-label-group [data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-label-group .feature-icon {
  stroke: var(--c_Black);
  display: block;
}

.icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--c_Black);
}

.badge-black {
  background-color: var(--c_Black);
  color: var(--c_White);
  font-size: var(--f_TagSize);
  font-weight: 400;
  padding: 6px 12px;
  letter-spacing: 0.04em;
}

.card-title {
  font-size: var(--f_SubheadingSize);
  font-weight: var(--f_SubheadingWeight);
  line-height: var(--f_SubheadingLh);
  color: var(--c_Black);
  margin-bottom: 16px;
}

.card-desc-text {
  font-size: var(--f_BodySize);
  line-height: var(--f_BodyLh);
  color: var(--c_HeavyGrey);
  margin-bottom: 36px;
}

.card-footer {
  border-top: 1px solid var(--c_NormalGrey);
  padding-top: 20px;
  font-size: var(--f_TagSize);
  font-weight: 500;
  color: var(--c_HeavyGrey);
}

.cta-card {
  border: 1px solid var(--c_NormalGrey);
  background-color: var(--c_White);
  padding: 60px 24px;
  text-align: center;
}

.cta-card h2 {
  font-size: var(--f_HeadingSize);
  font-weight: var(--f_HeadingWeight);
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--c_HeavyGrey);
  margin-bottom: 32px;
  font-size: var(--f_BodySize);
}

@media (max-width: 900px) {
  .section3 {
    min-height: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 32px 24px 24px;
    min-height: auto;
  }
}

/* ==========================================================================
   SECTION 4: IMPACT KEY METRICS
   ========================================================================== */
.section4 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  position: relative;
  background-color: transparent;
  color: var(--c_White);
  border-bottom: 1px solid color-mix(in srgb, var(--c_White) 8%, transparent);
  padding: 120px 0;
  overflow: hidden;
}

.section4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c_Black);
  background-image: radial-gradient(
    circle at 80% 50%,
    color-mix(in srgb, var(--c_White) 4%, transparent) 0%,
    transparent 60%
  );
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section4.is-active::before {
  transform: scaleX(1);
}

.section4 .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.impact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.impact-header {
  flex: 1 1 50%;
  width: 50%;
}

.impact-title {
  font-size: var(--f_HeadingSize);
  font-weight: var(--f_HeadingWeight);
  line-height: var(--f_HeadingLh);
  color: var(--c_White);
}

.metrics-list {
  flex: 1 1 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.metric-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--c_White) 10%, transparent);
}

.metric-row:first-child {
  border-top: 1px solid color-mix(in srgb, var(--c_White) 10%, transparent);
}

.metric-value {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c_White);
  text-shadow: 0 0 25px color-mix(in srgb, var(--c_White) 15%, transparent);
  white-space: nowrap;
  margin-bottom: 36px;
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}

.metric-value .unit-sm {
  font-size: 0.45em;
  font-weight: 500;
  margin-right: 4px;
  color: color-mix(in srgb, var(--c_White) 70%, transparent);
  letter-spacing: normal;
}

.metric-desc {
  font-size: var(--f_BodySize);
  line-height: 1.6;
  color: color-mix(in srgb, var(--c_NormalGrey) 60%, transparent);
  word-break: keep-all;
  font-weight: 400;
  max-width: 100%;
  text-align: left;
  margin: 0;
}

@media (max-width: 900px) {
  .section4 {
    padding: 80px 0;
    min-height: auto;
  }
  .impact-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }
  .impact-header {
    max-width: 100%;
    width: 100%;
  }
  .metrics-list {
    width: 100%;
  }
  .metric-row {
    padding: 36px 0;
  }
}

/* ==========================================================================
   SECTION 5: PROCESS
   ========================================================================== */
.section5 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  background-color: var(--c_White);
  border-bottom: 1px solid var(--c_NormalGrey);
}

.section5 .container {
  width: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.step-card {
  background-color: var(--c_White);
  border: 1px solid var(--c_NormalGrey);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.step-num {
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c_Black);
  letter-spacing: -0.04em;
}

.step-badge {
  font-size: var(--f_TagSize);
  font-weight: 500;
  color: var(--c_HeavyGrey);
  border: 1px solid var(--c_NormalGrey);
  padding: 4px 8px;
  letter-spacing: 0.05em;
}

.step-title {
  font-size: var(--f_SubheadingSize);
  font-weight: var(--f_SubheadingWeight);
  line-height: var(--f_SubheadingLh);
  color: var(--c_Black);
  margin-bottom: 24px;
}

.step-desc {
  font-size: var(--f_BodySize);
  line-height: var(--f_BodyLh);
  color: var(--c_HeavyGrey);
}

.step-footer {
  border-top: 1px dashed var(--c_NormalGrey);
  padding-top: 24px;
  margin-top: 36px;
}

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--f_TagSize);
  font-weight: 500;
  color: var(--c_HeavyGrey);
  line-height: 1;
}

.step-time [data-icon="clock"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.step-time .clock-icon {
  display: block;
  width: 100%;
  height: 100%;
  stroke: var(--c_HeavyGrey);
}

@media (hover: hover) {
  .step-card:hover {
    transform: translateY(-6px);
    border-color: var(--c_Black);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--c_Black) 6%, transparent);
  }

  .step-card:hover .step-badge {
    background-color: var(--c_Black);
    color: var(--c_White);
    border-color: var(--c_Black);
  }
}

@media (max-width: 900px) {
  .section5 {
    min-height: auto;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card {
    min-height: auto;
    padding: 28px 20px;
  }
}

/* ==========================================================================
   SECTION 6: CUSTOMER REVIEWS
   ========================================================================== */
.section6 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  background-color: var(--c_White);
  border-bottom: 1px solid var(--c_NormalGrey);
  overflow: hidden;
}

.section6 .container {
  width: 100%;
}

.section6 .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.review-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.review-row.marquee-left .review-track {
  animation: marqueeLeft 36s linear infinite;
}

.review-row.marquee-right .review-track {
  animation: marqueeRight 36s linear infinite;
}

.review-row:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: 380px;
  flex-shrink: 0;
  background-color: var(--c_White);
  border: 1px solid var(--c_NormalGrey);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.review-card:hover {
  border-color: var(--c_Black);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--c_Black) 6%, transparent);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--c_Black);
  border: 1px solid var(--c_Black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-avatar [data-icon="profile"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-avatar .profile-icon {
  width: 20px;
  height: 20px;
  stroke: var(--c_White);
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.review-name {
  font-size: var(--f_SubBodySize);
  font-weight: 600;
  color: var(--c_Black);
}

.review-title {
  font-size: var(--f_TagSize);
  font-weight: 500;
  color: var(--c_HeavyGrey);
}

.review-content {
  font-size: var(--f_BodySize);
  line-height: 1.6;
  color: var(--c_HeavyGrey);
  word-break: keep-all;
}

@keyframes marqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  .section6 {
    min-height: auto;
  }
  .review-card {
    width: 300px;
    padding: 20px 18px;
  }
}

/* ==========================================================================
   SECTION 7: PRICING
   ========================================================================== */
.section7 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--c_NormalGrey);
}

.section7 .container {
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pricing-card {
  background-color: var(--c_White);
  border: 1px solid var(--c_NormalGrey);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  min-height: 380px;
}

@media (hover: hover) {
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--c_Black) 6%, transparent);
  }
}

.pricing-card .plan-price {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  color: var(--c_Black);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pricing-card .plan-price .currency {
  font-size: 0.65em;
  font-weight: 600;
  margin-right: 2px;
}

.pricing-card .plan-price .per {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--c_HeavyGrey);
  margin-left: 3px;
}

.pricing-card [data-icon="pricing"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .feature-icon {
  width: 20px;
  height: 20px;
  stroke: var(--c_Black);
  fill: none;
  display: block;
}

@media (max-width: 900px) {
  .section7 {
    min-height: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card {
    padding: 32px 24px 24px;
    min-height: auto;
  }
}

/* ==========================================================================
   SECTION 8: FAQ
   ========================================================================== */
.section8 {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 100px 0;
  background-color: var(--c_White);
  border-bottom: 1px solid var(--c_NormalGrey);
}

.section8 .container {
  width: 100%;
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}

.faq-header {
  flex: 0 0 360px;
  position: sticky;
  top: 100px;
}

.faq-accordion {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8px 26px 0;
  font-size: var(--f_SubheadingSize);
  font-weight: 500;
  color: var(--c_Black);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question [data-icon="chevronDown"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 24px;
}

.faq-question .faq-icon {
  stroke: var(--c_Black);
  display: block;
}

.faq-item[open] .faq-question [data-icon="chevronDown"] {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 28px 0;
  font-size: var(--f_BodySize);
  line-height: var(--f_BodyLh);
  color: var(--c_HeavyGrey);
  word-break: keep-all;
}

@media (hover: hover) {
  .faq-question:hover {
    color: var(--c_HeavyGrey);
  }
}

@media (max-width: 900px) {
  .section8 {
    padding: 80px 0;
    min-height: auto;
  }

  .faq-layout {
    flex-direction: column;
    gap: 40px;
  }

  .faq-header {
    flex: 100%;
    position: static;
  }

  .faq-accordion {
    width: 100%;
    max-width: 100%;
  }

  .faq-question {
    padding: 20px 0;
    font-size: var(--f_BodySize);
  }
}
