:root {
  /* Colors */
  --bg-color: #fafafa;
  --bg-dark: #0f172a;
  --text-color: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary-color: #3b82f6;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --success-color: #06c755;
  --error-color: #dc2626;
  --error-bg: #fce7f3;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.1);
  --card-bg: #ffffff;
  --card-border: rgba(59, 130, 246, 0.2);

  /* Typography */
  --font-main: "Inter", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-base: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 4rem;
  --font-size-5xl: 5rem;

  /* Spacing */
  --spacing-xs: 0.8rem;
  --spacing-sm: 1.2rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 10rem;

  /* Border Radius */
  --radius-sm: 0.8rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.4rem;
  --radius-xl: 5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(59, 130, 246, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 2rem;
}

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

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

body {
  font-family: var(--font-jp);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.is-noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

.logo {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 30%;
  max-width: 250px;
  z-index: 100;
}

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

.japan-management {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40%;
  z-index: 100;
}

.japan-management img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .japan-management {
    max-width: 250px;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Button Component
   ========================================================================== */

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-main);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);

  &.--primary {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: white;
    box-shadow: var(--shadow-md);

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    }
  }

  &.--secondary {
    background: #fff;
    border: 1px solid var(--text-muted);
    color: var(--text-color);

    &:hover {
      border-color: var(--text-color);
      background: rgba(255, 255, 255, 0.05);
    }
  }

  &.--line {
    background: var(--success-color);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);

    &:hover {
      background: #05b048;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6);
    }
  }

  &.--sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
  }

  &.--lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.25rem;
    border-radius: var(--radius-xl);
  }

  &.--block {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Legacy button classes for backward compatibility */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: var(--shadow-md);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  }
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--text-muted);
  color: var(--text-color);

  &:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
  }
}

.btn-line {
  background: var(--success-color);
  color: white;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);

  &:hover {
    background: #05b048;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6);
  }
}

.btn-sm {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.9rem;
}

.btn-lg {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.25rem;
  border-radius: var(--radius-xl);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(6, 182, 212, 0.3);
  z-index: -1;
  transform: skewX(-10deg);
}

/* Section Component
   ========================================================================== */

.section {
  padding: var(--spacing-2xl) 0;

  &.--dark,
  &.is-dark {
    background-color: var(--bg-dark);
    color: #f8fafc;
  }
}

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: #222;

  span:not([class]) {
    display: block;
    font-size: 50%;
  }
}

.text-left {
  text-align: left;
}

