/*
Theme Name: VHS Pro - Virtual Home Staging
Template: twentytwentyfour
Description: プロフェッショナルなバーチャルホームステージングサービス向け子テーマ。最新のAI技術を用いた高品質な画像加工サービスを提供します。
Author: VHS Pro Team
Author URI: https://example.com
Version: 2.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vhs-pro
*/

/* ========================================
   Parent Theme Content Width Override
   ======================================== */
/*
 * Twenty Twenty-Four restricts content width to ~620px for readable text.
 * These rules allow our custom HTML pages to break out and use full width layout.
 * This is necessary when using Custom HTML blocks in WordPress pages.
 */

/* Reset parent theme's content constraints for vhs-section elements */
.entry-content > .vhs-section,
.entry-content .vhs-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Ensure vhs-container within sections respects our layout */
.vhs-section .vhs-container {
  width: 100%;
  max-width: var(--vhs-container-max, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--vhs-space-xl, 2rem);
  padding-right: var(--vhs-space-xl, 2rem);
  box-sizing: border-box;
}

/* For WordPress blocks that wrap our content */
.wp-block-html .vhs-section,
.wp-block-group .vhs-section,
.wp-block-post-content .vhs-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

/* Prevent parent theme from adding excessive padding to our sections */
.entry-content .vhs-section > *:first-child {
  margin-top: 0;
}

.entry-content .vhs-section > *:last-child {
  margin-bottom: 0;
}

/* Override parent theme's entry-content max-width completely */
.entry-content:has(.vhs-section) {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Override any parent containers that might restrict width */
.wp-site-blocks:has(.vhs-section),
.wp-block-group:has(.vhs-section),
.wp-block-post-content:has(.vhs-section) {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Override Twenty Twenty-Four specific containers */
body:has(.vhs-section) .wp-site-blocks > * {
  max-width: 100% !important;
}

/* Support for WordPress alignfull class */
.alignfull .vhs-section,
.wp-block-html.alignfull .vhs-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Alternative: Direct alignfull on vhs-section */
.vhs-section.alignfull {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Ensure no box-sizing issues */
.vhs-section,
.vhs-section * {
  box-sizing: border-box;
}

/* Prevent horizontal overflow on mobile */
body {
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
}

/* Responsive adjustments for full-width sections */
@media (max-width: 767px) {
  .vhs-section .vhs-container {
    padding-left: var(--vhs-space-lg, 1.5rem);
    padding-right: var(--vhs-space-lg, 1.5rem);
  }
}

/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
  /* Color Palette - Minimal & Professional */
  --vhs-primary: #4d65ff;
  --vhs-primary-dark: #3a4fcc;
  --vhs-primary-light: #6b7fff;

  --vhs-secondary: #1a1a1a;
  --vhs-secondary-light: #2d2d2d;

  --vhs-accent: #ff6b6b;
  --vhs-success: #51cf66;
  --vhs-warning: #ffa94d;

  /* Neutral Colors */
  --vhs-white: #ffffff;
  --vhs-black: #000000;
  --vhs-gray-50: #fafafa;
  --vhs-gray-100: #f5f5f5;
  --vhs-gray-200: #e5e5e5;
  --vhs-gray-300: #d4d4d4;
  --vhs-gray-400: #a3a3a3;
  --vhs-gray-500: #737373;
  --vhs-gray-600: #525252;
  --vhs-gray-700: #404040;
  --vhs-gray-800: #262626;
  --vhs-gray-900: #171717;

  /* Typography */
  --vhs-font-primary: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vhs-font-secondary: 'DM Sans', 'Noto Sans JP', sans-serif;

  /* Font Sizes - Refined Scale */
  --vhs-text-xs: 0.75rem;      /* 12px */
  --vhs-text-sm: 0.875rem;     /* 14px */
  --vhs-text-base: 1rem;       /* 16px */
  --vhs-text-lg: 1.125rem;     /* 18px */
  --vhs-text-xl: 1.25rem;      /* 20px */
  --vhs-text-2xl: 1.5rem;      /* 24px */
  --vhs-text-3xl: 2rem;        /* 32px */
  --vhs-text-4xl: 2.5rem;      /* 40px */
  --vhs-text-5xl: 3rem;        /* 48px */
  --vhs-text-6xl: 4rem;        /* 64px */

  /* Spacing - Consistent Scale */
  --vhs-space-xs: 0.25rem;     /* 4px */
  --vhs-space-sm: 0.5rem;      /* 8px */
  --vhs-space-md: 1rem;        /* 16px */
  --vhs-space-lg: 1.5rem;      /* 24px */
  --vhs-space-xl: 2rem;        /* 32px */
  --vhs-space-2xl: 3rem;       /* 48px */
  --vhs-space-3xl: 4rem;       /* 64px */
  --vhs-space-4xl: 6rem;       /* 96px */
  --vhs-space-5xl: 8rem;       /* 128px */

  /* Border Radius */
  --vhs-radius-sm: 4px;
  --vhs-radius-md: 8px;
  --vhs-radius-lg: 12px;
  --vhs-radius-xl: 16px;
  --vhs-radius-2xl: 24px;
  --vhs-radius-full: 9999px;

  /* Shadows - Subtle & Professional */
  --vhs-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --vhs-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --vhs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --vhs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --vhs-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --vhs-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --vhs-transition-fast: all 0.15s ease;
  --vhs-transition-base: all 0.3s ease;
  --vhs-transition-slow: all 0.5s ease;

  /* Layout */
  --vhs-container-max: 1200px;
  --vhs-container-lg: 1024px;
  --vhs-container-md: 768px;
  --vhs-header-height: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--vhs-font-primary);
  font-size: var(--vhs-text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--vhs-gray-900);
  background-color: var(--vhs-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--vhs-transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ========================================
   Container & Layout
   ======================================== */
.vhs-container {
  width: 100%;
  max-width: var(--vhs-container-max);
  margin: 0 auto;
  padding: 0 var(--vhs-space-xl);
}

.vhs-container--lg {
  max-width: var(--vhs-container-lg);
}

.vhs-container--md {
  max-width: var(--vhs-container-md);
}

.vhs-section {
  padding: var(--vhs-space-5xl) 0;
}

.vhs-section--sm {
  padding: var(--vhs-space-4xl) 0;
}

.vhs-section--gray {
  background-color: var(--vhs-gray-50);
}

.vhs-section--dark {
  background-color: var(--vhs-secondary);
  color: var(--vhs-white);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vhs-font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--vhs-space-lg);
  color: var(--vhs-gray-900);
}

.vhs-section--dark h1,
.vhs-section--dark h2,
.vhs-section--dark h3,
.vhs-section--dark h4,
.vhs-section--dark h5,
.vhs-section--dark h6 {
  color: var(--vhs-white);
}

h1, .vhs-h1 {
  font-size: var(--vhs-text-5xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2, .vhs-h2 {
  font-size: var(--vhs-text-4xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3, .vhs-h3 {
  font-size: var(--vhs-text-3xl);
  font-weight: 700;
}

h4, .vhs-h4 {
  font-size: var(--vhs-text-2xl);
  font-weight: 600;
}

p {
  margin-bottom: var(--vhs-space-md);
  line-height: 1.8;
}

.vhs-lead {
  font-size: var(--vhs-text-xl);
  color: var(--vhs-gray-600);
  line-height: 1.75;
}

.vhs-text-center {
  text-align: center;
}

.vhs-text-muted {
  color: var(--vhs-gray-500);
}

/* ========================================
   Header & Navigation
   ======================================== */
.vhs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vhs-header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vhs-gray-200);
  z-index: 1000;
  transition: var(--vhs-transition-base);
}

.vhs-header.scrolled {
  box-shadow: var(--vhs-shadow-sm);
}

.vhs-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--vhs-container-max);
  margin: 0 auto;
  padding: 0 var(--vhs-space-xl);
}

.vhs-logo {
  font-size: var(--vhs-text-xl);
  font-weight: 700;
  color: var(--vhs-secondary);
  letter-spacing: -0.01em;
}

.vhs-nav {
  display: flex;
  gap: var(--vhs-space-2xl);
  align-items: center;
}

.vhs-nav__link {
  font-weight: 500;
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-700);
  padding: var(--vhs-space-sm) 0;
  position: relative;
  transition: var(--vhs-transition-fast);
}

.vhs-nav__link:hover {
  color: var(--vhs-primary);
}

.vhs-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vhs-primary);
  transition: width 0.3s ease;
}

