/* --------------------------------------------------------------
# About Page - Emotional Experience UX System
# studio una 感情体験UXシステム専用スタイルシート
-------------------------------------------------------------- */

/* CSS Custom Properties for Emotional Design */
:root {
    /* 感情的カラーパレット */
    --trust-blue: rgba(70, 130, 180, 0.1);
    --warmth-orange: rgba(255, 165, 0, 0.1);
    --comfort-green: rgba(144, 238, 144, 0.1);
    --excitement-pink: rgba(255, 182, 193, 0.15);
    
    /* 感情的タイミング */
    --emotion-slow: 1.2s;
    --emotion-medium: 0.8s;
    --emotion-fast: 0.4s;
    
    /* 感情的影 */
    --emotion-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --emotion-shadow-warm: 0 12px 40px rgba(200, 184, 161, 0.2);
    --emotion-shadow-deep: 0 16px 60px rgba(0, 0, 0, 0.12);
}

/* --------------------------------------------------------------
# 1. ストーリー型スクロールエクスペリエンス
-------------------------------------------------------------- */

/* Reveal animations for IntersectionObserver */








/* --------------------------------------------------------------
# 2. 感情的つながりの演出
-------------------------------------------------------------- */

/* 心に響く理念セクション (UNUSED - 削除候補) */




@keyframes float-pattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(-60px); }
}





/* 共感ストーリーのアニメーション */










@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(100%); }
    100% { transform: translateX(100%) translateY(-100%); }
}

/* --------------------------------------------------------------
# 3. 人間味のあるチーム紹介
-------------------------------------------------------------- */


























/* 専門性の可視化 */






/* --------------------------------------------------------------
# 4. 実績・信頼性の動的表示
-------------------------------------------------------------- */



.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}











/* 満足度メーターの視覚的表現 */








/* --------------------------------------------------------------
# 5. お客様の声の感情表現
-------------------------------------------------------------- */































@keyframes starAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}









/* --------------------------------------------------------------
# 6. 行動促進の導線強化
-------------------------------------------------------------- */





@keyframes twinkle {
    0% { opacity: 0.3; transform: rotate(0deg); }
    100% { opacity: 0.8; transform: rotate(360deg); }
}









.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* 感情的CTAボタン */












/* --------------------------------------------------------------
# 7. インタラクティブスタジオツアー
-------------------------------------------------------------- */











@keyframes pulse-hotspot {
    0% { box-shadow: 0 0 0 0 rgba(200, 184, 161, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(200, 184, 161, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 184, 161, 0); }
}















/* --------------------------------------------------------------
# 8. レスポンシブデザイン
-------------------------------------------------------------- */

@media (width <= 768px) {
    .story-chapter {
        padding: 60px 0;
    }
    
    
    
    
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    
    
    
    
    
    
}

@media (width <= 480px) {
    
    
    
    
    
    
    
    
    
}

/* ===================================================================
   Screen2 Staff Page Styles - Appended 2025-10-21
   Migrated from screen2.css for Erica_funakoshi.html
   Purpose: Staff introduction page with hero, gallery, and team cards
   =================================================================== */

/* ===================================================================
   Hero Section
   =================================================================== */

.s2-hero {
  background: var(--cream-white);
  padding: var(--space-fluid-3xl) 0 var(--space-fluid-2xl);
  margin-top: 80px; /* Offset for fixed navbar */
}

.s2-hero-grid {
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 5%;
  align-items: center;
}

.s2-hero-text {
  background: #fff;
  padding: var(--space-fluid-xl);
  box-shadow: var(--shadow-soft);
  position: relative;
}

/* Speech bubble triangle */
.s2-hero-text::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.s2-hero-tag {
  font-family: var(--font-accent);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--warm-gray);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.s2-hero-subtitle {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}



/* Decorative background text */




/* Tagline above name */
.s2-hero-tagline {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--primary-beige);
  opacity: 0.85;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.s2-hero-name {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

/* Pattern C: Double line divider */
.s2-hero-divider {
  border-top: 1px solid rgba(230, 225, 215, 0.5);
  border-bottom: 1px solid rgba(230, 225, 215, 0.3);
  height: 3px;
  margin: var(--space-lg) 0;
}



.s2-hero-description p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: var(--soft-black);
  margin-bottom: var(--space-sm);
}

.s2-hero-description p:last-child {
  margin-bottom: 0;
}

.s2-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* ===================================================================
   Section Title (Common)
   =================================================================== */

.s2-section-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: var(--space-fluid-lg);
  position: relative;
}

.s2-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--primary-beige) 0%,
    transparent 100%);
  margin: var(--space-md) auto 0;
}

/* ===================================================================
   Studio Image Section
   =================================================================== */