/* Hero */
.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  /* Hero-specific Dark Mode Overrides */
  background-color: #0f172a;
  background-image: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 1) 25%
  );
  color: #f8fafc;
  --bg-color: #0f172a;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --card-bg: #1e293b; /* If any cards appear in hero */
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  margin-top: -270px;
  padding: 60px 20px 0px;
  background-image: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 1) 15%,
    rgba(15, 23, 42, 1) 100%
  );
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-title {
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title-sub {
  font-size: 2.5rem;
  font-weight: 600;
  color: #94a3b8; /* Explicit light grey for dark bg */
  display: block;
  margin-bottom: 5px;
}

.hero-title-main {
  font-size: clamp(3.5rem, 12vw, 5rem);
  font-weight: 900;
  display: block;
  white-space: nowrap;
}

.hero-catchphrase {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #fff;
  margin-top: 1em;
}

/* Generic Title Pattern for other sections */
.title-sub {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 5px;
}

.title-main {
  font-size: 4.5rem;
  font-weight: 900;
  display: block;
  line-height: 1.2;
  color: var(--text-color);
}

.hero-text {
  font-size: 1rem;
  color: #94a3b8; /* Explicit light grey */
  margin: 0 auto 40px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(15, 23, 42, 0) 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* Phone Mockup */
.phone-mockup {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  border: 8px solid #333;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.screen {
  width: 100%;
  height: 100%;
  background: #8cabd8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.chat-bubble {
  background: #334155;
  padding: 15px;
  border-radius: 15px;
  border-bottom-left-radius: 2px;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  animation: bubbleLoop 10s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.chat-bubble.ai {
  background: #fff;
  color: #333;
}

.chat-bubble:nth-child(1) {
  animation-delay: 0s;
}

.chat-bubble:nth-child(2) {
  animation-delay: 1s;
}

.chat-bubble:nth-child(3) {
  animation-delay: 2s;
}

@keyframes bubbleLoop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.graph-placeholder {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  margin-bottom: 10px;
}

.bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.bar:last-child {
  background: #fff;
}

.caption {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Numbered List Component
   ========================================================================== */

.numbered_list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 700px;
  margin: 0 auto;
  counter-reset: section-counter;

  &.--problems,
  &.--flow {
    gap: var(--spacing-lg);
    max-width: 700px;
  }

  &.--hero-grid {
    gap: 30px;
    max-width: 760px;
  }
}

/* Legacy support */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 700px;
  margin: 0 auto;
  counter-reset: section-counter;
}

.problems-list,
.flow-steps {
  gap: var(--spacing-lg);
  max-width: 700px;
}

.section-hero-grid {
  gap: 30px;
  max-width: 760px;
}

.numbered_list .list-item,
.numbered-list__item {
  position: relative;
  padding: 80px 30px 30px;
  text-align: center;
  counter-increment: section-counter;

  h3 {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
  }

  p {
    position: relative;
    z-index: 1;
    font-size: var(--font-size-xs);
    line-height: 1.8;
    color: var(--text-muted);
  }
}

.numbered-list__number {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;

  &::before {
    content: counter(section-counter, decimal-leading-zero);
  }
}

/* Variants */
.section-hero .numbered-list__item h3 {
  color: #334155;
}

/* Catchphrase Component
   ========================================================================== */

.text-catchphrase {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin: var(--spacing-lg) auto;
  color: var(--primary-color);

  span {
    display: block;
    font-size: 0.5em;
    color: var(--text-color);
  }

  &.fade-init {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
  }

  &.visible {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s ease-in-out infinite;
  }
}

/* Report Section
   ========================================================================== */

.report_section {
  padding: 80px 0;
  background-color: #1e293b;
  color: #f8fafc;
  text-align: center;

  .section-title,
  .title-sub,
  .title-main {
    color: #fff;
  }

  .title-main {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }
}

/* Legacy support */
.report-section {
  padding: 80px 0;
  background-color: #1e293b;
  color: #f8fafc;
  text-align: center;

  .section-title {
    color: #fff;
  }

  .title-sub {
    color: #fff;
  }

  .title-main {
    color: #fff;
    font-size: clamp(3.5rem, 12vw, 5rem);
  }
}

.report-features-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  text-align: left;
}

.report-feature-card {
  padding: 25px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  color: var(--text-color);

  h3 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
  }

  p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
  }
}

.visual {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

/* Phone/Report Mockup Component
   ========================================================================== */

.report-mockup {
  position: relative;
  max-width: 380px;
  height: 650px;
  margin: 0 auto;
  background: #000;
  border: 12px solid #333;
  border-radius: 45px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #333;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}

.report-screen {
  width: 100%;
  height: 100%;
  padding: var(--spacing-md);
  background: #8cabd8;
  overflow-y: auto;
}

.report-bubble {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  border-bottom-left-radius: 2px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Features */
.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 760px;
  margin: 0 auto;
}

.feature-card h3 {
  color: var(--accent-color);
}

/* Section with hero image and gradient background */
.section-hero {
  position: relative;
}

/* Light-mode section titles (exclude dark .is-dark sections) */
.section:not(.is-dark) .section-title {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  padding-bottom: 32px;
}

.section:not(.is-dark) .section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  border-bottom: 1px solid #e5e7eb;
}

.section:not(.is-dark) .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  border-bottom: 4px solid var(--primary-color);
}

.hero-image {
  max-width: 800px;
  margin: 0 auto -10vw;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(250, 250, 250, 0) 0%,
    rgba(250, 250, 250, 1) 90%
  );
  pointer-events: none;
}

.japan-support-shaking_hands {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -100px;
  display: block;
  height: auto;
  opacity: 0.6;
  position: relative;
  z-index: -1;
}

/* Website Section
   ========================================================================== */

.website_section,
.website-section,
.contact-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.website-bg-overlay {
  left: unset;
  top: unset;
}

.website-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  padding: 80px 60px;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.95) 0%,
    rgba(15, 23, 42, 0.98) 100%
  );
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: #fff;

  @media (min-width: 769px) {
    justify-content: flex-start;
    overflow: hidden;
  }
}

.website-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  text-align: left;
}

.website-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);

  &::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background: var(--primary-color);
    border-radius: 50%;
  }
}

.website-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
  .website-title {
    text-align: left;
  }

  .website-content {
    text-align: left;
  }
}

.website-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.website-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .website-action {
    width: 60%;
  }
}