.vhs-nav__link:hover::after {
  width: 100%;
}

.vhs-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--vhs-text-2xl);
  cursor: pointer;
  color: var(--vhs-gray-700);
  padding: var(--vhs-space-sm);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .vhs-mobile-menu-toggle {
    display: block;
  }

  .vhs-nav {
    position: fixed;
    top: var(--vhs-header-height);
    left: 0;
    right: 0;
    background-color: var(--vhs-white);
    flex-direction: column;
    padding: var(--vhs-space-2xl);
    box-shadow: var(--vhs-shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--vhs-transition-base);
    gap: var(--vhs-space-md);
    align-items: flex-start;
  }

  .vhs-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* ========================================
   Buttons
   ======================================== */
.vhs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--vhs-space-md) var(--vhs-space-2xl);
  font-size: var(--vhs-text-base);
  font-weight: 600;
  text-align: center;
  border-radius: var(--vhs-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--vhs-transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.vhs-btn--primary {
  background-color: var(--vhs-primary);
  color: var(--vhs-white);
  border-color: var(--vhs-primary);
}

.vhs-btn--primary:hover {
  background-color: var(--vhs-primary-dark);
  border-color: var(--vhs-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--vhs-shadow-lg);
}

.vhs-btn--secondary {
  background-color: transparent;
  color: var(--vhs-primary);
  border-color: var(--vhs-primary);
}

.vhs-btn--secondary:hover {
  background-color: var(--vhs-primary);
  color: var(--vhs-white);
}

.vhs-btn--outline {
  background-color: transparent;
  color: var(--vhs-gray-900);
  border-color: var(--vhs-gray-300);
}

.vhs-btn--outline:hover {
  border-color: var(--vhs-gray-900);
  background-color: var(--vhs-gray-900);
  color: var(--vhs-white);
}

.vhs-btn--large {
  padding: var(--vhs-space-lg) var(--vhs-space-3xl);
  font-size: var(--vhs-text-lg);
}

.vhs-btn--small {
  padding: var(--vhs-space-sm) var(--vhs-space-lg);
  font-size: var(--vhs-text-sm);
}

/* ========================================
   Hero Section
   ======================================== */
.vhs-hero {
  margin-top: var(--vhs-header-height);
  padding: var(--vhs-space-5xl) 0;
  background-color: var(--vhs-gray-50);
  position: relative;
}

.vhs-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vhs-hero__title {
  font-size: var(--vhs-text-6xl);
  font-weight: 800;
  margin-bottom: var(--vhs-space-xl);
  color: var(--vhs-gray-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.vhs-hero__subtitle {
  font-size: var(--vhs-text-xl);
  color: var(--vhs-gray-600);
  margin-bottom: var(--vhs-space-3xl);
  line-height: 1.75;
}

.vhs-hero__buttons {
  display: flex;
  gap: var(--vhs-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--vhs-space-4xl);
}

.vhs-hero__image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--vhs-radius-2xl);
  overflow: hidden;
  box-shadow: var(--vhs-shadow-2xl);
}

/* Hero Split Layout (Text Left, Image Right) */
.vhs-hero--split .vhs-hero__wrapper {
  display: flex;
  align-items: center;
  gap: var(--vhs-space-5xl);
  max-width: 1400px;
  margin: 0 auto;
}

.vhs-hero--split .vhs-hero__content {
  flex: 1;
  max-width: none;
  text-align: left;
  margin: 0;
}

.vhs-hero--split .vhs-hero__buttons {
  justify-content: flex-start;
  margin-bottom: 0;
}

.vhs-hero--split .vhs-hero__image {
  flex: 1;
  max-width: none;
  margin: 0;
}

/* Hero Interactive Layout (Full Width Slider with Overlay Text) */
.vhs-hero--interactive {
  margin-top: var(--vhs-header-height);
  padding: 0;
  background-color: transparent;
  position: relative;
}

.vhs-hero__slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 650px;
}