.s2-studio {
  background: #fff;
  padding: var(--space-fluid-2xl) 0;
}

.s2-studio-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.s2-studio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-beige);
  flex-shrink: 0;
}

.s2-studio-text {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: var(--soft-black);
  flex: 1;
  background: #f5f5f5;
  padding: 20px 25px;
  border-radius: 12px;
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.s2-studio-text::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right: 8px solid #f5f5f5;
}

/* ===================================================================
   Gallery Section
   =================================================================== */

.s2-gallery {
  background: var(--cream-white);
  padding: var(--space-fluid-2xl) 0;
}

.s2-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.s2-works-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.s2-works-grid img:hover {
  opacity: 0.85;
}

/* ===================================================================
   Profile Section
   =================================================================== */

.s2-profile {
  background: #fff;
  padding: var(--space-fluid-2xl) 0;
}

.s2-profile-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(230, 225, 215, 0.4);
  padding: var(--space-fluid-lg);
  position: relative;
}

.s2-profile-label {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--charcoal);
  color: #fff;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-md);
}

.s2-profile-text {
  margin-top: var(--space-lg);
}

.s2-profile-text p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: var(--soft-black);
  margin-bottom: var(--space-sm);
}

.s2-profile-text p:last-child {
  margin-bottom: 0;
}

.s2-profile-text strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* ===================================================================
   Staff Section
   =================================================================== */

.s2-staff {
  background: var(--cream-white);
  padding: var(--space-fluid-3xl) 0;
}

.s2-staff-header {
  text-align: center;
  margin-bottom: var(--space-fluid-2xl);
  position: relative;
}

.s2-staff-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

/* Handwritten logo style */
/* .s2-staff-title::after {
  content: 'kowa staff';
  display: block;
  font-family: 'Klee One', cursive;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(107, 100, 97, 0.25);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
  text-transform: none;
} */

.s2-staff-subtitle {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.s2-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: var(--space-fluid-xl);
}

.s2-staff-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.s2-staff-card:hover {
  transform: translateY(-4px);
}