.website-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 16px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.website-action-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.website-action-text {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.website-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.website-action-link:hover .website-action-btn {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.website-action-link:nth-child(2) {
  background: #06c755;
  border-color: #06c755;
}

.website-action-link:nth-child(2):hover {
  background: #05b048;
  border-color: #05b048;
}

.website-action-link:nth-child(2) .website-action-btn {
  background: rgba(255, 255, 255, 0.2);
}

.website-action-link:nth-child(2):hover .website-action-btn {
  background: rgba(255, 255, 255, 0.3);
}

.website-visual {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  z-index: 1;
  margin: -100px -25px 0;
}

.website-visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  .website-visual {
    margin: unset;
    position: absolute;
    bottom: 0px;
    right: -20%;
    top: auto;
    left: auto;
    width: 60%;
  }
}

.website-phone-hand {
  position: relative;
  width: 300px;
  height: 500px;
}

.website-phone {
  width: 240px;
  height: 480px;
  background: #000;
  border-radius: 30px;
  border: 8px solid #333;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.website-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.website-chart {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.website-pie-chart {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0% 30%, #8b5cf6 30% 60%, #06b6d4 60% 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.website-line-chart {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.website-line-chart::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  clip-path: polygon(0 100%, 20% 80%, 40% 60%, 60% 40%, 80% 30%, 100% 20%);
}

.website-cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.website-info {
  background-color: #0f172a;
  color: #f8fafc;
}

.website-info .section-title {
  color: #ffffff;
}

.website-problem-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #ef4444;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.website-problem-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fca5a5;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.website-problem-card .card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.website-problem-card p {
  font-size: 1.1rem;
  color: #7f1d1d;
  line-height: 1.7;
}

.website-solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.website-solution-card {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.website-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.website-solution-card .card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.website-solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.website-solution-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.website-solution-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.website-service-card {
  background: linear-gradient(135deg, #edf4fe 0%, #e8f1ff 100%);
  border: 5px solid var(--primary-color);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.website-service-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 30px;
  line-height: 1.3;
}

.website-service-card .card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.website-service-card p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.website-example-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 8px;
}

.website-example-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.website-example-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5f5;
}

.website-example-desc {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e5e7eb;
}

.website-example-note {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 20px;
}

.website-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.website-service-list li {
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 12px 0 12px 30px;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.website-service-list li:last-child {
  border-bottom: none;
}

.website-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.website-production-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 40px;
  box-shadow: none;
}

.website-production-card--plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.website-production-card--plain .website-service-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 30px;
  line-height: 1.3;
}

.website-production-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 25px;
  text-align: center;
}

.website-production-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.website-production-card ul li {
  font-size: 1.1rem;
  color: var(--text-color);
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  line-height: 1.6;
}

.website-production-card ul li:last-child {
  border-bottom: none;
}

.website-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 20px;
}

.website-cta strong {
  display: block;
  font-size: 2em;
  line-height: 1.2;
  margin: 0.25em 0 0;
}

.website-production-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 4px;
}

.website-production-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #111;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.website-production-label {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.website-production-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  background: #e5e7eb;
}

.website-production-tag-free {
  background: linear-gradient(135deg, #93c5fd, #bfdbfe);
  color: #1d4ed8;
}

/* Pricing Section
   ========================================================================== */

.pricing_tabs,
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);

  @media (min-width: 769px) {
    display: none;
  }
}

.pricing-tab-btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: all var(--transition-base);

  &:hover {
    background: rgba(59, 130, 246, 0.1);
  }

  &.active {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    border-color: transparent;
    box-shadow: var(--shadow-md);
    color: white;
  }
}

.pricing-cards-wrapper {
  position: relative;

  @media (min-width: 769px) {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 70%;
    margin: 0 auto;
  }
}

.pricing_card,
.pricing-card {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base);

  &.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  @media (min-width: 769px) {
    display: block !important;
    flex: 1;
    max-width: 500px;
    margin: 0;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.pricing-header {
  h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}

.price {
  margin-bottom: 5px;
  font-size: var(--font-size-xs);

  .amount {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color);
  }
}

