:root {
  --background: #ffffff;
  --foreground: #1a1a1a;
  --primary: #005f73;
  --primary-foreground: #ffffff;
  --secondary: #f0f9fa;
  --secondary-foreground: #004e5f;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --success: #22c55e;
  --success-foreground: #ffffff;
  --accent: #ca8a04;
  --accent-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --warning: #fbbf24;
  --warning-foreground: #1f2933;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --sidebar: #ffffff;
  --sidebar-foreground: #0f172a;
  --sidebar-primary: #e0f2f1;
  --sidebar-primary-foreground: #005f73;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --font-family-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.export-wrapper {
  margin: 0;
  font-family: var(--font-family-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  width: 100%;
  min-height: 100vh;
  position: relative;
  max-width: none;
  /* Ensure no max-width restriction */
}

.container {
  max-width: 1200px;
  /* Content container width - comfortable for reading */
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  /* Ensure container takes available width up to max-width */
}

/* Header */
header {
  min-height: 64px;
  border-bottom: 1px solid var(--border);
  padding: 0;
  /* Let container handle padding */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-container {
  display: flex !important;
  /* Ensure flex behavior */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* Ensure container fills width */
  margin: 0 auto;
  padding: 0 16px;
  /* Horizontal padding for content */
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  nav {
    display: none !important;
  }
}

/* Language Switcher */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}

.lang-dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  color: var(--foreground);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-dropbtn:hover {
  background: var(--secondary);
  border-color: var(--primary);
  color: var(--primary);
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 160px;
  overflow: hidden;
}

.lang-menu.show {
  display: block;
  animation: langFadeIn 0.2s ease;
}

.lang-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--foreground);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  text-align: left;
}

.lang-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.lang-menu a.active {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

@keyframes langFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:767px) {
  .lang-dropbtn span {
    display: none;
  }

  .lang-dropbtn {
    padding: 8px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  min-height: 520px;
  /* Ensure sufficient height */
  display: flex;
  align-items: center;
  width: 100%;
}

.hero>.container {
  position: relative;
  z-index: 3;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Ensure background covers full hero area */
  overflow: hidden;
  z-index: 1;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.15));
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* Before/After Section */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.case-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.case-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.case-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  /* Enforce aspect ratio */
  background-color: var(--muted);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-quote {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-style: italic;
  margin-top: auto;
  /* Push to bottom if flex column */
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Adjustments for specific elements */
.program-highlights {
  background-color: #ffffff;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.highlights-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 280px;
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.5;
}

.highlight-icon {
  font-size: 32px;
  color: var(--primary);
  background-color: var(--secondary);
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.highlight-item strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  margin-top: 4px;
}

.highlights-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-outline.text-dark {
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline.text-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--secondary);
}

/* Responsive adjustment for highlights */
@media (max-width: 768px) {
  .highlights-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

/* Section General */
.section {
  padding: 72px 0;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.section-desc {
  font-size: 15px;
  color: var(--muted-foreground);
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.problem-card {
  padding: 24px;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 95, 115, 0.1);
}

.problem-highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

/* Types Section */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.type-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.analogy-box {
  margin-top: auto;
  background-color: var(--muted);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* Solution Steps Redesign */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  /* Increased gap */
}

.step-block {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.step-block.reverse {
  flex-direction: row-reverse;
}

.step-image-container {
  flex: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  /* Limit image width */
}

.step-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}

.step-floating-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.step-text-content {
  flex: 1;
}

.step-text-content h3 {
  font-size: 28px;
  /* Larger title */
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--foreground);
}

.step-summary {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  margin-top: 0;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.treatment-item {
  background-color: #fff;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.treatment-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
}

.treatment-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--foreground);
}

.treatment-desc {
  font-size: 15px;
  color: var(--muted-foreground);
  margin-bottom: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-video-small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--secondary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-video-small:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Mechanism Box Update to match cleaner style if needed, or keep as is */

/* Responsive adjustment for steps */
@media (max-width: 900px) {

  .step-block,
  .step-block.reverse {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .step-image-container {
    max-width: 100%;
    width: 100%;
  }

  .step-text-content h3 {
    font-size: 24px;
  }
}

.mechanism-box {
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 95, 115, 0.05) 0%, rgba(240, 249, 250, 0.8) 100%);
  border: 1px solid rgba(0, 95, 115, 0.1);
  text-align: left;
  box-shadow: 0 10px 30px -10px rgba(0, 95, 115, 0.1);
}