.s2-staff-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: var(--space-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.s2-staff-card:hover img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.s2-staff-card-name {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.s2-staff-card-role {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.s2-staff-link-wrapper {
  text-align: center;
}

.s2-staff-link {
  display: inline-block;
  background: #fff;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.s2-staff-link:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ===================================================================
   Responsive Design
   =================================================================== */

/* Tablet (768px - 1023px) */
@media (width <= 1023px) {
  .s2-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .s2-hero-text::after {
    display: none;
  }

  .s2-hero-image {
    order: -1; /* Move image above text */
  }

  .s2-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .s2-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (< 768px) */
@media (width <= 767px) {
  .s2-hero {
    margin-top: 60px;
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .s2-hero-text {
    padding: var(--space-lg);
  }

  .s2-studio-content {
    flex-direction: column;
    align-items: center;
  }

  .s2-studio-avatar {
    margin-bottom: var(--space-md);
  }

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

  .s2-studio-text::before {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom: 8px solid #f5f5f5;
    border-right: 8px solid transparent;
  }

  .s2-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .s2-profile-box {
    padding: var(--space-lg);
  }

  .s2-staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .s2-staff-link {
    width: 100%;
    padding: var(--space-md);
  }
}

/* --------------------------------------------------------------
# LINE Chat Section Styles (Phase C - 2025-11-20)
# インラインスタイルを外部化したAbout専用クラス
-------------------------------------------------------------- */

.line-chat-heading {
  color: #1f1f1f;
}

.line-chat-message {
  color: #1f1f1f;
}

/* ===============================================================
   Content.css Integration - Phase C CSS Consolidation
   Date: 2025-11-20
   
   Merged from: content.css (1,078 lines, 20KB)
   Reason: Reduce HTTP requests, consolidate FAQ/Flow page styles
   
   Original content.css classes (62 classes):
   - FAQ page: .faq-*, .search-*, .payment-methods, etc.
   - Flow page: .flow-step-*, .commitment-*, .line-chat-*, etc.
   - About shared: .philosophy-*, 





.philosophy-section {
    background: var(--light-gray);
}

.philosophy-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-beige);
}

.philosophy-text .sub-text {
    display: block;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-top: 0.5rem;
}









/* Team Section */


.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-info .role {
    color: var(--primary-beige);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-info .bio {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Studio Info */
.studio-gallery img {
    transition: transform 0.3s ease;
}

.studio-gallery img:hover {
    transform: scale(1.05);
}

.studio-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.studio-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.studio-features i {
    color: var(--primary-beige);
}






/* --------------------------------------------------------------
# Flow Page Specific Styles
-------------------------------------------------------------- */

/* Page Header Hero */
.page-header-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.page-header-hero .breadcrumb-item,
.page-header-hero .breadcrumb-item a,
.page-header-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

.page-header-hero .page-title,
.page-header-hero .page-subtitle {
    color: var(--cream-white);
}

.hero-message {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-message .lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
}

/* Commitment Section */
.commitment-cards {
    margin-top: 3rem;
}

.commitment-card {
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.commitment-icon i {
    font-size: 2.5rem;
    color: var(--primary-beige);
}

.commitment-card:hover .commitment-icon {
    background: var(--primary-beige);
    transform: translateY(-5px) scale(1.1);
}

.commitment-card:hover .commitment-icon i {
    color: var(--cream-white);
}

.commitment-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.commitment-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* Flow Steps */
.flow-step-card {
    position: relative;
    background: var(--cream-white);
    border-radius: 10px;
    padding: 5rem 3rem 3rem 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    overflow: visible;
    transition: all 0.3s ease;
}

/* Decorative Step Badge */
.flow-step-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4c5b0 0%, #c8b8a1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cream-white);
    box-shadow: 0 8px 25px rgba(200, 184, 161, 0.5),
                inset 0 -3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Unified font for all steps - Bebas Neue */
.flow-step-badge {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.flow-step-badge::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    top: 0;
    left: 0;
}

.flow-step-badge::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid rgba(200, 184, 161, 0.2);
    top: -5%;
    left: -5%;
}

.flow-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-image {
    position: relative;
    overflow: hidden;
    border-radius: 7.5px;
    height: 400px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flow-step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary-beige);
    color: var(--cream-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.step-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.step-subtitle {
    font-size: 1.1rem;
    color: var(--primary-beige);
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

/* Step Features */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}





/* Step Tip */
.step-tip {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-tip i {
    font-size: 1.5rem;
    color: var(--soft-brown);
    flex-shrink: 0;
}

.step-tip p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--soft-brown);
}

/* LINE Chat Example */
.line-chat-example {
    background: #8cabd8;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.line-chat-example h5 {
    color: #1f1f1f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.line-chat-example h5 i {
    color: #06C755;
    font-size: 1.3rem;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    position: relative;
}

.message.customer {
    background: #c3f69d;
    color: #1f1f1f;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.message.studio {
    background: white;
    color: #1f1f1f;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.message p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Proposal Example */
.proposal-example {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.proposal-example h5 {
    color: var(--primary-beige);
    margin-bottom: 1rem;
}

.proposal-example ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proposal-example li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 134, 128, 0.2);
}

.proposal-example li:last-child {
    border-bottom: none;
}

/* Preparation Checklist */
.preparation-checklist {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.preparation-checklist h5 {
    color: var(--primary-beige);
    margin-bottom: 1rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: default;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-beige);
}

/* Shooting Timeline */
.shooting-timeline {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.shooting-timeline h5 {
    color: var(--primary-beige);
    margin-bottom: 1rem;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.timeline-item .time {
    font-weight: 600;
    color: var(--primary-beige);
    min-width: 60px;
}

.timeline-item .event {
    color: var(--warm-gray);
}

/* Step Highlight */
.step-highlight {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.step-highlight i {
    font-size: 1.5rem;
    color: var(--soft-brown);
}

.step-highlight p {
    margin: 0;
    color: var(--soft-brown);
}

/* Delivery Info */
.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}









/* Customer Voices */
.voice-card {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.voice-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-header h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.voice-header p {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin: 0;
}

.voice-content {
    margin-bottom: 1.5rem;
}

.voice-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray);
    font-style: italic;
}

.voice-rating {
    text-align: center;
}

.voice-rating i {
    color: var(--happy-yellow);
    font-size: 1rem;
    margin: 0 2px;
}

/* CTA Buttons */
.btn-primary-large,
.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-primary-large {
    background: var(--primary-beige);
    color: var(--cream-white);
}

.btn-primary-large:hover {
    background: var(--soft-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--cream-white);
}

.btn-outline-large {
    background: transparent;
    border: 2px solid var(--primary-beige);
    color: var(--primary-beige);
}

.btn-outline-large:hover {
    background: var(--primary-beige);
    color: var(--cream-white);
}

/* Responsive */
@media (width <= 991px) {
    .flow-step-card {
        padding: 2rem;
    }

    .step-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .message {
        max-width: 85%;
    }
}

@media (width <= 767px) {
    .page-header-hero {
        min-height: 60vh;
    }

    .hero-message {
        padding: 1.5rem;
    }

    .hero-message .lead {
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.6rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 20px;
        right: 20px;
    }

    .flow-step-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        top: -30px;
    }

    .commitment-card {
        padding: 2rem 1rem;
    }

    .delivery-info {
        grid-template-columns: 1fr;
    }

    .btn-primary-large,
    .btn-outline-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