.vhs-hero__image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vhs-comparison-slider--hero {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

.vhs-comparison-slider--hero .vhs-comparison-slider__container {
  height: 100%;
}

.vhs-comparison-slider--hero .vhs-comparison-slider__image {
  object-fit: cover;
  object-position: 60% center;
}

.vhs-container--hero {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.vhs-hero__title-overlay {
  max-width: 480px;
  padding: var(--vhs-space-xl) var(--vhs-space-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--vhs-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  pointer-events: none;
}

.vhs-hero__title-overlay .vhs-hero__title {
  font-size: var(--vhs-text-2xl);
  font-weight: 800;
  margin-bottom: var(--vhs-space-sm);
  background: linear-gradient(135deg, var(--vhs-primary) 0%, var(--vhs-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 2px 10px rgba(77, 101, 255, 0.2);
  position: relative;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.vhs-hero__title-overlay .vhs-hero__title::before,
.vhs-hero__title-overlay .vhs-hero__title::after {
  display: none !important;
}

.vhs-hero__subtitle-en {
  font-size: var(--vhs-text-sm);
  font-weight: 500;
  color: var(--vhs-gray-500);
  margin: 0;
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.vhs-hero__subtitle-en .vhs-accent-letter {
  color: var(--vhs-primary);
  font-weight: 700;
}

.vhs-hero__subtitle-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--vhs-space-4xl) 0;
  text-align: center;
}

.vhs-hero__subtitle-wrapper .vhs-hero__subtitle {
  font-size: var(--vhs-text-xl);
  color: var(--vhs-gray-700);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vhs-hero__slider-wrapper {
    min-height: 500px;
  }

  .vhs-comparison-slider--hero {
    min-height: 500px;
  }

  .vhs-container--hero {
    bottom: 8%;
  }

  .vhs-hero__title-overlay {
    max-width: 90%;
    padding: var(--vhs-space-md) var(--vhs-space-sm);
  }

  .vhs-hero__title-overlay .vhs-hero__title {
    font-size: var(--vhs-text-lg);
  }

  .vhs-hero__subtitle-en {
    font-size: var(--vhs-text-xs);
  }

  .vhs-hero__subtitle-wrapper {
    padding: var(--vhs-space-3xl) var(--vhs-space-md);
  }

  .vhs-hero__subtitle-wrapper .vhs-hero__subtitle {
    font-size: var(--vhs-text-base);
  }
}

/* Hero Badge */
.vhs-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vhs-primary), var(--vhs-secondary));
  color: var(--vhs-white);
  padding: 0.5rem 1rem;
  border-radius: var(--vhs-radius-full);
  font-size: var(--vhs-text-sm);
  font-weight: 600;
  margin-bottom: var(--vhs-space-lg);
  box-shadow: 0 4px 12px rgba(77, 101, 255, 0.3);
}

/* Hero Benefits List */
.vhs-hero__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--vhs-space-3xl) 0;
}

.vhs-hero__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: var(--vhs-text-base);
  color: var(--vhs-gray-700);
}

.vhs-hero__benefit-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Hero Trust Badges */
.vhs-hero__trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: var(--vhs-space-xl);
  padding-top: var(--vhs-space-xl);
  border-top: 1px solid var(--vhs-gray-200);
}

.vhs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  font-weight: 500;
}

/* Mobile: Stack vertically */
@media (max-width: 968px) {
  .vhs-hero--split .vhs-hero__wrapper {
    flex-direction: column;
    gap: var(--vhs-space-4xl);
  }

  .vhs-hero--split .vhs-hero__content {
    text-align: center;
  }

  .vhs-hero--split .vhs-hero__buttons {
    justify-content: center;
  }

  .vhs-hero__benefit {
    justify-content: center;
    text-align: center;
  }

  .vhs-hero__trust {
    justify-content: center;
  }
}

/* ========================================
   Stats Section
   ======================================== */
.vhs-stats-section {
  padding: var(--vhs-space-4xl) 0;
  background-color: var(--vhs-white);
  border-top: 1px solid var(--vhs-gray-200);
  border-bottom: 1px solid var(--vhs-gray-200);
}

.vhs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vhs-space-3xl);
  text-align: center;
}

.vhs-stat {
  padding: var(--vhs-space-xl);
}

.vhs-stat__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--vhs-primary);
  line-height: 1;
  margin-bottom: var(--vhs-space-md);
}

.vhs-stat__label {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 968px) {
  .vhs-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vhs-space-2xl);
  }

  .vhs-stat__number {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .vhs-stats {
    grid-template-columns: 1fr;
  }
}

/* Inline Stats (for content sections) */
.vhs-stats-inline {
  display: flex;
  gap: var(--vhs-space-2xl);
  margin: var(--vhs-space-2xl) 0;
  flex-wrap: wrap;
}

.vhs-stat-inline {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.vhs-stat-inline__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vhs-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vhs-stat-inline__label {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  font-weight: 600;
}

/* ========================================
   Benefit Badges
   ======================================== */
.vhs-benefit-badge {
  display: inline-block;
  background-color: rgba(77, 101, 255, 0.1);
  color: var(--vhs-primary);
  padding: 0.375rem 0.875rem;
  border-radius: var(--vhs-radius-full);
  font-size: var(--vhs-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--vhs-space-md);
}

/* ========================================
   Comparison Boxes
   ======================================== */
.vhs-comparison-box {
  background-color: var(--vhs-gray-50);
  border-radius: var(--vhs-radius-lg);
  padding: var(--vhs-space-lg);
  margin: var(--vhs-space-lg) 0;
}

.vhs-comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--vhs-space-md) 0;
  border-bottom: 1px solid var(--vhs-gray-200);
}

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