.mechanism-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mechanism-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 95, 115, 0.2), transparent);
}

.mechanism-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mechanism-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mechanism-item-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mechanism-item-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

.mechanism-item-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--foreground);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .mechanism-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Enhanced Solution Steps */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}

.step-block {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.step-block::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.step-block:last-child::after {
  display: none;
}

.step-image-container {
  flex: 1.2;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-block.reverse .step-image-container {
  transform: perspective(1000px) rotateY(5deg);
}

.step-block:hover .step-image-container {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.step-image-container img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.step-block:hover .step-image-container img {
  scale: 1.05;
}

.step-floating-number {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.step-text-content {
  flex: 1;
}

.step-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.step-text-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--foreground);
  line-height: 1.2;
}

.step-summary {
  font-size: 18px;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  line-height: 1.6;
}

.treatment-list {
  display: grid;
  gap: 16px;
}

.treatment-item {
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.treatment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.3s ease;
}

.treatment-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
  box-shadow: 0 10px 30px -10px rgba(0, 95, 115, 0.15);
}

.treatment-item:hover::before {
  height: 100%;
}

.treatment-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.treatment-desc {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .step-block {
    gap: 40px;
  }

  .step-text-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .steps-wrapper {
    gap: 80px;
  }

  .step-block,
  .step-block.reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .step-image-container {
    transform: none !important;
    max-width: 100%;
    width: 100%;
    flex: none;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .step-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 20px;
    display: block;
  }

  .step-block::after {
    display: none;
  }
}


/* Packages */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px -10px rgba(0, 95, 115, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-level {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--foreground);
  align-items: flex-start;
}

.price-box {
  background-color: var(--muted);
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 20px;
  font-size: 14px;
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  /* Changed from 10px to 0 for better alignment when closed */
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
  padding-right: 24px;
  /* Space for arrow icon if added, or just click area */
}

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

.faq-answer {
  font-size: 15px;
  color: var(--muted-foreground);
  padding-left: 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease, margin-top 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  opacity: 0;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Arbitrary large height to allow expansion, or use JS to set explicit height */
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  opacity: 1;
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}

/* Optional: Add a small indicator icon rotation if desired, currently using simple color change */


/* CTA Footer */
.cta-footer {
  background-color: var(--primary);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  width: 100%;
}

.cta-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.cta-footer .btn-primary {
  background-color: #fff;
  color: var(--primary);
}

.cta-footer .btn-outline {
  border-color: #fff;
  color: #fff;
}

/* Simple Footer */
footer {
  padding: 28px 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 13px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* Utility */
.icon-box {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


/* Quick Bar */
.quick-bar {
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 999;
}

.quick-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.quick-bar a:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 95, 115, 0.2);
  border-color: var(--primary);
  background-color: #ffffff;
}

.icon-quick {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 2px;
  transition: all 0.3s ease;
}

.quick-bar a:hover .icon-quick {
  color: var(--accent);
}

.quick-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

/* TOP button highlight */
.quick-bar li:last-child a {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.3);
}

.quick-bar li:last-child .icon-quick,
.quick-bar li:last-child .quick-text {
  color: #ffffff;
}

.quick-bar li:last-child a:hover {
  background-color: var(--secondary-foreground);
  border-color: var(--secondary-foreground);
}

/* Consultation Form */
.consult-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 50, 70, 0.15);
  margin-top: 48px;
  position: relative;
  z-index: 5;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 16px;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fcfcfc;
  color: var(--foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 95, 115, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23005f73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 14px;
  color: var(--muted-foreground);
  cursor: pointer;
  user-select: none;
}

.btn-consult-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 95, 115, 0.25);
}

.btn-consult-submit:hover {
  background: var(--secondary-foreground);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 95, 115, 0.35);
}

.consult-contact-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-link i {
  font-size: 16px;
  color: var(--primary);
}

/* Responsive Styles */