.sub-text {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  ul {
    margin-bottom: 30px;
    text-align: left;
  }

  h4 {
    margin-bottom: 1em;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
  }
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li::after {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-options {
  background: rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-options ul {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Section
   ========================================================================== */

.faq_list,
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq_item,
.faq-item {
  padding: 30px;
  margin-bottom: var(--spacing-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}

.faq-question,
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-question {
  margin-bottom: 25px;

  p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
  }

  .faq-label {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--accent-color)
    );
    color: white;
  }
}

.faq-answer {
  p {
    margin: 0;
    line-height: 1.3;
    color: var(--text-muted);
  }

  .faq-label {
    background: var(--glass-bg);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
  }
}

.faq-label {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: calc((1.1rem * 1.3 - 40px) / 2);
  border-radius: 50%;
  font-size: var(--font-size-xs);
  font-weight: bold;
}

/* Flow */

/* Footer */
.footer {
  background-color: #0f172a;
  color: #fff;
  padding: 40px 0;
  margin-top: 100px;
  text-align: center;
}

.footer-logo {
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.copyright {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Modal Component
   ========================================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);

  &.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;

    .modal-container {
      transform: translateY(0);
    }
  }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-container {
  position: relative;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 450px;
  height: 80%;
  max-height: 800px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.modal-header {
  flex-shrink: 0;
  padding: 15px;
  background: #8cabd8;
  font-weight: bold;
  text-align: center;
  color: white;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 2002;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: white;
  cursor: pointer;
}

.modal-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--spacing-md);
  background: #8cabd8;
  overflow-x: hidden;
  overflow-y: auto;
}

#website-modal .modal-content {
  padding: 0;
}

/* Re-use chat bubble style in modal but strictly for this context */
.modal-content .report-bubble {
  background: #fff;
  color: #333;
  padding: 15px;
  border-radius: 12px;
  font-size: 1.1rem; /* Even larger for modal readability */
  line-height: 1.8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 769px) {
  #website-modal .modal-container {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .hide-sp {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-title-sub {
    font-size: 2rem;
  }

  .hero-title-main {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .section-hero .section-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .hero-catchphrase {
    font-size: 1.5rem;
  }

  .title-sub {
    font-size: 1.5rem;
  }

  .title-main {
    font-size: 2.5rem;
  }

  .hero-inner,
  .split-layout,
  .grid-3,
  .grid-2,
  .section-hero-grid,
  .flow-steps,
  .report-features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
  }

  .mobile-menu-btn {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: 0.3s;
  }

  .mobile-menu-btn span:nth-child(1) {
    top: 0;
  }
  .mobile-menu-btn span:nth-child(2) {
    top: 9px;
  }
  .mobile-menu-btn span:nth-child(3) {
    top: 18px;
  }

  .website-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 30px;
  }

  .website-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .website-visual img {
    width: 100%;
    height: auto;
  }

  .website-content {
    max-width: 100%;
    text-align: center;
  }

  .website-title {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }

  .website-description {
    font-size: 1rem;
  }

  .website-phone-hand {
    width: 240px;
    height: 400px;
  }

  .website-phone {
    width: 200px;
    height: 400px;
  }

  .website-solution-cards {
    grid-template-columns: 1fr;
  }

  .website-problem-card,
  .website-service-card,
  .website-production-card {
    padding: 20px;
  }

  .website-problem-card h3,
  .website-service-card h3 {
    font-size: 1.3rem;
  }

  .website-production-card h3 {
    font-size: 1.5rem;
  }

  .pricing-tabs {
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .pricing-tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
  }

  .pricing-card {
    padding: 40px 30px;
  }

  .text-catchphrase {
    font-size: 2.5rem;
  }
}

/* Animations */
.fade-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.website-visual.fade-init {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

.website-visual.visible {
  opacity: 1;
}

/* Form Flow */

.form-flow {
  max-width: 700px;
  margin: 0 auto;
}

.form-flow-list {
  margin-bottom: 40px;
}

.form-flow-item {
  padding: 60px 0 30px;
}

.form-flow-question {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: var(--text-color);
  line-height: 1.4;
}

.form-flow-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-flow-options:has(.form-flow-option:nth-child(odd):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.form-flow-options:has(.form-flow-option:nth-child(odd):last-child)
  .form-flow-option:last-child {
  grid-column: 1 / -1;
}

.form-flow-options:has(.form-flow-option:nth-child(3):last-child),
.form-flow-options:has(.form-flow-option:nth-child(2):last-child),
.form-flow-options:has(.form-flow-option:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}

.form-flow-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.form-flow-option:hover {
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.05);
}

.form-flow-option:hover span {
  color: #1e293b;
}

.form-flow-option {
  position: relative;
}

.form-flow-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-flow-option:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  background: rgba(59, 130, 246, 0.1);
}

.form-flow-option:has(input[type="radio"]:checked) span {
  font-weight: 600;
  color: var(--primary-color);
}

.form-flow-option span {
  font-size: 1rem;
  color: var(--text-color);
  flex: 1;
  width: 100%;
  text-align: center;
}

.form-flow-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.form-result {
  max-width: 700px;
  margin: 0 auto;
}

.form-result-content {
  text-align: center;
}

.form-result-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-color);
}

.form-result-plan {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.form-result-plan .pricing-card {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  margin: 0 auto;
}

.form-submit-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.form-submit-main-text {
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text-color);
  font-family: var(--font-jp);
  margin: 0;
}