.vhs-comparison-row--highlight {
  background-color: rgba(81, 207, 102, 0.1);
  padding: var(--vhs-space-md);
  margin: 0.5rem -var(--vhs-space-md);
  border-radius: var(--vhs-radius-md);
}

.vhs-comparison-label {
  font-size: var(--vhs-text-base);
  color: var(--vhs-gray-700);
  font-weight: 500;
}

.vhs-comparison-value {
  font-size: var(--vhs-text-lg);
  font-weight: 700;
}

.vhs-comparison-value--old {
  color: var(--vhs-gray-500);
  text-decoration: line-through;
}

.vhs-comparison-value--new {
  color: var(--vhs-success);
}

/* ========================================
   Step Elements
   ======================================== */
.vhs-step__time {
  margin-top: var(--vhs-space-md);
  padding: 0.5rem 1rem;
  background-color: rgba(77, 101, 255, 0.1);
  border-radius: var(--vhs-radius-md);
  font-size: var(--vhs-text-sm);
  font-weight: 600;
  color: var(--vhs-primary);
  display: inline-block;
}

/* ========================================
   Pricing Enhancements
   ======================================== */
.vhs-pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff8c42);
  color: var(--vhs-white);
  padding: 0.375rem 1rem;
  border-radius: var(--vhs-radius-full);
  font-size: var(--vhs-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.vhs-pricing-card__desc {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  margin-bottom: var(--vhs-space-lg);
}

.vhs-pricing-card__note {
  margin-top: var(--vhs-space-md);
  font-size: var(--vhs-text-xs);
  color: var(--vhs-success);
  font-weight: 600;
  text-align: center;
}

/* ========================================
   White Button Variant
   ======================================== */
.vhs-btn--white {
  background-color: var(--vhs-white);
  color: var(--vhs-primary);
  border: 2px solid var(--vhs-white);
}

.vhs-btn--white:hover {
  background-color: var(--vhs-gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Text Highlight
   ======================================== */
.vhs-text-highlight {
  font-size: var(--vhs-text-lg);
  font-weight: 600;
  color: var(--vhs-primary);
  padding: var(--vhs-space-md) var(--vhs-space-xl);
  background-color: rgba(77, 101, 255, 0.1);
  border-radius: var(--vhs-radius-lg);
  display: inline-block;
  margin-bottom: var(--vhs-space-lg);
}

/* ========================================
   CTA Section Enhancements
   ======================================== */
.vhs-cta-section {
  position: relative;
  overflow: hidden;
}

.vhs-cta-benefits {
  text-align: center;
}

.vhs-cta-benefit {
  color: var(--vhs-white);
}

/* ========================================
   Cards
   ======================================== */
.vhs-card {
  background-color: var(--vhs-white);
  border: 1px solid var(--vhs-gray-200);
  border-radius: var(--vhs-radius-xl);
  padding: var(--vhs-space-2xl);
  transition: var(--vhs-transition-base);
  height: 100%;
}

.vhs-card:hover {
  border-color: var(--vhs-gray-300);
  box-shadow: var(--vhs-shadow-md);
  transform: translateY(-4px);
}

.vhs-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--vhs-radius-lg);
  margin-bottom: var(--vhs-space-lg);
}

.vhs-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vhs-space-lg);
  background-color: var(--vhs-gray-100);
  border-radius: var(--vhs-radius-md);
}

.vhs-card__icon img,
.vhs-card__icon svg {
  width: 24px;
  height: 24px;
}

.vhs-card__title {
  font-size: var(--vhs-text-xl);
  font-weight: 700;
  margin-bottom: var(--vhs-space-md);
  color: var(--vhs-gray-900);
}

.vhs-card__text {
  color: var(--vhs-gray-600);
  line-height: 1.7;
  font-size: var(--vhs-text-base);
}

/* ========================================
   Grid System
   ======================================== */
.vhs-grid {
  display: grid;
  gap: var(--vhs-space-2xl);
}

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

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

.vhs-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .vhs-grid--3,
  .vhs-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vhs-grid--2,
  .vhs-grid--3,
  .vhs-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Before/After Comparison Slider
   ======================================== */
.vhs-comparison-slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--vhs-radius-2xl);
  box-shadow: var(--vhs-shadow-xl);
  background-color: var(--vhs-gray-100);
}

.vhs-comparison-slider__container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.vhs-comparison-slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vhs-comparison-slider__image--after {
  clip-path: inset(0 50% 0 0);
}

.vhs-comparison-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: var(--vhs-white);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.vhs-comparison-slider__handle::before {
  content: '⇄';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background-color: var(--vhs-white);
  border-radius: var(--vhs-radius-full);
  transform: translate(-50%, -50%);
  box-shadow: var(--vhs-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--vhs-primary);
  font-weight: 700;
}

.vhs-comparison-slider__label {
  position: absolute;
  top: var(--vhs-space-lg);
  padding: var(--vhs-space-sm) var(--vhs-space-lg);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--vhs-gray-900);
  font-size: var(--vhs-text-sm);
  font-weight: 600;
  border-radius: var(--vhs-radius-full);
  z-index: 5;
}

.vhs-comparison-slider__label--before {
  left: var(--vhs-space-lg);
}

.vhs-comparison-slider__label--after {
  right: var(--vhs-space-lg);
}

/* ========================================
   Pricing Cards
   ======================================== */
