/* CSS Variables */
:root {
  --background: oklch(0.97 0.03 180);
  --foreground: oklch(0.25 0.01 180);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.01 180);
  --primary: oklch(0.55 0.12 185);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.03 180);
  --secondary-foreground: oklch(0.25 0.01 180);
  --muted: oklch(0.94 0.02 180);
  --muted-foreground: oklch(0.48 0.01 180);
  --accent: oklch(0.65 0.2 50);
  --accent-foreground: oklch(1 0 0);
  --border: oklch(0.88 0.02 180);
  --radius: 0.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.home-icon {
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ff8c00;
  color: white;
  border-color: #ff8c00;
}

.btn-primary:hover {
  background-color: #ff7700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-full {
  width: 100%;
}

.icon {
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.bg-white {
  background-color: white;
}

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

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

.bg-gradient {
  background: linear-gradient(to bottom right, oklch(0.97 0.03 185), oklch(0.95 0.05 180), oklch(0.97 0.03 185));
}

.bg-campaign {
  background: linear-gradient(to bottom right, oklch(0.97 0.03 185), oklch(0.95 0.05 180), oklch(0.97 0.03 185));
}

/* Content Wrappers */
.content-max {
  max-width: 64rem;
  margin: 0 auto;
}

.content-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* Typography */
.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title-lg {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.section-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}

.section-text-lg {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .section-title-lg {
    font-size: 3rem;
  }
  .section-subtitle {
    font-size: 1.25rem;
  }
  .section-text {
    font-size: 1.125rem;
  }
  .section-text-lg {
    font-size: 1.125rem;
  }
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-muted {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.text-highlight {
  font-weight: bold;
  color: #ff8c00;
}

.text-primary {
  color: var(--primary);
}

.font-bold {
  font-weight: bold;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(to bottom right, oklch(0.97 0.03 185), oklch(0.95 0.05 180), oklch(0.95 0.05 180));
  padding: 4rem 0;
}

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

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.pr-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.break-md {
  display: none;
}

@media (min-width: 768px) {
  .break-md {
    display: block;
  }
}

.break-sm {
  display: block;
}

@media (min-width: 768px) {
  .break-sm {
    display: none;
  }
}

.hero-image {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
}

.hero-text {
  margin-top: 3rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 1.125rem;
  }
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-cta .btn {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .hero-cta .btn {
    width: auto;
  }
}

/* Section Image */
.section-image {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

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

.img-rounded {
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Text Content */
.text-content {
  margin-top: 3rem;
  text-align: center;
}

.text-content p {
  margin-bottom: 1rem;
}

/* Testimonial */
.testimonial-intro {
  margin-top: 4rem;
  text-align: center;
}

.testimonial-intro h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .testimonial-intro h3 {
    font-size: 1.5rem;
  }
}

.divider {
  display: inline-block;
  width: 4rem;
  height: 2px;
  background-color: var(--foreground);
  vertical-align: middle;
}

.testimonial-card {
  margin-top: 3rem;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 3rem;
  }
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #fff4e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-avatar {
    width: 8rem;
    height: 8rem;
    margin: 0;
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: #ff8c00;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.125rem;
  }
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Concerns Section */
.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.concern-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  position: relative;
}

@media (min-width: 768px) {
  .concern-card {
    padding: 2rem;
  }
}

.quote-icon-light {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(85, 160, 180, 0.2);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.concern-content {
  padding-left: 2rem;
}

.concern-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-style: italic;
}

.concern-author {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: right;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.solution-card {
  background-color: oklch(0.97 0.03 185);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.solution-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.solution-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.highlight-box {
  text-align: center;
  background: linear-gradient(to right, oklch(0.97 0.03 185), oklch(0.97 0.03 185));
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid oklch(0.88 0.02 185);
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.highlight-text {
  color: var(--muted-foreground);
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: oklch(0.88 0.02 185);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background-color: oklch(0.97 0.03 185);
  margin-bottom: 1.25rem;
  transition: background-color 0.3s;
}

.feature-card:hover .feature-icon {
  background-color: oklch(0.95 0.05 185);
}

.feature-icon svg {
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Editorial Comment */
.editorial-comment {
  margin-top: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.editorial-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(0.97 0.03 185);
}

.editorial-icon svg {
  color: var(--primary);
}

.editorial-badge {
  display: inline-block;
  background-color: oklch(0.97 0.03 185);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.editorial-text {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* Campaign Section */
.badge-limited {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.campaign-info {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .campaign-info {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.campaign-info-item {
  font-size: 0.875rem;
  color: var(--card-foreground);
}

/* Plans Grid */
.plans-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

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

.plan-card {
  position: relative;
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.plan-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plan-popular {
  border-color: oklch(0.88 0.02 50);
  box-shadow: 0 0 0 2px oklch(0.88 0.02 50);
}

.plan-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  z-index: 10;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-image {
  position: relative;
  width: 100%;
  height: 16rem;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plan-content {
  padding: 2rem;
}

.plan-discount {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--card-foreground);
}

.plan-regular {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
  margin-top: 1rem;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-top: 0.25rem;
}

.plan-features {
  list-style: none;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.check-icon-sm {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.mt-large {
  margin-top: 3rem;
}

/* Benefits Grid */
.mb-xl {
  margin-bottom: 4rem;
}

.benefits-grid {
  display: grid;
  gap: 3rem;
}

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

.benefit-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

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

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(0.97 0.03 185);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  color: var(--primary);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.benefit-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.benefit-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Points Table */
.points-table {
  background-color: oklch(0.97 0.02 180);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.points-table-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.points-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.points-row:last-child {
  border-bottom: none;
}

.points-amount {
  font-weight: 600;
  color: var(--foreground);
}

.points-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.points-result {
  text-align: right;
}

.points-value {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.125rem;
}

.points-use {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.benefit-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Warranty List */
.warranty-list {
  background-color: oklch(0.97 0.02 180);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.warranty-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.warranty-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.warranty-item:last-child {
  margin-bottom: 0;
}

.warranty-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: oklch(0.97 0.03 185);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warranty-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.warranty-name {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.warranty-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.warranty-callout {
  background-color: oklch(0.97 0.03 185);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid oklch(0.88 0.02 185);
}

.warranty-callout-text {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* Nitori Features Grid */
.nitori-features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .nitori-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nitori-feature-card {
  background-color: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nitori-feature-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nitori-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: oklch(0.97 0.03 185);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.nitori-feature-icon svg {
  color: var(--primary);
}

.nitori-feature-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.nitori-feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Case Studies */
.case-studies {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.case-card {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
}

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

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

.case-image-wrapper {
  position: relative;
}

.case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.case-badge-before {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

.case-badge-after {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.case-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .case-image {
    height: 100%;
  }
}

.case-content {
  padding: 1.5rem;
}

.case-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .case-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.case-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.case-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.case-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.case-age {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.case-cost-wrapper {
  text-align: left;
}

@media (min-width: 768px) {
  .case-cost-wrapper {
    text-align: right;
  }
}

.case-cost-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.case-cost {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}

.case-cost-tax {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.case-testimonial {
  background-color: var(--secondary);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}

.case-testimonial-text {
  font-size: 0.875rem;
  color: var(--foreground);
  font-style: italic;
}

/* Showroom Section */
.showroom-card {
  max-width: 42rem;
  margin: 3rem auto 0;
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  text-align: center;
}

.showroom-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.showroom-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.showroom-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Reform Menu Grid */
.reform-menu-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .reform-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reform-menu-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.reform-menu-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reform-menu-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.reform-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reform-menu-content {
  padding: 1.5rem;
}

.reform-menu-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.reform-menu-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.reform-menu-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

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

.contact-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(0.97 0.03 185);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  color: var(--primary);
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.contact-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

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

.disclaimer {
  margin-top: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.disclaimer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: rgba(0, 0, 0, 0.02);
}

.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: bold;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-heading {
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