@media (max-width: 768px) {
  .hero {
    padding: 210px 0 80px;
    /* Moved down by increasing top padding */
    align-items: flex-start;
    /* Align content towards top of padding area */
    text-align: center;
  }

  .hero-bg-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.7) 100%);
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

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

  .problem-grid,
  .pricing-grid,
  .steps-wrapper {
    grid-template-columns: 1fr !important;
  }

  .step-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  header {
    padding: 10px 0;
    min-height: 52px;
    justify-content: center;
    /* Keep horizontal layout, nav is hidden */
  }

  .logo {
    height: 32px;
    margin-bottom: 0;
  }

  nav {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lang-switcher {
    margin-left: 0;
    padding: 2px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 11px;
  }

  .container {
    padding: 0 20px;
    /* More padding on mobile */
  }

  /* Quick Bar Mobile */
  .quick-bar {
    bottom: 20px;
    right: 16px;
    pointer-events: auto !important;
  }

  .quick-bar a {
    width: 56px;
    height: 56px;
    pointer-events: auto !important;
  }

  .icon-quick {
    font-size: 22px;
  }

  .quick-text {
    font-size: 10px;
  }

  /* Consultation Form Mobile */
  .consult-card {
    padding: 24px 20px;
    margin-top: 32px;
  }

  .btn-consult-submit {
    padding: 16px;
    font-size: 16px;
  }

  .consult-contact-info {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* ===== TIMELINE SECTION ===== */
.social-proof-section-OLD {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #004e5f 100%);
}

.social-proof-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
  min-width: 140px;
}

.proof-number {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-plus,
.proof-percent,
.proof-unit {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.8;
}

.proof-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .social-proof-grid {
    gap: 24px 32px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    min-width: 120px;
  }

  .proof-number {
    font-size: 32px;
  }
}

/* ===== MID-PAGE CTA ===== */
.mid-cta-section {
  padding: 48px 0;
  background-color: var(--secondary);
}

.mid-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
}

.mid-cta-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 8px;
}

.mid-cta-content p {
  font-size: 15px;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 768px) {
  .mid-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 1px solid #fbbf24;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  font-size: 15px;
  color: #92400e;
  text-align: center;
  animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
}

.urgency-banner strong {
  color: #b45309;
}

@media (max-width: 768px) {
  .urgency-banner {
    font-size: 14px;
    padding: 14px 16px;
    flex-wrap: wrap;
  }
}

/* ===== HERO BUTTON ENHANCEMENT ===== */
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 95, 115, 0.3);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn {
  transition: all 0.3s ease;
}



/* ===== COMPACT TIMELINE ===== */
.compact-timeline-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
  overflow: hidden;
}

.ct-header {
  text-align: center;
  margin-bottom: 40px;
}

.ct-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Horizontal scrolling track */
.ct-track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  margin-bottom: 36px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--muted);
}

.ct-track-wrapper::-webkit-scrollbar {
  height: 4px;
}

.ct-track-wrapper::-webkit-scrollbar-track {
  background: var(--muted);
  border-radius: 2px;
}

.ct-track-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.ct-track {
  display: flex;
  gap: 0;
  min-width: max-content;
  position: relative;
  padding: 8px 0 24px;
}

.ct-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--primary) 15%, var(--primary) 85%, var(--accent));
  z-index: 0;
}

.ct-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 130px;
  max-width: 150px;
  position: relative;
  z-index: 1;
  padding: 0 8px;
  transition: transform 0.2s ease;
}

.ct-item:hover {
  transform: translateY(-4px);
}

.ct-dot {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ct-item:hover .ct-dot {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(0, 95, 115, 0.12);
}

.ct-dot-now {
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(202, 138, 4, 0.2);
  animation: ctPulse 2s ease-in-out infinite;
}

@keyframes ctPulse {

  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(202, 138, 4, 0.2);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(202, 138, 4, 0);
  }
}

.ct-year {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1;
}

.ct-item-now .ct-year {
  color: var(--accent);
}

.ct-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  line-height: 1.4;
  opacity: 0.85;
}

.ct-item-now .ct-label {
  font-weight: 800;
  color: var(--primary);
  opacity: 1;
}

/* Summary bar */
.ct-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #004e5f 100%);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(0, 95, 115, 0.2);
}

.ct-stat {
  text-align: center;
  color: #ffffff;
}

.ct-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2px;
}

.ct-stat span {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
}

.ct-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .compact-timeline-section {
    padding: 40px 0;
  }

  .ct-item {
    min-width: 110px;
    max-width: 130px;
  }

  .ct-label {
    font-size: 11px;
  }

  .ct-summary {
    gap: 20px;
    padding: 20px 16px;
    flex-wrap: wrap;
  }

  .ct-stat strong {
    font-size: 20px;
  }

  .ct-stat-divider {
    display: none;
  }
}