.vhs-pricing-card {
  background-color: var(--vhs-white);
  border: 2px solid var(--vhs-gray-200);
  border-radius: var(--vhs-radius-xl);
  padding: var(--vhs-space-3xl) var(--vhs-space-2xl);
  text-align: center;
  transition: var(--vhs-transition-base);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vhs-pricing-card:hover {
  border-color: var(--vhs-primary);
  transform: translateY(-8px);
  box-shadow: var(--vhs-shadow-xl);
}

.vhs-pricing-card--featured {
  border-color: var(--vhs-primary);
  background-color: var(--vhs-gray-50);
  box-shadow: var(--vhs-shadow-lg);
}

.vhs-pricing-card--featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--vhs-primary);
  color: var(--vhs-white);
  padding: var(--vhs-space-xs) var(--vhs-space-lg);
  border-radius: var(--vhs-radius-full);
  font-size: var(--vhs-text-xs);
  font-weight: 700;
}

.vhs-pricing-card__name {
  font-size: var(--vhs-text-2xl);
  font-weight: 700;
  margin-bottom: var(--vhs-space-lg);
  color: var(--vhs-gray-900);
}

.vhs-pricing-card__price {
  font-size: var(--vhs-text-5xl);
  font-weight: 800;
  color: var(--vhs-primary);
  margin-bottom: var(--vhs-space-xs);
  line-height: 1;
}

.vhs-pricing-card__period {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-500);
  margin-bottom: var(--vhs-space-2xl);
}

.vhs-pricing-card__features {
  list-style: none;
  margin-bottom: var(--vhs-space-2xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vhs-pricing-card__feature {
  padding: var(--vhs-space-md) 0;
  border-bottom: 1px solid var(--vhs-gray-100);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--vhs-space-md);
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-700);
  width: 100%;
  max-width: 200px;
}

.vhs-pricing-card__feature strong {
  line-height: 1;
  vertical-align: middle;
}

.vhs-pricing-card__feature::before {
  content: '✓';
  color: var(--vhs-success);
  font-weight: 700;
  font-size: var(--vhs-text-lg);
  flex-shrink: 0;
  line-height: 1;
}

/* ========================================
   Steps/Process
   ======================================== */
.vhs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vhs-space-3xl);
  position: relative;
}

.vhs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.vhs-step__icon-wrapper {
  display: flex;
  align-items: center;
  gap: var(--vhs-space-md);
  margin-bottom: var(--vhs-space-lg);
}

.vhs-step__number {
  width: 48px;
  height: 48px;
  background-color: var(--vhs-primary);
  color: var(--vhs-white);
  border-radius: var(--vhs-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--vhs-text-2xl);
  font-weight: 800;
  box-shadow: var(--vhs-shadow-md);
  flex-shrink: 0;
}

.vhs-step__icon {
  font-size: 3.5rem;
  color: var(--vhs-primary);
  opacity: 0.9;
}

.vhs-step__content {
  text-align: center;
  width: 100%;
}

.vhs-step__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--vhs-radius-lg);
  margin-bottom: var(--vhs-space-lg);
  border: 1px solid var(--vhs-gray-200);
}

.vhs-step__title {
  font-size: var(--vhs-text-xl);
  font-weight: 700;
  margin-bottom: var(--vhs-space-sm);
  color: var(--vhs-gray-900);
}

.vhs-step__text {
  color: var(--vhs-gray-700);
  font-size: var(--vhs-text-base);
  line-height: 1.6;
  margin-bottom: var(--vhs-space-xs);
  font-weight: 500;
}

.vhs-step__detail {
  color: var(--vhs-gray-500);
  font-size: var(--vhs-text-sm);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .vhs-steps {
    grid-template-columns: 1fr;
    gap: var(--vhs-space-xl);
  }

  .vhs-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: var(--vhs-space-lg);
    background-color: var(--vhs-white);
    border-radius: var(--vhs-radius-lg);
    box-shadow: var(--vhs-shadow-sm);
  }

  .vhs-step__icon-wrapper {
    flex-direction: column;
    gap: var(--vhs-space-sm);
    margin-bottom: 0;
    margin-right: var(--vhs-space-md);
    min-width: 70px;
  }

  .vhs-step__number {
    width: 36px;
    height: 36px;
    font-size: var(--vhs-text-lg);
  }

  .vhs-step__icon {
    font-size: 2rem;
  }

  .vhs-step__content {
    text-align: left;
    flex: 1;
  }

  .vhs-step__title {
    font-size: var(--vhs-text-lg);
    margin-bottom: var(--vhs-space-xs);
  }

  .vhs-step__text {
    font-size: var(--vhs-text-sm);
    margin-bottom: var(--vhs-space-xs);
  }

  .vhs-step__detail {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* ========================================
   FAQ Accordion
   ======================================== */
.vhs-faq {
  max-width: 900px;
  margin: 0 auto;
}

.vhs-faq__item {
  background-color: var(--vhs-white);
  border: 1px solid var(--vhs-gray-200);
  border-radius: var(--vhs-radius-lg);
  margin-bottom: var(--vhs-space-md);
  overflow: hidden;
  transition: var(--vhs-transition-base);
}

.vhs-faq__item:hover {
  border-color: var(--vhs-gray-300);
}

.vhs-faq__question {
  width: 100%;
  padding: var(--vhs-space-xl);
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: var(--vhs-text-lg);
  font-weight: 600;
  color: var(--vhs-gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--vhs-transition-fast);
}

.vhs-faq__question:hover {
  color: var(--vhs-primary);
}

.vhs-faq__icon {
  font-size: var(--vhs-text-xl);
  transition: var(--vhs-transition-base);
  color: var(--vhs-gray-400);
}

.vhs-faq__item.active .vhs-faq__icon {
  transform: rotate(180deg);
  color: var(--vhs-primary);
}

.vhs-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--vhs-space-xl);
}

.vhs-faq__item.active .vhs-faq__answer {
  max-height: 500px;
  padding-bottom: var(--vhs-space-xl);
}

.vhs-faq__answer-text {
  color: var(--vhs-gray-600);
  line-height: 1.8;
  font-size: var(--vhs-text-base);
}

