/* ========================================
   Variables & Global Styles
   ======================================== */
   :root {
    --clr-primary: #15803d;
    --clr-accent: #fbbf24;
    --clr-secondary: #ec4899;
    --clr-bg-light: #f7fafd;
    --clr-text: #333;
    --transition: 0.3s ease;
  }
  
  * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
  }
  
  body {
    font-family: 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
    color: var(--clr-text);
    background-color: var(--clr-bg-light);
    line-height: 1.6;
  }
  
  a { 
    text-decoration: none; 
    color: inherit; 
  }
  
  img { 
    display: block; 
    max-width: 100%; 
    height: auto; 
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ========================================
     Section Background Images
     ======================================== */
  section {
    position: relative;
    overflow: hidden;
  }
  
  section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
  }
  
  section > * {
    position: relative;
    z-index: 1;
  }
  
  .hero::before {
    background-image: url("https://unsplash.com/photos/SnKfmC1I9fU/download?ixid=M3wxMjA3fDB8MXxzZWFyY2h8NHx8JUU2JUI4JTg1JUU2JThFJTgzfGphfDB8fHx8MTc1MDY0OTQ2M3ww&force=true");
  }
  
  .features-section::before {
    background-image: url("https://unsplash.com/photos/EateEvcnQKw/download?ixid=M3wxMjA3fDB8MXxzZWFyY2h8MTF8fCVFMyU4MSU5NCVFMyU4MSVCRnxqYXwwfHx8fDE3NTA2NTEwMDZ8MA&force=true");
  }
  
  .warning-card::before {
    background-image: url("https://unsplash.com/photos/EWqwxi9He04/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzUwNjUzNjY0fA&force=true");
  }
  
  .data-section::before {
    background-image: url("https://unsplash.com/photos/qwtCeJ5cLYs/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzUwNjU2NDcwfA&force=true");
  }

  .faq-section::before {
    background-image: url("https://unsplash.com/photos/qwtCeJ5cLYs/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzUwNjU2NDcwfA&force=true");
  }
  
  .beforeafter-section .main-content::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: url("https://unsplash.com/photos/3hO8igCybds/download?ixid=M3wxMjA3fDB8MXxhbGx8fHx8fHx8fHwxNzUwNjU3OTUzfA&force=true");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    z-index: 0;
  }
  
  .comparison::before {
    background-image: url("path/to/comparison-bg.jpg");
  }
  
  /* ========================================
     Top Banner
     ======================================== */
  .top-banner {
    background: var(--clr-primary);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
  }
  
  /* ========================================
     Hero Section
     ======================================== */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #dcfce7 0%, #dbeafe 50%, #fce7f3 100%);
    padding: 3rem 1rem;
    overflow: hidden;
    min-height: 80vh;
  }
  
  .hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  @media (min-width: 992px) {
    .hero .container { 
      grid-template-columns: 1fr 1fr; 
    }
  }
  
  /* Hero - Decorative circles */
  .hero .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
  }
  
  .circle.one { 
    top: 2rem; 
    left: 2rem; 
    width: 80px; 
    height: 80px; 
    background: var(--clr-accent); 
    animation-delay: 0s; 
  }
  
  .circle.two { 
    top: 8rem; 
    right: 4rem; 
    width: 120px; 
    height: 120px; 
    background: var(--clr-secondary); 
    animation-delay: 2s; 
  }
  
  .circle.three { 
    bottom: 4rem; 
    left: 6rem; 
    width: 100px; 
    height: 100px; 
    background: var(--clr-primary); 
    animation-delay: 4s; 
  }
  
  @keyframes float { 
    0%, 100% { transform: translateY(0px) rotate(0deg); } 
    50% { transform: translateY(-15px) rotate(5deg); } 
  }
  
  /* Hero - Text Content */
  .text-content {
    position: relative;
    z-index: 2;
  }
  
  .text-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  @media (min-width: 992px) {
    .text-content h1 { 
      font-size: 2.8rem; 
    }
  }
  
  .text-content h1 .brand { 
    color: var(--clr-primary); 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Hero - Badges */
  .badges { 
    display: flex; 
    gap: 0.75rem; 
    flex-wrap: wrap; 
    margin: 1.5rem 0; 
  }
  
  .badge { 
    background: var(--clr-secondary); 
    color: #fff; 
    padding: 0.6rem 1.2rem; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    font-weight: bold;
    transition: all var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .badge:hover { 
    background: var(--clr-primary); 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* Hero - Features */
  .features { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
    margin: 2rem 0; 
  }
  
  .feature { 
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem; 
    border-radius: 1rem; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: all var(--transition);
  }
  
  .feature:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  .feature h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0.5rem; 
    color: var(--clr-primary);
    font-weight: bold;
  }
  
  .feature p { 
    font-size: 0.9rem; 
    color: #555; 
  }
  
  /* Hero - Trust */
  .trust { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin: 2rem 0; 
  }
  
  .trust-item { 
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    flex: 1; 
    min-width: 120px; 
    padding: 1.5rem 1rem; 
    border-radius: 1rem; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all var(--transition);
  }
  
  .trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  .trust-item h4 { 
    font-size: 1.4rem; 
    margin-bottom: 0.5rem; 
    color: var(--clr-primary);
    font-weight: bold;
  }
  
  .trust-item p { 
    font-size: 0.8rem; 
    color: #666; 
  }
  
  /* Hero - Visual */
  .visual { 
    text-align: center; 
    position: relative;
    z-index: 2;
  }
  
  .visual .main-img { 
    position: relative; 
    display: inline-block; 
    margin-bottom: 2rem;
  }
  
  .visual .main-img img { 
    border-radius: 1rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
  }
  
  .visual .main-img .check { 
    position: absolute; 
    top: -1rem; 
    right: -1rem; 
    background: var(--clr-primary); 
    color: #fff; 
    border-radius: 50%; 
    padding: 0.75rem; 
    font-size: 1.5rem; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  /* Hero - Comparison */
  .comparison { 
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem; 
    border-radius: 1rem; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.1); 
    max-width: 500px;
    margin: 0 auto;
  }
  
  .comparison h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--clr-primary);
    font-size: 1.2rem;
  }
  
  .comparison-grid { 
    display: flex; 
    gap: 1rem; 
  }
  
  .comparison-item { 
    flex: 1; 
    position: relative; 
  }
  
  .comparison-item img { 
    border-radius: 0.75rem; 
    width: 100%;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .label { 
    position: absolute; 
    top: 0.5rem; 
    left: 0.5rem; 
    background: var(--clr-primary); 
    color: #fff; 
    padding: 0.25rem 0.75rem; 
    border-radius: 0.5rem; 
    font-size: 0.75rem; 
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .label.after { 
    background: var(--clr-secondary); 
  }
  
  /* Hero - CTA */
  .cta { 
    text-align: center; 
    margin: 2rem 0; 
  }
  
  .cta button { 
    background: linear-gradient(45deg, var(--clr-accent), #f59e0b);
    color: #fff; 
    border: none; 
    padding: 1.2rem 2.5rem; 
    font-size: 1.3rem; 
    font-weight: bold;
    border-radius: 50px; 
    cursor: pointer; 
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
  }
  
  .cta button:hover { 
    transform: scale(1.05) translateY(-2px); 
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
  }
  
  .cta p { 
    margin-top: 0.75rem; 
    font-size: 0.9rem; 
    color: #555; 
    font-weight: 500;
  }
  
  /* Hero - Responsive */
  @media (max-width: 768px) {
    .hero {
      padding: 2rem 1rem;
    }
    
    .trust {
      flex-direction: column;
    }
    
    .trust-item {
      min-width: auto;
    }
    
    .comparison-grid {
      flex-direction: column;
    }
  }
  
  /* ========================================
     Features Section
     ======================================== */
  .features-section {
    background: white;
    padding: 80px 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title-badge {
    background: #14b8a6;
    color: white;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
  }
  
  .time-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fbbf24;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .section-title {
    font-size: 4rem;
    font-weight: 900;
    color: #0d9488;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }
  
  .availability-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  }
  
  .availability-text {
    font-size: 14px;
  }
  
  .availability-note {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.8;
  }
  
  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #e6fffa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .feature-card:hover::before {
    left: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #14b8a6;
  }
  
  .feature-icon {
    background: #f1f5f9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    background: #14b8a6;
    color: white;
    transform: scale(1.1);
  }
  
  .feature-icon i {
    font-size: 32px;
    color: #64748b;
    transition: color 0.3s ease;
  }
  
  .feature-card:hover .feature-icon i {
    color: white;
  }
  
  .feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .feature-highlight {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ec4899;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }
  
  .installment-badge {
    background: #ec4899;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 15px;
    margin-left: 8px;
  }
  
  /* ========================================
     Warning Section
     ======================================== */
  .warning-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 3px solid #14b8a6;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .warning-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  /* Warning - Illustration Section */
  .illustration-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .warning-icon-container {
    position: relative;
    margin-bottom: 16px;
  }
  
  .warning-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  .warning-icon {
    font-size: 36px;
    color: #dc2626;
  }
  
  .alert-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 28px;
    height: 28px;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
  }
  
  .elderly-image {
    display: flex;
    justify-content: center;
  }
  
  .elderly-image img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Warning - Content Section */
  .content-section {
    flex: 1;
    text-align: center;
  }
  
  .warning-title {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .warning-title .badge {
    background-color: #000;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 16px;
    white-space: nowrap;
  }
  
  .title-text {
    font-size: 18px;
  }
  
  .warning-text {
    color: #374151;
    line-height: 1.7;
    text-align: left;
  }
  
  .warning-text p {
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  /* Warning - Service Image */
  .service-image {
    flex-shrink: 0;
    text-align: center;
    margin-top: 16px;
  }
  
  .service-image img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-only {
    display: block;
  }
  
  /* Warning - Assurance Section */
  .assurance-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
  }
  
  .assurance-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  
  .shield-icon {
    flex-shrink: 0;
  }
  
  .shield-icon i {
    font-size: 28px;
    color: white;
  }
  
  .assurance-text {
    flex: 1;
  }
  
  .assurance-text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
  }
  
  .desktop-break {
    display: none;
  }
  
  .company-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  
  .company-badge i {
    font-size: 18px;
  }
  
  /* Warning - Decorative elements */
  .decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
  }
  
  .decoration-1 {
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-color: #059669;
  }
  
  .decoration-2 {
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background-color: #047857;
  }
  
  /* Warning - Trust Indicators */
  .trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }
  
  .trust-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .trust-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
  }
  
  .trust-icon.green {
    color: #10b981;
  }
  
  .trust-icon.blue {
    color: #3b82f6;
  }
  
  .trust-icon.orange {
    color: #f59e0b;
  }
  
  .trust-card h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 16px;
  }
  
  .trust-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Warning - Responsive */
  @media (min-width: 768px) {
    .warning-card {
      padding: 28px;
    }
    
    .warning-content {
      gap: 24px;
    }
    
    .warning-circle {
      width: 100px;
      height: 100px;
    }
    
    .warning-icon {
      font-size: 44px;
    }
    
    .alert-badge {
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
    
    .elderly-image img {
      width: 140px;
      height: 105px;
    }
    
    .warning-title {
      font-size: 24px;
    }
    
    .warning-title .badge {
      font-size: 18px;
      padding: 8px 16px;
    }
    
    .title-text {
      font-size: 22px;
    }
    
    .warning-text p {
      font-size: 15px;
    }
    
    .trust-indicators {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding-bottom: 40px;
    }
    
    .trust-card {
      padding: 24px;
    }
    
    .trust-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }
    
    .trust-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    
    .trust-card p {
      font-size: 15px;
    }
    
    .assurance-section {
      padding: 24px;
    }
    
    .assurance-text p {
      font-size: 16px;
    }
  }
  
  @media (min-width: 1024px) {
    .warning-card {
      padding: 32px;
    }
    
    .warning-content {
      flex-direction: row;
      align-items: flex-start;
      gap: 32px;
    }
    
    .illustration-section {
      align-items: flex-start;
    }
    
    .warning-circle {
      width: 120px;
      height: 120px;
      margin: 0;
    }
    
    .warning-icon {
      font-size: 52px;
    }
    
    .alert-badge {
      width: 36px;
      height: 36px;
      font-size: 18px;
      top: -8px;
      left: -8px;
    }
    
    .elderly-image {
      justify-content: flex-start;
    }
    
    .elderly-image img {
      width: 160px;
      height: 120px;
    }
    
    .content-section {
      text-align: left;
    }
    
    .warning-title {
      justify-content: flex-start;
      font-size: 28px;
    }
    
    .warning-title .badge {
      font-size: 20px;
      padding: 10px 18px;
    }
    
    .title-text {
      font-size: 26px;
    }
    
    .warning-text p {
      font-size: 16px;
    }
    
    .desktop-only {
      display: block;
    }
    
    .mobile-only {
      display: none;
    }
    
    .service-image img {
      width: 100px;
      height: 130px;
    }
    
    .assurance-section {
      padding: 28px;
      margin-top: 24px;
    }
    
    .assurance-content {
      flex-direction: row;
      align-items: center;
      text-align: left;
      gap: 20px;
    }
    
    .assurance-text p {
      font-size: 18px;
    }
    
    .desktop-break {
      display: block;
    }
    
    .company-badge {
      font-size: 18px;
      padding: 10px 20px;
    }
    
    .decoration-1 {
      width: 120px;
      height: 120px;
      top: -30px;
      right: -30px;
    }
    
    .decoration-2 {
      width: 90px;
      height: 90px;
      bottom: -25px;
      left: -25px;
    }
    
    .trust-indicators {
      margin-top: 32px;
      gap: 24px;
    }
    
    .trust-card {
      padding: 28px;
    }
    
    .trust-icon {
      font-size: 36px;
      margin-bottom: 18px;
    }
    
    .trust-card h3 {
      font-size: 19px;
      margin-bottom: 12px;
    }
    
    .trust-card p {
      font-size: 16px;
    }
  }
  
  @media (min-width: 1280px) {
    .warning-card {
      padding: 40px 40px 100px;
    }
    
    .warning-content {
      gap: 40px;
    }
    
    .assurance-section {
      padding: 36px;
    }
    
    .trust-indicators {
      margin-top: 40px;
      gap: 28px;
      padding-bottom: 40px;
    }
    
    .trust-card {
      padding: 32px;
    }
  }
  
  @media (max-width: 480px) {
    .warning-card {
      margin: 40px 10px;
      padding: 16px;
    }
    
    .warning-title {
      font-size: 18px;
      flex-direction: column;
      gap: 4px;
    }
    
    .warning-title .badge {
      font-size: 14px;
      padding: 4px 10px;
    }
    
    .title-text {
      font-size: 16px;
    }
    
    .warning-text p {
      font-size: 13px;
    }
    
    .trust-indicators {
      padding: 0 8px;
      gap: 12px;
      padding-bottom: 40px;
    }
    
    .trust-card {
      padding: 16px;
    }
    
    .assurance-section {
      padding: 16px;
    }
    
    .assurance-text p {
      font-size: 14px;
    }
    
    .company-badge {
      font-size: 14px;
      padding: 6px 12px;
    }
  }
  
  /* ========================================
     Onayami (Concerns) Section
     ======================================== */
  .onayami-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e8 100%);
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* Onayami - Header Section */
  .onayami-header {
    padding: 32px 0 24px;
    text-align: center;
  }
  
  .onayami-profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    border: 4px solid #4ade80;
  }
  
  .onayami-profile-inner {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .onayami-profile-inner i {
    font-size: 24px;
    color: #059669;
  }
  
  .onayami-main-title {
    display: inline-block;
    background: #4ade80;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 32px;
  }
  
  /* Onayami - Concerns Grid */
  .onayami-concerns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  @media (min-width: 768px) {
    .onayami-concerns-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .onayami-concern-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
  }
  
  .onayami-concern-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .onayami-concern-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .onayami-check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .onayami-check-icon i {
    font-size: 16px;
    color: #059669;
  }
  
  .onayami-concern-text {
    flex: 1;
    min-width: 0;
  }
  
  .onayami-concern-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .onayami-concern-icon {
    font-size: 16px;
    color: #059669;
    flex-shrink: 0;
  }
  
  .onayami-concern-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.3;
  }
  
  .onayami-concern-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
  }
  
  /* Onayami - CTA Section */
  .onayami-cta-section {
    margin-bottom: 32px;
  }
  
  .onayami-cta-content {
    background: linear-gradient(135deg, #4ade80 0%, #06b6d4 100%);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  
  .onayami-cta-text {
    flex: 1;
  }
  
  .onayami-cta-text h2 {
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
  }
  
  .onayami-staff-image {
    position: relative;
    flex-shrink: 0;
  }
  
  .onayami-staff-image img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .onayami-staff-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: white;
    border-radius: 20px;
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .onayami-staff-badge span {
    font-size: 12px;
    font-weight: bold;
    color: #059669;
  }
  
  /* Onayami - Responsive */
  @media (max-width: 767px) {
    .onayami-section {
      padding: 0 12px;
    }
    
    .onayami-header {
      padding: 24px 0 16px;
    }
    
    .onayami-profile-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 20px;
    }
    
    .onayami-profile-inner {
      width: 40px;
      height: 40px;
    }
    
    .onayami-profile-inner i {
      font-size: 20px;
    }
    
    .onayami-main-title {
      font-size: 16px;
      padding: 12px 24px;
      margin-bottom: 24px;
    }
    
    .onayami-concern-card {
      padding: 20px;
    }
    
    .onayami-concern-header h3 {
      font-size: 16px;
    }
    
    .onayami-concern-text p {
      font-size: 13px;
    }
    
    .onayami-cta-content {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    
    .onayami-cta-text h2 {
      font-size: 16px;
    }
    
    .onayami-staff-image img {
      width: 56px;
      height: 56px;
    }
  }
  
  @media (max-width: 480px) {
    .onayami-cta-text h2 br {
      display: none;
    }
    
    .onayami-concern-content {
      gap: 12px;
    }
    
    .onayami-check-icon {
      width: 28px;
      height: 28px;
    }
    
    .onayami-check-icon i {
      font-size: 14px;
    }
  }
  
  /* ========================================
     Data Section
     ======================================== */
  .data-section {
    padding: 2rem 1rem;
    border-top: 10px solid var(--clr-primary);
  }
  
  /* Data - Header Section */
  .header-section {
    margin-bottom: 2rem;
    position: relative;
  }
  
  .speech-bubble {
    background: #14b8a6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 2rem;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #14b8a6;
  }
  
  .character-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
  }
  
  /* Data - Subtitle Section */
  .subtitle-section {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .subtitle-badge {
    background: #fce7f3;
    color: #0d9488;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Data - Main Content */
  .main-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
  }
  
  /* Data - Image Section */
  .image-section {
    position: relative;
  }
  
  .image-section img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    border-radius: 16px;
  }
  
  /* Data - Chart Section */
  .chart-section {
    display: flex;
    justify-content: center;
  }
  
  .pie-chart-container {
    position: relative;
    width: 160px;
    height: 160px;
  }
  
  .pie-chart {
    width: 100%;
    height: 100%;
  }
  
  .female-arc {
    stroke-dasharray: 301.6 402;
    animation: drawFemale 1.5s ease-out forwards;
  }
  
  .male-arc {
    stroke-dasharray: 100.5 402;
    stroke-dashoffset: -301.6;
    animation: drawMale 1.5s ease-out 0.5s forwards;
  }
  
  .chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .chart-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.25rem;
  }
  
  .chart-sublabel {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  /* Data - Legend Section */
  .legend-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
  }
  
  .female-color {
    background: #ec4899;
  }
  
  .male-color {
    background: #14b8a6;
  }
  
  .legend-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    font-weight: 600;
    color: #374151;
    font-size: 1.3rem;
  }
  
  .legend-content i.fa-heart {
    color: #ec4899;
  }
  
  .legend-content i.fa-users {
    color: #14b8a6;
  }
  
  .legend-percentage {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .female-percentage {
    color: #ec4899;
  }
  
  .male-percentage {
    color: #14b8a6;
  }
  
  /* Data - Bottom Message */
  .bottom-message {
    position: relative;
  }
  
  .message-content {
    background: #14b8a6;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .message-icon {
    background: white;
    color: #14b8a6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .message-text {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.4;
    text-align: justify;
    width: 90%;
  }
  
  .message-character {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
  }
  
  /* Data - Animations */
  @keyframes drawFemale {
    from {
      stroke-dasharray: 0 402;
    }
    to {
      stroke-dasharray: 301.6 402;
    }
  }
  
  @keyframes drawMale {
    from {
      stroke-dasharray: 0 402;
    }
    to {
      stroke-dasharray: 100.5 402;
    }
  }
  
  /* Data - Responsive */
  @media (max-width: 1024px) {
    .content-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
    
    .image-section img {
      height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .data-section {
      padding: 1rem;
    }
    
    .content-grid {
      padding: 1.5rem;
    }
    
    .speech-bubble {
      font-size: 1rem;
      padding: 0.625rem 1.25rem;
    }
    
    .subtitle-badge {
      font-size: 1.125rem;
      padding: 0.625rem 1.25rem;
    }
    
    .message-text {
      font-size: 1rem;
    }
    
    .image-section img {
      height: 180px;
    }
    
    .pie-chart-container {
      width: 140px;
      height: 140px;
    }
  }
  
  @media (max-width: 480px) {
    .header-section {
      text-align: center;
    }
    
    .speech-bubble {
      font-size: 0.875rem;
    }
    
    .subtitle-badge {
      font-size: 1rem;
    }
    
    .content-grid {
      padding: 1rem;
      gap: 1.5rem;
    }
    
    .legend-section {
      gap: 0.75rem;
    }
  
    .legend-content {
      font-size: 1.1rem;
    }
    
    .legend-percentage {
      font-size: 1.25rem;
    }
    
    .message-content {
      padding: 0.875rem 1.25rem;
    }
    
    .message-text {
      font-size: 0.875rem;
    }
  }
  
  /* ========================================
     Before-After Section
     ======================================== */
  .beforeafter-section {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
  }
  
  /* Before-After - Header Section */
  .beforeafter-section .header-section {
    position: relative;
    padding: 4rem 0;
  }
  
  .badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .professional-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
  }
  
  .professional-badge i {
    font-size: 1.5rem;
  }
  
  /* Before-After - Corporate Icons */
  .corporate-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
  }
  
  .icon-circle.emerald {
    background: linear-gradient(to bottom right, #10b981, #059669);
  }
  
  .icon-circle.blue {
    background: linear-gradient(to bottom right, #3b82f6, #2563eb);
  }
  
  .icon-circle.amber {
    background: linear-gradient(to bottom right, #f59e0b, #d97706);
  }
  
  .icon-circle i {
    color: white;
    font-size: 2rem;
  }
  
  .icon-item span {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 500;
  }
  
  /* Before-After - Title Section */
  .beforeafter-section .title-section {
    text-align: center;
  }
  
  .title-container {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .title-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #d1fae5, #a7f3d0);
    border-radius: 1.5rem;
    transform: rotate(1deg);
  }
  
  .title-content {
    position: relative;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
  }
  
  .title-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }
  
  .title-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #059669, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .title-underline {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #10b981, #0d9488);
    border-radius: 9999px;
    margin: 1rem auto 0;
  }
  
  .beforeafter-section .subtitle {
    color: #4b5563;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.75;
  }
  
  /* Before-After - Main Content */
  .beforeafter-section .main-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .service-header {
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .service-header h3 i {
    font-size: 1.25rem;
  }
  
  .service-header p {
    color: #a7f3d0;
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
  
  /* Before-After - Content Container */
  .content-container {
    background: white;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #f3f4f6;
  }
  
  /* Before-After - Desktop Layout */
  .desktop-layout {
    display: block;
    padding: 2.5rem;
  }
  
  .images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  
  .image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .image-wrapper:hover {
    transform: scale(1.02);
  }
  
  .image-background {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    transition: transform 0.3s ease;
  }
  
  .before-wrapper:hover .before-bg {
    transform: rotate(2deg);
  }
  
  .after-wrapper:hover .after-bg {
    transform: rotate(-2deg);
  }
  
  .before-bg {
    background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
    transform: rotate(1deg);
  }
  
  .after-bg {
    background: linear-gradient(to bottom right, #10b981, #0d9488);
    transform: rotate(-1deg);
  }
  
  .image-content {
    position: relative;
  }
  
  .image-content img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .image-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
  }
  
  .before-label {
    left: 1.5rem;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
  }
  
  .after-label {
    right: 1.5rem;
    background: linear-gradient(to right, #10b981, #0d9488);
  }
  
  /* Before-After - Service Details */
  .service-details {
    background: linear-gradient(to bottom right, #f9fafb, white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }
  
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .location-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .location-info h4 i {
    color: #059669;
  }
  
  .info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .info-label {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    min-width: 5rem;
    text-align: center;
    color: white;
  }
  
  .info-label.orange {
    background: linear-gradient(to right, #fb923c, #f97316);
  }
  
  .info-label.blue {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
  }
  
  .info-label.yellow {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
  }
  
  .info-value {
    font-weight: 600;
    font-size: 1.125rem;
  }
  
  .description {
    color: #374151;
    line-height: 1.75;
  }
  
  .description p {
    margin-bottom: 1rem;
  }
  
  .description p:last-child {
    margin-bottom: 0;
  }
  
  /* Before-After - Mobile Layout */
  .mobile-layout {
    display: none;
    padding: 1.5rem;
  }
  
  .mobile-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .mobile-image-wrapper {
    position: relative;
  }
  
  .mobile-image-background {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
  }
  
  .mobile-image-background.before-bg {
    background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
    transform: rotate(1deg);
  }
  
  .mobile-image-background.after-bg {
    background: linear-gradient(to bottom right, #10b981, #0d9488);
    transform: rotate(-1deg);
  }
  
  .mobile-image-content {
    position: relative;
  }
  
  .mobile-image-content img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-image-label {
    position: absolute;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
  }
  
  .mobile-image-label.before-label {
    left: 1rem;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
  }
  
  .mobile-image-label.after-label {
    right: 1rem;
    background: linear-gradient(to right, #10b981, #0d9488);
  }
  
  /* Before-After - Mobile Service Details */
  .mobile-service-details {
    background: linear-gradient(to bottom right, #f9fafb, white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
    border: 1px solid #f3f4f6;
  }
  
  .mobile-service-details h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .mobile-service-details h4 i {
    color: #059669;
  }
  
  .mobile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .mobile-info-item {
    text-align: center;
  }
  
  .mobile-info-label {
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .mobile-info-label.orange {
    background: linear-gradient(to right, #fb923c, #f97316);
  }
  
  .mobile-info-label.blue {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
  }
  
  .mobile-info-label.yellow {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
  }
  
  .mobile-info-value {
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .mobile-description {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.75;
  }
  
  /* Before-After - Responsive */
  @media (max-width: 1024px) {
    .title-content h1 {
      font-size: 1.75rem;
    }
    
    .title-content h2 {
      font-size: 1.25rem;
    }
    
    .corporate-icons {
      gap: 1.5rem;
    }
    
    .details-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .desktop-layout {
      display: none;
    }
    
    .mobile-layout {
      display: block;
    }
    
    .beforeafter-section .header-section {
      padding: 2rem 0;
    }
    
    .corporate-icons {
      gap: 1rem;
    }
    
    .icon-circle {
      width: 3rem;
      height: 3rem;
    }
    
    .icon-circle i {
      font-size: 1.5rem;
    }
    
    .title-content {
      padding: 1rem 2rem;
    }
    
    .title-content h1 {
      font-size: 1.5rem;
    }
    
    .title-content h2 {
      font-size: 1.125rem;
    }
    
    .beforeafter-section .subtitle {
      font-size: 1rem;
    }
    
    .service-header {
      padding: 1rem 1.5rem;
    }
    
    .service-header h3 {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 0.75rem;
    }
    
    .professional-badge {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }
    
    .corporate-icons {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .title-content {
      padding: 0.75rem 1.5rem;
    }
    
    .mobile-info-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .mobile-info-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
    }
    
    .mobile-info-label {
      margin-bottom: 0;
      margin-right: 1rem;
      flex-shrink: 0;
    }
  }
  
  /* ========================================
     Voice Section
     ======================================== */
  .voice-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #e0e7ff 100%);
    padding: 4rem 1rem;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  }
  
  /* Voice - Header Container */
  .header-container {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
  }
  
  /* Voice - Title Section */
  .voice-section .title-section {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .title-decoration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .line-left, .line-right {
    width: 4rem;
    height: 2px;
    background: linear-gradient(to right, transparent, #10b981);
  }
  
  .line-right {
    background: linear-gradient(to left, transparent, #10b981);
  }
  
  .award-icon {
    width: 2rem;
    height: 2rem;
    color: #059669;
    margin: 0 0.5rem;
    font-size: 2rem;
  }
  
  .voice-section .main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
  }
  
  .title-highlight {
    background: linear-gradient(to right, #059669, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .title-normal {
    color: #374151;
  }
  
  .brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .brand-badge {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 9999px;
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.1);
  }
  
  .users-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
    margin-right: 0.75rem;
    font-size: 1.5rem;
  }
  
  .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.1em;
  }
  
  .brand-subtitle {
    color: #059669;
    font-size: 1.25rem;
    font-weight: bold;
    margin-left: 0.5rem;
  }
  
  /* Voice - Decorative Elements */
  .decorative-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .dots-left, .dots-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .dot {
    border-radius: 50%;
    background-color: #10b981;
  }
  
  .dot-small {
    width: 0.5rem;
    height: 0.5rem;
  }
  
  .dot-large {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #059669;
  }
  
  .trust-text {
    color: #059669;
    font-weight: 500;
    font-size: 1.125rem;
  }
  
  .voice-section .subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .mobile-break {
    display: none;
  }
  
  /* Voice - Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #059669;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: #6b7280;
    font-weight: 500;
  }
  
  /* Voice - Testimonials Container */
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
  }
  
  /* Voice - Avatar Section */
  .avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .avatar-container {
    position: relative;
  }
  
  .avatar-frame {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .star-badge {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    background: #059669;
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .star-badge i {
    color: white;
    font-size: 1rem;
  }
  
  .experience-badge {
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* Voice - Testimonial Content */
  .testimonial-content {
    color: #374151;
    line-height: 1.6;
    font-size: 0.875rem;
  }
  
  .content-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .message-icon {
    width: 2rem;
    height: 2rem;
    color: #059669;
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }
  
  .content-title {
    font-weight: 600;
    color: #059669;
  }
  
  .content-summary {
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1f2937;
  }
  
  .content-text {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  
  .content-text:last-of-type {
    margin-bottom: 0;
  }
  
  /* Voice - Rating Section */
  .rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
  }
  
  .stars {
    display: flex;
    gap: 0.25rem;
  }
  
  .stars i {
    width: 1.5rem;
    height: 1.5rem;
    color: #fbbf24;
    font-size: 1.5rem;
  }
  
  /* Voice - Bottom Section */
  .bottom-section {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
  }
  
  .bottom-content {
    text-align: center;
  }
  
  .animated-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .animated-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .dot-1 {
    background-color: #10b981;
  }
  
  .dot-2 {
    background-color: #059669;
    animation-delay: 0.2s;
  }
  
  .dot-3 {
    background-color: #047857;
    animation-delay: 0.4s;
  }
  
  .bottom-text {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  /* Voice - Animations */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  /* Voice - Responsive */
  @media (max-width: 768px) {
    .voice-section {
      padding: 2rem 1rem;
    }
    
    .voice-section .main-title {
      font-size: 2rem;
    }
    
    .mobile-break {
      display: block;
    }
    
    .decorative-elements {
      gap: 1rem;
    }
    
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .testimonial-card {
      padding: 1.5rem;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .voice-section .main-title {
      font-size: 1.75rem;
    }
    
    .brand-badge {
      padding: 0.75rem 1.5rem;
    }
    
    .brand-name {
      font-size: 1.25rem;
    }
    
    .brand-subtitle {
      font-size: 1rem;
    }
    
    .avatar-frame {
      width: 6rem;
      height: 6rem;
    }
  }
  
  /* ========================================
     Footer
     ======================================== */
  footer { 
    text-align: center; 
    padding: 2rem 1rem; 
    font-size: 0.8rem; 
    color: #777; 
    background: rgba(255,255,255,0.5);
  }


  /* ========================================
   Flow Section - Compatible Version
   ======================================== */

/* Flow Section Specific Styles */
.flow-section {
    min-height: 100vh;
    background-color: #f9fafb;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Override section background for flow section */
.flow-section::before {
    display: none;
}

/* Flow Section Header */
.flow-section .header {
    text-align: center;
    margin-bottom: 4rem;
}

.flow-section .main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.flow-section .main-title .highlight {
    color: #14b8a6;
}

.flow-section .subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    font-weight: 500;
}

.flow-section .subtitle .highlight-text {
    color: #14b8a6;
    font-weight: bold;
}

/* Flow Steps */
.flow-section .flow-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.flow-section .step-item {
    position: relative;
}

.flow-section .step-item:not(:last-child) .connecting-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 5rem;
    background: linear-gradient(to bottom, #14b8a6, #0d9488);
    top: 100%;
    z-index: 10;
    display: none;
}

.flow-section .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Content Card */
.flow-section .content-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.flow-section .content-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.flow-section .step-header {
    margin-bottom: 1.5rem;
}

.flow-section .step-number-container {
    position: relative;
    display: inline-block;
}

.flow-section .step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.flow-section .step-icon {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 2rem;
    height: 2rem;
    background: #14b8a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.flow-section .step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.flow-section .step-subtitle {
    font-size: 1rem;
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flow-section .step-description {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* Step Image */
.flow-section .step-image {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.flow-section .image-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    border-radius: 1rem;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.flow-section .step-item:hover .image-background {
    transform: rotate(6deg);
}

.flow-section .image-container {
    position: relative;
    background: white;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.flow-section .image-container img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.flow-section .image-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #14b8a6;
    font-size: 1.25rem;
}

/* Call to Action */
.flow-section .contact-section {
    text-align: center;
    margin-top: 4rem;
}

.flow-section .cta-card {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.flow-section .cta-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flow-section .cta-main {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .flow-section {
        padding: 6rem 1.5rem;
    }

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

    .flow-section .subtitle {
        font-size: 1.5rem;
    }

    .flow-section .step-content {
        flex-direction: row;
        gap: 3rem;
    }

    .flow-section .content-card {
        flex: 1;
        max-width: none;
    }

    .flow-section .step-image {
        flex: 1;
    }

    .flow-section .step-title {
        font-size: 1.75rem;
    }

    .flow-section .step-description {
        font-size: 1.125rem;
    }

    .flow-section .image-container img {
        height: 18rem;
    }

    .flow-section .cta-text {
        font-size: 1.125rem;
    }

    .flow-section .cta-main {
        font-size: 1.75rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .flow-section {
        padding: 8rem 2rem;
    }

    .flow-section .header {
        margin-bottom: 5rem;
    }

    .flow-section .main-title {
        font-size: 3rem;
    }

    .flow-section .subtitle {
        font-size: 1.75rem;
    }

    .flow-section .flow-steps {
        gap: 5rem;
    }

    .flow-section .step-item:not(:last-child) .connecting-line {
        display: block;
    }

    .flow-section .step-content {
        gap: 4rem;
    }

    .flow-section .reverse .step-content {
        flex-direction: row-reverse;
    }

    .flow-section .content-card {
        padding: 2.5rem;
    }

    .flow-section .step-number {
        width: 5rem;
        height: 5rem;
        font-size: 1.875rem;
    }

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

    .flow-section .step-description {
        font-size: 1.125rem;
    }

    .flow-section .image-container img {
        height: 20rem;
    }

    .flow-section .cta-section {
        margin-top: 5rem;
    }

    .flow-section .cta-card {
        padding: 2rem 3rem;
    }

    .flow-section .cta-text {
        font-size: 1.25rem;
    }

    .flow-section .cta-main {
        font-size: 2rem;
    }
}




/* ========================================
   faq Section - Compatible Version
   ======================================== */

.faq-section {
  font-family: 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
  line-height: 1.6;
  padding: 40px 0;
}

/* FAQ Header */
.faq-section .faq-header {
  position: relative;
  background: linear-gradient(to right, #f8fafc, white);
  padding: 48px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

@media (min-width: 768px) {
  .faq-section .faq-header {
      padding: 48px 48px;
  }
}

.faq-section .header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #6366f1, #8b5cf6);
}

.faq-section .header-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.faq-section .header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-section .header-icon i {
  font-size: 32px;
  color: white;
}

.faq-section .header-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .faq-section .header-title {
      font-size: 2.25rem;
  }
}

.faq-section .title-highlight {
  display: inline-block;
  position: relative;
  margin-left: 8px;
}

.faq-section .title-gradient {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.faq-section .title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #6366f1);
  border-radius: 2px;
}

.faq-section .header-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 512px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Items */
.faq-section .faq-items {
  border-top: 1px solid #f1f5f9;
}

.faq-section .faq-item {
  padding: 32px;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.3s ease;
}

.faq-section .faq-item:hover {
  background-color: rgba(248, 250, 252, 0.5);
}

@media (min-width: 768px) {
  .faq-section .faq-item {
      padding: 32px 48px;
  }
}

/* Question */
.faq-section .question-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-section .q-label {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-section .question-icon {
  flex-shrink: 0;
  margin-top: 8px;
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.faq-section .question-icon i {
  font-size: 20px;
}

.faq-section .question-text {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.faq-section .question-text p {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-section .question-text p {
      font-size: 1.25rem;
  }
}

/* Answer */
.faq-section .answer-container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-left: 72px;
}

.faq-section .a-label {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-section .answer-icon {
  flex-shrink: 0;
  margin-top: 8px;
  width: 40px;
  height: 40px;
  background: #d1fae5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
}

.faq-section .answer-icon i {
  font-size: 20px;
}

.faq-section .answer-content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.faq-section .answer-box {
  background: linear-gradient(to right, #d1fae5, #dcfce7);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #10b981;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-section .answer-box p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-section .answer-box p {
      font-size: 1.125rem;
  }
}

/* Contact Section */
.faq-section .contact-section {
  background: linear-gradient(to right, #1e293b, #374151, #111827);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq-section .contact-section {
      padding: 48px 48px;
  }
}

.faq-section .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(79, 70, 229, 0.1));
}

.faq-section .contact-content {
  position: relative;
  z-index: 10;
}

.faq-section .contact-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-section .contact-icon i {
  font-size: 32px;
  color: white;
}

.faq-section .contact-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .faq-section .contact-title {
      font-size: 1.875rem;
  }
}

.faq-section .contact-subtitle {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-section .contact-subtitle {
      font-size: 1.25rem;
  }
}

.faq-section .contact-button {
  background: linear-gradient(to right, #3b82f6, #4f46e5);
  color: white;
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
}

.faq-section .contact-button:hover {
  background: linear-gradient(to right, #2563eb, #4338ca);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(1.05) translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .faq-section .answer-container {
      margin-left: 0;
      margin-top: 16px;
  }
  
  .faq-section .question-container,
  .faq-section .answer-container {
      gap: 16px;
  }
  
  .faq-section .q-label,
  .faq-section .a-label {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }
  
  .faq-section .question-icon,
  .faq-section .answer-icon {
      width: 32px;
      height: 32px;
  }
  
  .faq-section .question-icon i,
  .faq-section .answer-icon i {
      font-size: 16px;
  }
}



/* ========================================
   CTA Section - 独立したスタイル
   ======================================== */
   .cta-section {
    background: linear-gradient(to right, #f87171, #ec4899);
    position: relative;
    overflow: hidden;
    padding: 3rem 1rem;
    font-family: 'Hiragino Sans', 'Yu Gothic', Meiryo, sans-serif;
  }
  
  /* Override section background for cta section */
  .cta-section::before {
    display: none;
  }
  
  /* CTA専用のレスポンシブクラス */
  .cta-desktop-layout {
    display: none;
    align-items: center;
    justify-content: center;
    max-width: 896px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
  }
  
  .cta-mobile-layout {
    display: block;
    padding: 2rem 1rem;
    position: relative;
    z-index: 10;
  }
  
  @media (min-width: 768px) {
    .cta-desktop-layout {
      display: flex;
    }
    
    .cta-mobile-layout {
      display: none;
    }
  }
  
  /* CTA専用のテキストスタイル */
  .cta-section .cta-text-white {
    color: white;
  }
  
  .cta-section .cta-text-center {
    text-align: center;
  }
  
  .cta-section .cta-title-main {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
  }
  
  @media (min-width: 768px) {
    .cta-section .cta-title-main {
      font-size: 1.875rem;
    }
  }
  
  @media (min-width: 1024px) {
    .cta-section .cta-title-main {
      font-size: 2.25rem;
    }
  }
  
  .cta-section .cta-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.025em;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-subtitle {
      font-size: 0.875rem;
    }
  }
  
  /* Contact Card */
  .cta-section .cta-contact-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    margin: 0 auto;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-contact-card {
      border-radius: 0.75rem;
      padding: 1rem;
    }
  }
  
  .cta-section .cta-phone-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-phone-number {
      font-size: 1.5rem;
    }
  }
  
  .cta-section .cta-availability-badge {
    background-color: #14b8a6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-availability-badge {
      font-size: 0.75rem;
      padding: 0.25rem 0.75rem;
    }
  }
  
  .cta-section .cta-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
  }
  
  .cta-section .cta-contact-text {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-contact-text {
      font-size: 0.875rem;
    }
  }
  
  /* Buttons */
  .cta-section .cta-button-container {
    margin-top: 1rem;
  }
  
  .cta-section .cta-button-container > * + * {
    margin-top: 0.75rem;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-button-container > * + * {
      margin-top: 0.5rem;
    }
  }
  
  .cta-section .cta-button {
    width: 100%;
    font-weight: 700;
    padding: 1.5rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 767px) {
    .cta-section .cta-button {
      padding: 1.2rem 1rem;
      font-size: 0.875rem;
    }
  }
  
  .cta-section .cta-button:hover {
    transform: translateY(-1px);
  }
  
  .cta-section .cta-button-line {
    background-color: #22c55e;
    color: white;
  }
  
  .cta-section .cta-button-line:hover {
    background-color: #16a34a;
  }
  
  .cta-section .cta-button-mail {
    background-color: #ef4444;
    color: white;
  }
  
  .cta-section .cta-button-mail:hover {
    background-color: #dc2626;
  }
  
  /* Background Decorative Elements */
  .cta-section .cta-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: #fca5a5;
    opacity: 0.2;
    border-radius: 50%;
    transform: translateY(-8rem) translateX(8rem);
  }
  
  .cta-section .cta-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background-color: #f9a8d4;
    opacity: 0.2;
    border-radius: 50%;
    transform: translateY(6rem) translateX(-6rem);
  }

  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .cta-section {
      padding: 2rem 1rem;
    }
  }
  
  @media (min-width: 768px) {
    .cta-section {
      padding: 3rem 1rem;
    }
  }
  