.form-submit-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.form-submit-secondary .btn {
  width: 100%;
}

.form-submit-back {
  margin-top: 60px;
}

/* User Information Input Section */
.form-user-info {
  max-width: 700px;
  margin: 0 auto;
}

.form-user-info-content {
  text-align: center;
}

.form-user-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

.form-user-info-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-user-info-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-required {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-left: 4px;
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-jp);
  background: #fff;
  color: #1e293b;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input.error,
.form-input:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
  background-color: #fce7f3;
  color: #b91c1c;
}

.form-input.error {
  animation: shake 0.6s ease-in-out;
}

.form-input.error::placeholder,
.form-input:invalid:not(:placeholder-shown)::placeholder {
  color: #b91c1c;
}

.form-input:valid:not(:placeholder-shown),
.form-input.success {
  border-color: #10b981;
}

.form-input.success {
  border-color: #10b981;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

.form-error {
  display: none;
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 4px;
  padding-left: 4px;
  animation: slideDown 0.3s ease-out;
}

.form-error.show {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-jp);
  background: #fff;
  color: #1e293b;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 80px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-textarea::placeholder {
  color: #94a3b8;
}

.form-user-info-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Thanks Page */
.form-thanks {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.form-thanks-content {
  padding: 60px 30px;
}

.form-thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color);
  line-height: 1.3;
}

.form-thanks-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.form-thanks-line-text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-thanks-line {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.form-thanks-message-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 30px;
  line-height: 1.6;
}

/* ==========================================================================
   Dark Mode Theme
   ========================================================================== */

body.is-dark {
  background-color: var(--bg-dark);
  color: #f8fafc;

  /* Section Overrides */
  .section-hero {
    background-color: var(--bg-dark);
    color: #f8fafc;
  }

  .section-title {
    color: #f8fafc;
  }

  /* Form Flow */
  .form-flow-question {
    color: #f8fafc;
  }

  .form-flow-option {
    background: #fff;
    border-color: #334155;
    color: #1e293b;

    span {
      color: #1e293b;
    }

    &:hover {
      border-color: var(--primary-color);
      background: rgba(59, 130, 246, 0.15);

      span {
        color: #fff;
      }
    }

    &:has(input[type="radio"]:checked) {
      border-color: var(--primary-color);
      background: rgba(59, 130, 246, 0.2);

      span {
        color: var(--primary-color);
      }
    }
  }

  /* Form Result */
  .form-result-title {
    color: #f8fafc;
  }

  /* Pricing Card */
  .pricing-card {
    background: #fff;
    border-color: #334155;
    color: #1e293b;
  }

  .pricing-header {
    h3 {
      color: #1e293b;
    }

    .price {
      color: #1e293b;
    }

    .sub-text {
      color: #64748b;
    }
  }

  .pricing-features {
    h4 {
      color: #1e293b;
    }

    li {
      color: #1e293b;
    }
  }

  /* Buttons */
  .btn-secondary {
    background: #1e293b;
    border-color: #334155;
    color: #f8fafc;

    &:hover {
      background: #334155;
      border-color: #475569;
    }
  }

  .btn-line {
    background: var(--success-color);
    color: white;

    &:hover {
      background: #05b048;
    }
  }

  /* Form Submit */
  .form-submit-main-text {
    color: #f8fafc;
  }

  /* Form Thanks */
  .form-thanks-title {
    color: #f8fafc;
  }

  .form-thanks-description {
    color: var(--text-light);
  }

  .form-thanks-line-text {
    color: #f8fafc;
  }

  .form-thanks-message-text {
    color: var(--text-light);
  }

  /* Form User Info */
  .form-user-info-title {
    color: #f8fafc;
  }

  .form-user-info-description {
    color: var(--text-light);
  }

  /* Form Inputs */
  .form-label {
    color: #f8fafc;
  }

  .form-input {
    background: #fff;
    border-color: #334155;
    color: #1e293b;

    &:focus {
      border-color: var(--primary-color);
    }

    &.error,
    &:invalid:not(:placeholder-shown) {
      border-color: var(--error-color);
      background-color: var(--error-bg);
      color: #b91c1c;

      &::placeholder {
        color: #b91c1c;
      }
    }

    &:valid:not(:placeholder-shown),
    &.success {
      border-color: #10b981;
    }
  }

  .form-error {
    color: #fca5a5;
  }

  .form-textarea {
    background: #fff;
    border-color: #334155;
    color: #1e293b;

    &:focus {
      border-color: var(--primary-color);
    }
  }
}
.footer-lang-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