/* ========================================
   Comparison Table
   ======================================== */
.vhs-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--vhs-white);
  border: 1px solid var(--vhs-gray-200);
  border-radius: var(--vhs-radius-xl);
  overflow: hidden;
}

.vhs-comparison-table th {
  background-color: var(--vhs-gray-50);
  color: var(--vhs-gray-900);
  padding: var(--vhs-space-lg);
  text-align: left;
  font-weight: 700;
  font-size: var(--vhs-text-sm);
  border-bottom: 2px solid var(--vhs-gray-200);
}

.vhs-comparison-table td {
  padding: var(--vhs-space-lg);
  border-bottom: 1px solid var(--vhs-gray-100);
  font-size: var(--vhs-text-sm);
}

.vhs-comparison-table tr:last-child td {
  border-bottom: none;
}

.vhs-comparison-table .highlight {
  background-color: rgba(77, 101, 255, 0.05);
  font-weight: 600;
  color: var(--vhs-primary);
}

/* ========================================
   Image Gallery
   ======================================== */
.vhs-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vhs-space-2xl);
}

.vhs-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--vhs-radius-xl);
  background-color: var(--vhs-gray-100);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--vhs-transition-base);
}

.vhs-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--vhs-shadow-xl);
}

.vhs-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vhs-transition-slow);
}

.vhs-gallery__item:hover .vhs-gallery__image {
  transform: scale(1.05);
}

.vhs-gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--vhs-space-lg);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--vhs-white);
  transform: translateY(100%);
  transition: var(--vhs-transition-base);
}

.vhs-gallery__item:hover .vhs-gallery__overlay {
  transform: translateY(0);
}

/* ========================================
   Footer
   ======================================== */
.vhs-footer {
  background-color: var(--vhs-secondary);
  color: var(--vhs-gray-300);
  padding: var(--vhs-space-5xl) 0 var(--vhs-space-2xl);
}

.vhs-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vhs-space-3xl);
  margin-bottom: var(--vhs-space-3xl);
}

.vhs-footer__section-title {
  color: var(--vhs-white);
  font-size: var(--vhs-text-lg);
  font-weight: 700;
  margin-bottom: var(--vhs-space-lg);
}

.vhs-footer__links {
  list-style: none;
}

.vhs-footer__link {
  display: block;
  padding: var(--vhs-space-sm) 0;
  color: var(--vhs-gray-400);
  transition: var(--vhs-transition-fast);
  font-size: var(--vhs-text-sm);
}

.vhs-footer__link:hover {
  color: var(--vhs-white);
  padding-left: var(--vhs-space-sm);
}

.vhs-footer__bottom {
  border-top: 1px solid var(--vhs-gray-700);
  padding-top: var(--vhs-space-xl);
  text-align: center;
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-500);
}

.vhs-footer-legal {
  text-align: center;
  margin-top: var(--vhs-space-2xl);
  margin-bottom: var(--vhs-space-lg);
  padding-top: var(--vhs-space-xl);
  font-size: var(--vhs-text-sm);
  border-top: 1px solid var(--vhs-gray-700);
}

.vhs-footer-legal__link {
  color: var(--vhs-gray-400);
  text-decoration: none;
  transition: var(--vhs-transition-fast);
  font-size: var(--vhs-text-sm);
}

.vhs-footer-legal__link:hover {
  color: var(--vhs-white);
  text-decoration: underline;
}

.vhs-footer-legal__separator {
  margin: 0 var(--vhs-space-md);
  color: var(--vhs-gray-600);
}

/* ========================================
   Utilities
   ======================================== */
.vhs-mb-0 { margin-bottom: 0; }
.vhs-mb-1 { margin-bottom: var(--vhs-space-sm); }
.vhs-mb-2 { margin-bottom: var(--vhs-space-md); }
.vhs-mb-3 { margin-bottom: var(--vhs-space-lg); }
.vhs-mb-4 { margin-bottom: var(--vhs-space-xl); }
.vhs-mb-5 { margin-bottom: var(--vhs-space-2xl); }
.vhs-mb-6 { margin-bottom: var(--vhs-space-3xl); }

.vhs-mt-0 { margin-top: 0; }
.vhs-mt-1 { margin-top: var(--vhs-space-sm); }
.vhs-mt-2 { margin-top: var(--vhs-space-md); }
.vhs-mt-3 { margin-top: var(--vhs-space-lg); }
.vhs-mt-4 { margin-top: var(--vhs-space-xl); }
.vhs-mt-5 { margin-top: var(--vhs-space-2xl); }
.vhs-mt-6 { margin-top: var(--vhs-space-3xl); }

/* ========================================
   Responsive Typography
   ======================================== */