/* Timeline Tagline */
.ct-tagline {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0 0;
  letter-spacing: -0.3px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .ct-tagline {
    font-size: 16px;
  }
}

/* 연락처 폼 여백 정렬 수정 */
.form-input-group .form-input {
  margin-bottom: 0;
}

/* Screen-reader only: visible to search engines, hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== 시술 영상 섹션 ========== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px
}

.video-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e0e0e0
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s
}

.video-card:hover .video-thumb img {
  transform: scale(1.05)
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12)
}

.video-info {
  padding: 16px 20px
}

.video-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary)
}

.video-info p {
  font-size: .9rem;
  color: #666;
  line-height: 1.5
}

@media(max-width:768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

/* ========== WhatsApp Premium Section ========== */
.counsel-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}

.whatsapp-premium-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.whatsapp-premium-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 12px 36px rgba(0, 95, 115, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.whatsapp-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 95, 115, 0.12);
  border-color: rgba(37, 211, 102, 0.4);
}

.whatsapp-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #25D366, #128C7E);
}

.wp-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.wp-icon-box {
  width: 64px;
  height: 64px;
  background-color: #e8f9ed;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #25D366;
}

.wp-icon {
  font-size: 38px;
}

.wp-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.wp-badge {
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.wp-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--foreground);
  margin: 0;
  line-height: 1.2;
}

.wp-description {
  font-size: 16px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 28px;
}

.wp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border);
}

.wp-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--secondary);
  padding: 8px 14px;
  border-radius: 20px;
}

.wp-feature iconify-icon {
  font-size: 16px;
}

.wp-action-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wp-main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.wp-main-btn:hover {
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

.wp-number-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--muted);
  padding: 14px 20px;
  border-radius: var(--radius-md);
}

.wp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-foreground);
}

.wp-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .whatsapp-premium-card {
    padding: 24px;
  }

  .wp-header {
    gap: 16px;
  }

  .wp-icon-box {
    width: 52px;
    height: 52px;
  }

  .wp-icon {
    font-size: 32px;
  }

  .wp-title {
    font-size: 20px;
  }

  .wp-description {
    font-size: 15px;
  }

  .wp-feature {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* ========== LINE Contact Section (JP) ========== */
.line-contact-container {
  width: 100%;
  max-width: 640px;
  margin: 40px auto 0;
}

.line-contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 12px 36px rgba(0, 95, 115, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 95, 115, 0.12);
  border-color: rgba(0, 195, 0, 0.3);
}

.line-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #00C300;
}

.line-badge {
  background-color: rgba(0, 195, 0, 0.1);
  color: #00C300;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.line-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: #f0fdf4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #00C300;
  box-shadow: 0 8px 16px rgba(0, 195, 0, 0.15);
}

.line-icon-main {
  font-size: 44px;
}

.line-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.line-desc {
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.line-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  width: 100%;
}

.benefit-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  background-color: var(--muted);
  padding: 8px 16px;
  border-radius: 20px;
}

.benefit-tag iconify-icon {
  color: #00C300;
  font-size: 16px;
}

.line-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #00C300;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 195, 0, 0.25);
  width: 100%;
  max-width: 320px;
}

.line-btn:hover {
  background-color: #00b300;
  box-shadow: 0 8px 24px rgba(0, 195, 0, 0.35);
  transform: translateY(-2px);
  color: #ffffff;
}

.line-btn iconify-icon {
  font-size: 24px;
}

.line-note {
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 12px 0 0 0;
}

@media (max-width: 768px) {
  .line-contact-card {
    padding: 32px 20px;
  }

  .line-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .line-icon-main {
    font-size: 34px;
  }

  .line-title {
    font-size: 20px;
  }

  .line-desc {
    font-size: 14px;
  }

  .benefit-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .line-btn {
    font-size: 16px;
    padding: 14px 24px;
    max-width: 100%;
  }
}

/* ========== QR Contact Section (ZH) ========== */
.qr-contact-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 680px;
  margin: 40px auto 0;
}

.qr-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 95, 115, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 95, 115, 0.1);
}

.qr-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
}

.qr-header.line {
  color: #00C300;
}

.qr-header.wechat {
  color: #07C160;
}

.qr-header iconify-icon {
  font-size: 24px;
}

.qr-image-wrapper {
  width: 160px;
  height: 160px;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.qr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qr-hint {
  font-size: 14px;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 600px) {
  .qr-contact-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .qr-card {
    width: 100%;
    max-width: 320px;
  }
}