@media (max-width: 768px) {
  :root {
    --vhs-text-5xl: 2.5rem;
    --vhs-text-6xl: 3rem;
  }

  .vhs-hero__title {
    font-size: var(--vhs-text-5xl);
  }

  .vhs-section {
    padding: var(--vhs-space-4xl) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --vhs-text-4xl: 1.875rem;
    --vhs-text-5xl: 2rem;
  }

  .vhs-container {
    padding: 0 var(--vhs-space-md);
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vhs-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   Loading States
   ======================================== */
.vhs-skeleton {
  background: linear-gradient(90deg, var(--vhs-gray-200) 25%, var(--vhs-gray-300) 50%, var(--vhs-gray-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: var(--vhs-radius-md);
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ========================================
   Accessibility
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid var(--vhs-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   v2.2.0 New Components for Custom Pages
   ======================================== */

/* Benefit Badge - Small colored badges for highlighting features */
.vhs-benefit-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--vhs-primary), var(--vhs-secondary));
  color: var(--vhs-white);
  padding: 0.5rem 1rem;
  border-radius: var(--vhs-radius-full);
  font-size: var(--vhs-text-sm);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(77, 101, 255, 0.3);
  white-space: nowrap;
}

/* Pricing Badge - "人気No.1" etc badges on pricing cards */
.vhs-pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 0.375rem 0.75rem;
  border-radius: var(--vhs-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Inline Statistics Display */
.vhs-stats-inline {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.vhs-stat-inline {
  text-align: center;
  min-width: 120px;
}

.vhs-stat-inline__number {
  font-size: var(--vhs-text-3xl);
  font-weight: 800;
  color: var(--vhs-primary);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.vhs-stat-inline__label {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  font-weight: 500;
}

/* For dark backgrounds */
.vhs-section--dark .vhs-stat-inline__number {
  color: var(--vhs-white);
}

.vhs-section--dark .vhs-stat-inline__label {
  color: var(--vhs-gray-300);
}

/* White Button Variant - for dark backgrounds */
.vhs-btn--white {
  background-color: var(--vhs-white);
  color: var(--vhs-primary);
  border: 2px solid var(--vhs-white);
}

.vhs-btn--white:hover {
  background-color: transparent;
  color: var(--vhs-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Stats Section - Grid of statistics */
.vhs-stats-section {
  padding: var(--vhs-space-4xl) 0;
  background-color: var(--vhs-white);
}

.vhs-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vhs-space-3xl);
  text-align: center;
}

.vhs-stat {
  padding: var(--vhs-space-xl);
}

.vhs-stat__number {
  font-size: var(--vhs-text-5xl);
  font-weight: 800;
  color: var(--vhs-primary);
  line-height: 1;
  margin-bottom: var(--vhs-space-md);
}

.vhs-stat__label {
  font-size: var(--vhs-text-lg);
  font-weight: 600;
  color: var(--vhs-gray-700);
}

/* Testimonial Card - Not used yet but prepared for future use */
.vhs-testimonial-card {
  background-color: var(--vhs-white);
  border-radius: var(--vhs-radius-lg);
  padding: var(--vhs-space-2xl);
  box-shadow: var(--vhs-shadow-md);
  transition: var(--vhs-transition-base);
}

.vhs-testimonial-card:hover {
  box-shadow: var(--vhs-shadow-xl);
  transform: translateY(-4px);
}

.vhs-testimonial-card__quote {
  font-style: italic;
  font-size: var(--vhs-text-lg);
  line-height: 1.6;
  color: var(--vhs-gray-700);
  margin-bottom: var(--vhs-space-lg);
  padding-left: var(--vhs-space-lg);
  border-left: 3px solid var(--vhs-primary);
}

.vhs-testimonial-card__author {
  font-weight: 600;
  color: var(--vhs-gray-900);
}

.vhs-testimonial-card__role {
  font-size: var(--vhs-text-sm);
  color: var(--vhs-gray-600);
  margin-top: var(--vhs-space-xs);
}

/* Responsive Adjustments for New Components */
@media (max-width: 968px) {
  .vhs-stats-inline {
    gap: 1.5rem;
  }

  .vhs-stat-inline {
    min-width: 100px;
  }

  .vhs-stat-inline__number {
    font-size: var(--vhs-text-2xl);
  }

  .vhs-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--vhs-space-2xl);
  }

  .vhs-stat__number {
    font-size: var(--vhs-text-4xl);
  }
}

@media (max-width: 480px) {
  .vhs-benefit-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .vhs-stats-inline {
    flex-direction: column;
    gap: 1rem;
  }

  .vhs-stat-inline__number {
    font-size: var(--vhs-text-xl);
  }

  .vhs-stats {
    grid-template-columns: 1fr;
    gap: var(--vhs-space-xl);
  }
}

/* ========================================
   Interior Styles Gallery - Visual-First Design
   ======================================== */
.vhs-styles-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vhs-space-xl);
}

/* Style Card */
.vhs-style-card {
  position: relative;
  border-radius: var(--vhs-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.vhs-style-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(77, 101, 255, 0.2);
}

/* Image Wrapper */
.vhs-style-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%; /* 3:4 aspect ratio for vertical orientation */
  overflow: hidden;
  background-color: var(--vhs-gray-100);
}

.vhs-style-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vhs-style-card:hover .vhs-style-card__image {
  transform: scale(1.1);
}

/* Badge */
.vhs-style-card__badge {
  position: absolute;
  top: var(--vhs-space-md);
  right: var(--vhs-space-md);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: var(--vhs-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vhs-style-card__badge--popular {
  background-color: rgba(255, 107, 107, 0.95);
  color: var(--vhs-white);
}

.vhs-style-card__badge--premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--vhs-gray-900);
}

/* Overlay */
.vhs-style-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: var(--vhs-space-2xl);
  z-index: 2;
}

.vhs-style-card:hover .vhs-style-card__overlay {
  opacity: 1;
}

/* Content */
.vhs-style-card__content {
  color: var(--vhs-white);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vhs-style-card:hover .vhs-style-card__content {
  transform: translateY(0);
}

.vhs-style-card__title {
  font-size: var(--vhs-text-xl);
  font-weight: 700;
  margin-bottom: var(--vhs-space-xs);
  line-height: 1.2;
  color: var(--vhs-white);
}

.vhs-style-card__subtitle {
  font-size: var(--vhs-text-sm);
  font-weight: 500;
  margin-bottom: var(--vhs-space-md);
  opacity: 0.9;
}

.vhs-style-card__description {
  font-size: var(--vhs-text-sm);
  line-height: 1.6;
  margin-bottom: var(--vhs-space-md);
  opacity: 0.85;
}

/* Tags */
.vhs-style-card__tags {
  display: flex;
  gap: var(--vhs-space-sm);
  flex-wrap: wrap;
}

.vhs-style-card__tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: var(--vhs-text-xs);
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scroll hint for mobile */
.vhs-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--vhs-space-md);
  margin-top: var(--vhs-space-xl);
  padding: var(--vhs-space-md);
  color: var(--vhs-gray-600);
  font-size: var(--vhs-text-sm);
  background-color: rgba(77, 101, 255, 0.05);
  border-radius: var(--vhs-radius-md);
  transition: opacity 0.3s ease;
}

.vhs-scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.vhs-scroll-hint i {
  color: var(--vhs-primary);
  font-size: 1rem;
  animation: bounce-horizontal 2s infinite;
}

@keyframes bounce-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.vhs-scroll-hint i:first-child {
  animation: bounce-horizontal-reverse 2s infinite;
}

@keyframes bounce-horizontal-reverse {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

/* Large tablets and small desktops: 3 columns */
@media (max-width: 1024px) and (min-width: 768px) {
  .vhs-styles-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vhs-space-lg);
  }
}

/* Small tablets: 2 columns */
@media (max-width: 767px) and (min-width: 641px) {
  .vhs-styles-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vhs-space-lg);
  }

  .vhs-style-card__overlay {
    padding: var(--vhs-space-xl);
  }
}

/* Mobile: Horizontal scroll with snap */
@media (max-width: 640px) {
  .vhs-styles-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--vhs-space-md);
    padding: 0 var(--vhs-space-md) var(--vhs-space-lg) var(--vhs-space-md);
    margin: 0 calc(var(--vhs-space-md) * -1);
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .vhs-styles-gallery::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .vhs-style-card {
    flex: 0 0 85%;
    max-width: 350px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* Always show overlay on mobile (no hover state) */
  .vhs-style-card__overlay {
    opacity: 1;
    padding: var(--vhs-space-lg);
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 30%,
      rgba(0, 0, 0, 0) 60%
    );
  }

  .vhs-style-card__content {
    transform: translateY(0);
  }

  .vhs-style-card__title {
    font-size: var(--vhs-text-lg);
  }

  .vhs-style-card__description {
    display: none; /* Hide long description on mobile */
  }

  /* Disable hover effects on mobile */
  .vhs-style-card:hover {
    transform: none;
  }

  .vhs-style-card:hover .vhs-style-card__image {
    transform: none;
  }

  .vhs-scroll-hint {
    display: flex;
  }
}
}

/* ========================================
   Contact Form 7 Custom Styles
   ======================================== */

/* Contact Form 7 Wrapper */
.vhs-contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Rows */
.vhs-form-row {
  display: grid;
  gap: 1.5rem;
}

.vhs-form-row--2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Form Fields */
.vhs-form-field {
  display: flex;
  flex-direction: column;
}

.vhs-form-field label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vhs-gray-900);
  font-size: 0.9375rem;
}

.vhs-form-field .required {
  color: var(--vhs-danger, #ff6b6b);
  font-weight: 700;
}

/* Input Styles */
.vhs-input,
.vhs-textarea,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--vhs-gray-300, #e5e7eb);
  border-radius: var(--vhs-radius-md, 8px);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--vhs-transition-fast, all 0.2s ease);
  width: 100%;
  box-sizing: border-box;
  background-color: var(--vhs-white, #ffffff);
}

.vhs-textarea,
.wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  min-height: 150px;
}

.vhs-input:focus,
.vhs-textarea:focus,
.wpcf7-form-control:focus {
  border-color: var(--vhs-primary, #4d65ff);
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 101, 255, 0.1);
}

/* Select Dropdown */
.wpcf7-form-control.wpcf7-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Checkbox Field */
.vhs-form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.vhs-form-checkbox input[type="checkbox"],
.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.vhs-form-checkbox label,
.wpcf7-form-control.wpcf7-acceptance + label {
  font-size: 0.875rem;
  color: var(--vhs-gray-700);
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0;
}

.vhs-form-checkbox label a {
  color: var(--vhs-primary, #4d65ff);
  text-decoration: underline;
}

/* Submit Button */
.vhs-form-submit {
  margin-top: 1rem;
}

.wpcf7-form-control.wpcf7-submit {
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: var(--vhs-radius-md, 8px);
  cursor: pointer;
  transition: var(--vhs-transition-fast, all 0.2s ease);
  background: var(--vhs-primary, #4d65ff);
  color: var(--vhs-white, #ffffff);
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: #3d55ef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 101, 255, 0.3);
}

.wpcf7-form-control.wpcf7-submit:active {
  transform: translateY(0);
}

/* Form Note */
.vhs-form-note {
  font-size: 0.875rem;
  color: var(--vhs-gray-600);
  text-align: center;
  margin-top: 0.5rem;
}

/* Contact Form 7 Response Messages */
.wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--vhs-radius-md, 8px);
  font-size: 0.9375rem;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background-color: rgba(81, 207, 102, 0.1);
  border: 2px solid var(--vhs-success, #51cf66);
  color: var(--vhs-success, #51cf66);
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background-color: rgba(255, 193, 7, 0.1);
  border: 2px solid #FFC107;
  color: #F59E0B;
}

.wpcf7-mail-sent-ng {
  background-color: rgba(255, 107, 107, 0.1);
  border: 2px solid var(--vhs-danger, #ff6b6b);
  color: var(--vhs-danger, #ff6b6b);
}

/* Individual Field Validation */
.wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: var(--vhs-danger, #ff6b6b);
  margin-top: 0.375rem;
  display: block;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--vhs-danger, #ff6b6b);
}

.wpcf7-form-control.wpcf7-not-valid:focus {
  border-color: var(--vhs-danger, #ff6b6b);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Loading Spinner */
.wpcf7 form.submitting .wpcf7-submit {
  opacity: 0.6;
  cursor: not-allowed;
}

.wpcf7 form.submitting .wpcf7-submit::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--vhs-white, #ffffff);
  border-radius: 50%;
  animation: wpcf7-spin 0.6s linear infinite;
}

@keyframes wpcf7-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Contact Form 7 - Remove default margins */
.wpcf7 p {
  margin: 0;
}

.wpcf7 br {
  display: none;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .vhs-form-row--2 {
    grid-template-columns: 1fr;
  }

  .wpcf7-form-control.wpcf7-submit {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
