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

:root {
  /* Colors */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-color: #1f2937;
  --gray-color: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  
  /* Typography */
  --font-primary: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(37, 99, 235, 0.1);
  z-index: 9999;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transition: width 0.25s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

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

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

.btn--secondary:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--white {
  background-color: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn--line {
  background-color: #00c300;
  color: var(--white);
}

.btn--line:hover {
  background-color: #00a000;
  transform: translateY(-2px);
}

.btn--large {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.125rem;
  min-height: 56px;
  white-space: nowrap;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title__sub {
  display: block;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}

.section-title--white {
  color: var(--white);
}

.section-title--white .section-title__sub {
  color: var(--white);
  opacity: 0.8;
}

/* Header */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999 !important;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  transform: none !important;
  visibility: visible !important;
  display: block !important;
}

/* ヘッダーを常に表示 */
.header.hidden {
  transform: translateY(0) !important;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.header__logo:hover img {
  transform: scale(1.05);
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  position: relative;
  font-size: 1.05rem;
  background-color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header__nav-item i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.header__nav-item:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* 料金ボタンのスタイル */
.header__nav-item--price {
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.header__nav-item--price::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}

.header__nav-item--price i {
  font-size: 1.3rem;
  animation: calculator-bounce 2s ease-in-out infinite;
}

@keyframes calculator-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-5deg); }
  75% { transform: translateY(-3px) rotate(5deg); }
}

.header__nav-item--price:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.header__nav-item--price:hover i {
  animation: calculator-spin 0.6s ease-in-out;
}

@keyframes calculator-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.header__nav-item--contact {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.header__nav-item--contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: shimmer 3s infinite;
}

.header__nav-item--contact i {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

.header__nav-item--contact:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

/* アニメーション */
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.header__nav-item--tel {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  font-weight: 600;
}

.header__nav-item--tel:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  z-index: 999;
  padding: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.header__mobile-menu.active {
  transform: translateY(0);
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.header__mobile-nav .header__nav-item {
  flex-direction: row;
  justify-content: center;
  text-align: center;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  width: 100%;
}

.header__mobile-nav .header__nav-item i {
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

.header__hamburger:hover {
  background-color: rgba(37, 99, 235, 0.1);
}

.header__hamburger span {
  width: 24px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 1024px) {
  .header__nav {
    gap: 1.5rem;
  }
  
  .header__nav-item {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .header__nav-item--price,
  .header__nav-item--contact {
    padding: 0.9rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 0.5rem 1rem;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
  }
  
  .header__nav {
    display: none;
  }
  
  .header__hamburger {
    display: none;
  }
  
  .header__mobile-menu {
    display: none;
  }
  
  .header__logo img {
    height: 35px;
  }
  
  /* モバイルナビボタンの装飾 */
  .header__mobile-nav .header__nav-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 1rem;
    padding: 1.1rem 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .header__mobile-nav .header__nav-item--price {
    background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    border: none;
    color: white;
    font-weight: 700;
    animation: mobile-pulse 2s ease-in-out infinite;
  }
  
  .header__mobile-nav .header__nav-item--price i {
    color: white;
    animation: calculator-bounce 2s ease-in-out infinite;
  }
  
  .header__mobile-nav .header__nav-item--contact {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    font-weight: 700;
    animation: mobile-pulse 2s ease-in-out infinite;
  }
  
  @keyframes mobile-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4); }
  }
}

/* Hero Section */
.hero {
  padding-top: 80px;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.02) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Urgent Banner */
.hero__urgent {
  background-color: var(--danger-color);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Hero Title Enhancements */
.hero__title-emphasis {
  color: var(--primary-color);
  font-size: 1.2em;
}

.hero__title-highlight {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Value Propositions */
.hero__value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-prop__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.value-prop__text {
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Hero CTA Enhancements */
.hero__cta-sub {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

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

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

.btn--pulse {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

.btn small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* Social Proof */
.hero__social-proof {
  margin-top: var(--spacing-lg);
  text-align: center;
}

.hero__social-proof-text {
  margin-bottom: var(--spacing-sm);
  color: var(--gray-color);
}

.hero__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

.hero__stars {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Hero Image Enhancements */
.hero__image-container {
  position: relative;
}

.hero__image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.achievement-badge {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 80px;
}

.achievement-badge__number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

.achievement-badge__text {
  font-size: 0.75rem;
  color: var(--gray-color);
}

/* Campaign Announcement */
.hero__announcement {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  color: var(--white);
  padding: var(--spacing-md) 0;
  text-align: center;
  margin-top: var(--spacing-lg);
}

.hero__announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.countdown {
  background-color: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero__value-props {
    grid-template-columns: 1fr;
  }
  
  .hero__cta-sub {
    flex-direction: column;
  }
  
  .hero__reviews {
    flex-direction: column;
  }
  
  .hero__announcement-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  justify-content: center;
  align-items: center;
}

.badge-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.badge-circle:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

.badge-text {
  text-align: center;
  color: var(--white);
  z-index: 1;
  position: relative;
}

.badge-main {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.badge-sub {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  color: var(--dark-color);
}

.hero__title span {
  color: var(--primary-color);
  display: block;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-color);
  margin-bottom: var(--spacing-lg);
}

.hero__cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: center;
  justify-content: flex-start;
}

.hero__features {
  display: flex;
  gap: var(--spacing-lg);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  color: var(--gray-color);
}

.hero__feature i {
  color: var(--primary-color);
}

.hero__image {
  position: relative;
  align-self: flex-end;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  outline: none;
  display: block;
  margin-bottom: -5px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.hero__stats--top {
  margin-top: 0;
  margin-bottom: 2rem;
  order: -1;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.stat-number span {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 900;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-color);
  font-weight: 500;
}

/* Button Enhancements */
.btn--glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.btn--glow:hover {
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn__arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn--glow:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn--glow:hover::before {
  width: 300px;
  height: 300px;
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__badge {
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }
  
  .badge-circle {
    width: 100px;
    height: 100px;
  }
  
  .badge-main {
    font-size: 0.8rem;
  }
  
  .badge-sub {
    font-size: 0.65rem;
  }
  
  .hero__title {
    font-size: 1.8rem;
    white-space: nowrap;
    line-height: 1.3;
  }
  
  .hero__title br {
    display: none;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .btn--large {
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .hero__features {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero__content {
    order: 1;
  }
  
  .hero__image {
    order: 2;
    margin-top: -5rem;
  }
  
  .hero__stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }
  
  .stat-item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 0.9rem;
  }
  
  .stat-number span {
    font-size: 1.2rem;
  }
}

/* Trust Section */
.trust {
  background-color: var(--white);
  padding: var(--spacing-2xl) 0;
  box-shadow: var(--shadow-md);
}

.trust__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Credentials Section */
.trust__credentials {
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.trust__credentials-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.trust__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
}

.credential-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.credential-item:hover {
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateY(-5px);
}

.credential-item__icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.credential-item__text {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Trust Stats */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.trust__item {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.trust__item--highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.trust__item--highlight .trust__number {
  color: var(--white);
}

.trust__item--highlight .trust__label,
.trust__item--highlight .trust__sublabel {
  color: rgba(255, 255, 255, 0.9);
}

.trust__number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.trust__number span {
  font-size: 1.2rem;
  font-weight: 400;
}

.trust__label {
  font-size: 0.875rem;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.trust__sublabel {
  font-size: 0.75rem;
  color: var(--gray-color);
}


/* Media Mentions */
.trust__media {
  text-align: center;
}

.trust__media-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.media-mentions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
  color: var(--gray-color);
}

.media-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .trust__logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .media-mentions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Flow Section Mobile */
  .flow__container {
    padding: 0 var(--spacing-sm);
  }
  
  .flow__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .flow__steps {
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .flow-step-card {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .step-header {
    gap: 0.6rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .step-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  
  .flow__summary {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
  }
  
  .summary-item {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .summary-number {
    font-size: 1.8rem;
  }
  
  .summary-number span {
    font-size: 1rem;
  }
  
  .summary-label {
    font-size: 0.85rem;
  }
  
  .flow__cta {
    padding: 1.5rem 0.8rem;
  }
}

/* Points Section */
.points {
  padding: var(--spacing-2xl) 0;
  background-color: var(--light-gray);
}

.points__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.point-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.point-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.point-card__number {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.1);
}

.point-card__icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.point-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.point-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.point-card__text {
  color: var(--gray-color);
  margin-bottom: var(--spacing-md);
}

.point-card__highlight {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: var(--radius-full);
}

.point-card__highlight span {
  font-weight: 900;
}

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

/* Price Section */
.price {
  padding: var(--spacing-2xl) 0;
  background: #ffffff;
  color: var(--dark-color);
  position: relative;
}

/* Price Calculator */
.price-calculator {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 3rem;
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.04);
  z-index: 1;
  transition: all 0.3s ease;
}

.price-calculator:hover {
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.price-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 24px 24px 0 0;
  opacity: 0.8;
}

.calculator__header {
  text-align: center;
  margin-bottom: 2rem;
}

.calculator__header h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.calculator__header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.calculator__header h3 i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.6rem;
  vertical-align: middle;
}

.calculator__header p {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.calculator__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.calculator__step {
  position: relative;
}

.calculator__step label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.calculator__select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s ease;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  padding-right: 3rem;
}

.calculator__select:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.calculator__select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  background-color: #ffffff;
}

.calculator__select option {
  background: var(--white);
  color: var(--dark-color);
}

.calculator__result {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 2rem;
  display: none;
  position: relative;
  overflow: visible;
  min-height: auto;
}

.calculator__result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.calculator__result.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 12px 24px rgba(0, 0, 0, 0.02);
}

/* 未入力時のプレースホルダー */
.calculator__placeholder {
  margin-top: 2rem;
  padding: 4rem 2rem;
  background: #fafbfc;
  border-radius: 20px;
  text-align: center;
  border: 2px dashed #e5e7eb;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.calculator__placeholder.hide {
  display: none;
}

.placeholder__content {
  position: relative;
  z-index: 2;
}

.placeholder__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 2rem;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 6px rgba(0, 0, 0, 0.04);
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 1px 3px rgba(0, 0, 0, 0.04),
      0 4px 6px rgba(0, 0, 0, 0.04);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 1px 3px rgba(0, 0, 0, 0.06),
      0 4px 6px rgba(0, 0, 0, 0.06),
      0 8px 12px rgba(0, 0, 0, 0.04);
  }
}

.placeholder__content h4 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.placeholder__content p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.placeholder__features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.placeholder__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-full);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.placeholder__feature i {
  font-size: 1rem;
}

.placeholder__decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.placeholder__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  animation: float 6s ease-in-out infinite;
}

.placeholder__circle--1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.placeholder__circle--2 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 15%;
  animation-delay: 2s;
}

.placeholder__circle--3 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
}

.result__price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
}

.result__price::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.result__label {
  display: block;
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 0.5rem;
}

.result__amount {
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0.5rem;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.result__amount::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}


.result__unit {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-left: 0.5rem;
}

.result__features {
  text-align: left;
  margin-bottom: 2rem;
}

.result__features .feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #374151;
  padding: 0 0 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  position: relative;
}

.result__features .feature::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #10b981;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.result__features .feature:hover {
  color: #1f2937;
}

.result__features .feature:hover::after {
  transform: scaleX(1);
}

.result__features .feature:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.result__features .feature--highlight {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.05), transparent);
  font-weight: 600;
  color: #1f2937;
}

.feature-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f3f4f6;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  border-left: 3px solid #9ca3af;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-note i {
  flex-shrink: 0;
  margin-top: 2px;
}

.result__features .feature i {
  color: #10b981;
  background: transparent;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .price-calculator {
    padding: 2rem 1rem;
    margin: 0 -1rem 3rem -1rem;
    border-radius: 0;
    width: calc(100% + 2rem);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }
  
  .calculator__header h3 {
    font-size: 1.4rem;
    white-space: nowrap;
  }
  
  .calculator__form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 0 -0.5rem;
  }
  
  .calculator__step {
    width: 100%;
  }
  
  .calculator__select {
    width: 100%;
    min-width: 0;
  }
  
  .result__amount {
    font-size: 2.5rem;
  }
  
  
  .calculator__result {
    padding: 2rem 1rem;
    margin: 2rem -0.5rem 0 -0.5rem;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .result__features {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  .result__features .feature {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  .feature-note {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  .calculator__placeholder {
    padding: 2rem 1rem;
    min-height: 240px;
    margin: 2rem -0.5rem 0 -0.5rem;
  }
  
  .placeholder__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .placeholder__content h4 {
    font-size: 1.25rem;
  }
  
  .placeholder__features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .placeholder__feature {
    justify-content: center;
  }
}


.price__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.price__lead {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* Price Comparison Table */
.price__comparison {
  margin-bottom: var(--spacing-2xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.comparison-table {
  width: 100%;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
}

.comparison-header__item {
  padding: var(--spacing-lg);
  text-align: center;
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.comparison-header__item--ours {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
}

.comparison-badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-bottom: var(--spacing-xs);
  display: inline-block;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

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

.comparison-cell {
  padding: var(--spacing-lg);
  text-align: center;
  color: var(--dark-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
}

.comparison-cell--ours {
  background-color: rgba(37, 99, 235, 0.05);
  font-weight: 600;
}

.price-highlight {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

.savings-badge {
  background-color: var(--danger-color);
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Service Features Grid */
.price__features {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-2xl);
}

.price__features-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Enhanced Price Categories */
.pricing-categories {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-category {
  background: var(--white);
  color: var(--dark-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.category-header {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background-color 0.3s ease;
  position: relative;
}

.category-header:hover {
  background-color: var(--light-gray);
}

.category-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
}

.category-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.category-info p {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.category-toggle {
  font-size: 2rem;
  color: var(--gray-color);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.pricing-category.active .category-toggle {
  transform: rotate(45deg);
}

.category-plans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.pricing-category.active .category-plans {
  max-height: 1000px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  border-top: 1px solid #e5e7eb;
}

.plan {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  border: 1px solid #e5e7eb;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.plan.full-support {
  background: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 1rem;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(8deg);
}

.plan-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
}

.plan-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.plan-price .amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.plan-price .unit {
  color: var(--gray-color);
  font-size: 1.1rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.plan-features .feature {
  color: var(--dark-color);
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 0.3rem 0;
}

/* Enhanced Price Cards (for legacy) */
.price__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.price-card {
  background-color: var(--white);
  color: var(--dark-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.price-card__badge--popular {
  background: linear-gradient(45deg, var(--danger-color), #dc2626);
  color: var(--white);
}

.price-card__badge--recommend {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  color: var(--white);
}

.price-card__icon {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.price-card__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.price-card__title {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-color);
}

.price-card__comparison {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
}

.price-card__old-price {
  font-size: 0.875rem;
  color: var(--gray-color);
  text-decoration: line-through;
  margin-bottom: var(--spacing-xs);
}

.price-card__amount {
  margin-bottom: var(--spacing-xs);
}

.price-card__yen {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.price-card__number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color);
}

.price-card__tax {
  font-size: 0.875rem;
  color: var(--gray-color);
}

.price-card__savings {
  background: linear-gradient(45deg, var(--secondary-color), #059669);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.price-card__features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.price-card__features li {
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.875rem;
}

.price-card__features i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.btn--urgent {
  background: linear-gradient(45deg, var(--danger-color), #dc2626);
  animation: btnPulse 2s ease-in-out infinite;
}

.btn--urgent:hover {
  background: linear-gradient(45deg, #dc2626, #b91c1c);
}

/* Guarantee Section */
.price__guarantee {
  margin-bottom: var(--spacing-2xl);
}

.guarantee-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.guarantee-box__icon {
  font-size: 3rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.guarantee-box__content h4 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.guarantee-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.guarantee-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Section in Price */
.price__cta-section {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
}

.price__cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.price__cta-section p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

.highlight-text {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.btn--accent {
  background: linear-gradient(45deg, var(--accent-color), #f97316);
  color: var(--white);
}

.btn--accent:hover {
  background: linear-gradient(45deg, #f97316, #ea580c);
  transform: translateY(-2px);
}

.price__note {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .comparison-header__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .comparison-cell {
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .guarantee-items {
    grid-template-columns: 1fr;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
  
  .plan-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .category-header {
    padding: 1.5rem;
  }
  
  .category-icon {
    font-size: 2rem;
  }
  
  .category-info h3 {
    font-size: 1.3rem;
  }
}

/* Problems Section */
.problems {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

.problems__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.problem-card {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateY(-5px);
}

.problem-card__icon {
  font-size: 3rem;
  color: var(--danger-color);
  margin-bottom: var(--spacing-md);
}

.problem-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.problem-card__text {
  color: var(--gray-color);
  line-height: 1.8;
}

.problem-card__solution {
  display: block;
  margin-top: var(--spacing-sm);
  color: var(--primary-color);
  font-weight: 600;
}

.problems__cta {
  text-align: center;
  padding: var(--spacing-xl);
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
}

.problems__cta-text {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
  
  .problems__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
  }
  
  .problems__cta-text {
    white-space: nowrap;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: var(--spacing-md);
  }
  
  .problems__cta .btn {
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
  }
  
  .problems__cta .btn--primary {
    width: auto !important;
    max-width: 300px;
  }
}

/* Voice Section */
.voice {
  padding: var(--spacing-2xl) 0;
  background-color: var(--light-gray);
}

.voice__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.voice__slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.voice__slider {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.voice-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  flex: 0 0 100%;
  width: 100%;
  min-height: auto;
}

.voice-card__header {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  align-items: flex-start;
}

.voice-card__avatar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.voice-card__profile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.voice-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.voice-card__info {
  flex: 1;
  align-self: center;
}

.voice-card__title {
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.voice-card__badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-full);
}

.voice-card__rating {
  color: var(--accent-color);
}

.voice-card__content h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.voice-card__content p {
  color: var(--gray-color);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.voice__nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.voice__nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voice__nav-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* PC版: 性別と星の横に見出し */
.voice-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.voice-card__title {
  margin: 0;
}

/* モバイル版アバターを隠す（デスクトップ） */
.voice-card__avatar-mobile,
.voice-card__title-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* PC版のタイトルのみ隠す */
  .voice-card__title {
    display: none;
  }
  
  /* PC版の画像はそのまま表示（サイズ調整） */
  .voice-card__image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* モバイル版アバターは非表示にする */
  .voice-card__avatar-mobile {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }
  
  .voice-card__icon-mobile {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .voice-card__profile-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .voice-card__badge-mobile {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }
  
  .voice-card__rating-mobile {
    color: var(--accent-color);
    display: flex;
    gap: 2px;
  }
  
  .voice-card__rating-mobile i {
    font-size: 0.8rem;
  }
  
  .voice-card__title-mobile {
    display: block;
    margin-bottom: var(--spacing-md);
  }
  
  .voice-card__title-mobile h3 {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.4;
  }
  
  .voice-card__header {
    flex-direction: row;
    text-align: left;
    margin-bottom: var(--spacing-sm);
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .voice-card__info {
    display: block;
    flex: 1;
  }
  
  .voice-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .voice-card__badge {
    font-size: 0.7rem;
  }
  
  .voice-card__rating {
    font-size: 0.8rem;
  }
}

/* Modern Flow Section */
.flow {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.flow__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.flow__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 縦型フロー */
.flow__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.flow__tab {
  padding: 0.75rem 2rem;
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.flow__tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.flow__tab.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.flow__vertical {
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  display: none; /* デフォルトで非表示 */
}

/* 最初のフローを表示 */
.flow__vertical#flow-visa {
  display: block;
}

/* JavaScript無効時のフォールバック */
.no-js .flow__vertical:first-of-type {
  display: block;
}

.flow-step {
  position: relative;
  margin-bottom: 2rem;
}

.flow-step__number {
  position: absolute;
  left: 0;
  top: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.flow-step__number span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.flow-step__number strong {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.flow-step__content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 7rem;
  margin-left: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  min-height: 140px;
}


.flow-step:hover .flow-step__content {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.flow-step__icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.flow-step__text {
  flex: 1;
}

.flow-step__text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.flow-step__text p {
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.flow-step__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: var(--light-gray);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-color);
  border: 1px solid #e5e7eb;
}

.badge--success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  border: none;
}

.flow-step__arrow {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 1rem 0;
  animation: bounce 2s infinite;
  opacity: 0.6;
}

.flow-step:last-child .flow-step__arrow {
  display: none;
}

.flow-step--complete .flow-step__number {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.flow-step--complete .flow-step__icon {
  color: #10b981;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

/* 既存のステップカードスタイル（互換性のため残す） */
.flow__steps {
  display: none;
}

.tag {
  background: var(--light-gray);
  color: var(--dark-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: var(--white);
}

.tag.success {
  background: var(--secondary-color);
  color: var(--white);
}

/* 実績サマリー */
.flow__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.summary-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.summary-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.summary-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.summary-number span {
  font-size: 1.5rem;
  color: var(--gray-color);
}

.summary-label {
  font-size: 0.95rem;
  color: var(--gray-color);
  font-weight: 500;
}


/* CTA */
.flow__cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--light-gray) 0%, #f8fafc 100%);
  border-radius: var(--radius-lg);
}

.flow__cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.flow__cta p {
  color: var(--gray-color);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.flow__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Flow Section Responsive Design */
@media (max-width: 768px) {
  .flow__vertical {
    padding: 0 1rem;
  }
  
  .flow-step__number {
    width: 60px;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  
  .flow-step__number span {
    font-size: 0.65rem;
  }
  
  .flow-step__number strong {
    font-size: 1.5rem;
  }
  
  .flow-step__content {
    margin-left: 0;
    margin-top: 40px;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .flow-step__content::before {
    display: none;
  }
  
  .flow-step__icon {
    font-size: 2rem;
  }
  
  .flow-step__arrow {
    margin: 2rem 0;
  }
  
  .flow-step:hover .flow-step__content {
    transform: translateX(0);
  }
  
  .flow-step__badges {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .flow-step-card {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .flow__summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .flow__steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .flow-step-card {
    padding: 1.2rem;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-content {
    text-align: center;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }
  
  .step-tags {
    justify-content: center;
    gap: 0.4rem;
  }
  
  .tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }
  
  .flow__summary {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
  }
  
  .summary-item {
    padding: 1.2rem;
  }
  
  .summary-number {
    font-size: 2rem;
  }
  
  .summary-number span {
    font-size: 1.2rem;
  }
  
  .flow__cta {
    padding: 2rem 1rem;
  }
  
  .flow__cta h3 {
    white-space: nowrap;
    font-size: 1.2rem;
  }
  
  .flow__cta p {
    white-space: nowrap;
    font-size: 0.8rem;
  }
  
  .flow__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .flow__buttons .btn {
    min-width: 100%;
    justify-content: center;
  }

  /* Flow Section Mobile */
  .flow__interactive {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .flow__sidebar {
    order: -1;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .flow-info-card {
    padding: 20px 15px;
  }
  
  .flow-info-card__header h4 {
    font-size: 1.2rem;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .flow-step__circle {
    left: -10px;
    width: 60px;
    height: 60px;
  }
  
  .flow-step__card {
    margin-left: 70px;
    padding: 20px;
  }
  
  .flow-step__title {
    font-size: 1.1rem;
  }
  
  .flow-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .flow-cta-buttons .btn {
    min-width: 250px;
  }
  
  .flow-step__number {
    font-size: 1.2rem;
  }
  
  .flow-step__icon {
    font-size: 1.4rem;
  }
}

/* FAQ Section */
.faq {
  padding: var(--spacing-2xl) 0;
  background-color: var(--light-gray);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  padding: var(--spacing-lg);
  background-color: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
}

.faq-item__question:hover {
  background-color: var(--white);
}

.faq-item__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__question i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
  padding: 0 var(--spacing-lg) 0 var(--spacing-lg);
}

.faq-item.active .faq-item__answer {
  max-height: 1000px;
  padding-bottom: var(--spacing-lg);
}

.faq-item__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

/* FAQ Tabs */
.faq__tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.faq__tab {
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.faq__tab:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.faq__tab.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.faq__category {
  display: none;
}

.faq__category:first-of-type {
  display: block;
}

@media (max-width: 768px) {
  .faq__tabs {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
  }
  
  .faq__tab {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: #ffffff;
  color: var(--dark-color);
  text-align: center;
  position: relative;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.cta__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.cta__content {
  position: relative;
}

.cta__icon-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta__icon-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta__icon-badge i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.cta__title {
  font-size: 2.8rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  font-weight: 800;
  color: #1e293b;
}

.highlight-text {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  border-radius: 2px;
  opacity: 0.6;
}

.cta__text {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xl);
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
}

.cta__trust-indicators {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--spacing-xl);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  border-right: 1px solid #f1f5f9;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.trust-icon i {
  font-size: 1.2rem;
  color: white;
}

.trust-content {
  flex: 1;
  text-align: left;
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.trust-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto var(--spacing-xl);
}

.btn--primary-white {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.btn--primary-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn--primary-white:hover::before {
  left: 100%;
}

.btn--primary-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  background: #2563eb;
}

.btn--secondary-white {
  background: white;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1);
}

.btn--secondary-white:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.btn__icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn--secondary-white .btn__icon {
  background: rgba(59, 130, 246, 0.1);
}

.btn__content {
  flex: 1;
  margin: 0 1rem;
  text-align: left;
}

.btn__title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.btn__subtitle {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 400;
}

.btn__arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.cta__features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__feature--modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  min-width: 200px;
}

.cta__feature--modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.feature__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature__icon i {
  color: white;
  font-size: 1.2rem;
}

.feature__content {
  text-align: left;
}

.feature__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.feature__desc {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta {
    padding: 3rem 0;
  }
  
  .cta__title {
    font-size: 1.4rem;
    white-space: nowrap;
  }
  
  .cta__text {
    font-size: 1.1rem;
  }
  
  .cta__trust-indicators {
    flex-direction: column;
    gap: 0;
  }
  
  .trust-item {
    padding: 1.5rem;
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    flex-direction: row;
  }
  
  .trust-item:last-child {
    border-bottom: none;
  }
  
  .trust-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }
  
  .trust-icon i {
    font-size: 1rem;
  }
  
  .trust-title {
    font-size: 1rem;
  }
  
  .trust-subtitle {
    font-size: 0.8rem;
  }
  
  .cta__buttons {
    max-width: 100%;
    gap: 1rem;
  }
  
  .btn--primary-white,
  .btn--secondary-white {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .btn__icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  
  .btn__title {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .btn__subtitle {
    font-size: 0.7rem;
    white-space: nowrap;
  }
  
  .btn__content {
    white-space: nowrap;
    margin: 0 0.5rem;
  }
  
  .btn__arrow {
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }
  
  .cta__features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta__feature--modern {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .cta__feature--animated {
    padding: 0.8rem;
    border-radius: 12px;
  }
  
  .floating-icon {
    font-size: 1.5rem;
  }
  
  .cta__urgency-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .animated-feature {
    display: block;
    margin: 0.2rem 0;
    text-align: center;
  }
  
  .phone-waves {
    display: none;
  }
  
  .btn-sparkles {
    display: none;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .countdown-item {
    min-width: 50px;
    padding: 0.8rem;
  }
  
  .countdown-number {
    font-size: 1.4rem;
  }
  
  .countdown-text {
    font-size: 1rem;
  }
  
  .discount-highlight {
    font-size: 1.1rem;
  }
}

/* Contact Section */
.contact {
  padding: var(--spacing-2xl) 0;
  background-color: var(--white);
}

/* Step Form Styles */
.form__progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 1;
  color: var(--secondary-color);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--primary-color);
}

.progress-step.completed .step-number {
  background: var(--secondary-color);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.form__step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.form__step.active {
  display: block;
}

.step__title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.step__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.step__buttons .btn {
  min-width: 150px;
}

.step__buttons .btn:only-child {
  margin-left: auto;
}

.form__summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-color);
}

.form__summary h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.summary__item {
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.summary__item:last-child {
  border-bottom: none;
}

.summary__label {
  font-weight: 600;
  min-width: 150px;
  color: var(--dark-color);
}

.summary__value {
  color: var(--gray-color);
  flex: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .form__progress {
    gap: 1rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
  }
  
  .step__buttons {
    flex-direction: column;
  }
  
  .step__buttons .btn:only-child {
    margin-left: 0;
  }
  
  .summary__item {
    flex-direction: column;
  }
  
  .summary__label {
    min-width: auto;
    margin-bottom: 0.25rem;
  }
}

.contact__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.contact__methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.contact-method {
  text-align: center;
  padding: var(--spacing-xl);
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
}

.contact-method__icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.contact-method__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.contact-method__link {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.contact-method__time {
  font-size: 0.875rem;
  color: var(--gray-color);
}

.contact__form {
  background-color: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact__form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Form Styles */
.form__group {
  margin-bottom: var(--spacing-lg);
}

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.form__required {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--danger-color);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  margin-left: var(--spacing-xs);
}

.form__optional {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--gray-color);
  color: var(--white);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  margin-left: var(--spacing-xs);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.form__radio-group--horizontal {
  flex-direction: row;
}

.form__radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form__radio input[type="radio"] {
  margin-right: var(--spacing-xs);
}

.form__submit {
  margin-top: var(--spacing-xl);
}

@media (max-width: 768px) {
  .contact__methods {
    grid-template-columns: 1fr;
  }
  
  .form__radio-group--horizontal {
    flex-direction: column;
  }
  
  .step__title {
    white-space: nowrap;
    font-size: 1.2rem;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: var(--white);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  padding-right: 2rem;
}

.footer__logo {
  margin-bottom: 1.5rem;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.credentials-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.credentials-item i {
  color: var(--primary-color);
  width: 20px;
  flex-shrink: 0;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
  flex-shrink: 0;
}

.footer__services h4,
.footer__access h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer__services h4::after,
.footer__access h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer__services li {
  margin-bottom: 0.75rem;
}

.footer__services a {
  color: #d1d5db;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__services a:hover {
  color: var(--primary-light);
}

.footer__services a i {
  color: var(--primary-color);
  width: 16px;
  flex-shrink: 0;
}

.footer__address {
  margin-bottom: 1.5rem;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.address-item i {
  color: var(--primary-color);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.address-item div p {
  margin: 0;
  line-height: 1.4;
}

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

.footer__map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__map-iframe {
  width: 100%;
  height: 120px;
  display: block;
  border-radius: var(--radius-md);
}

.footer__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer__map-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer__map-btn i {
  font-size: 1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer__brand {
    padding-right: 0;
    text-align: left;
  }
  
  .footer__logo {
    text-align: left;
  }
  
  .footer__credentials {
    margin-bottom: 1rem;
  }
  
  .footer__contact-info {
    align-items: flex-start;
  }
  
  .footer__services,
  .footer__access {
    text-align: left;
  }
  
  .footer__services h4::after,
  .footer__access h4::after {
    left: 0;
    transform: none;
  }
  
  .footer__services a {
    justify-content: flex-start;
  }
  
  .address-item {
    justify-content: flex-start;
    text-align: left;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }
  
  .footer__links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

/* Fixed Buttons */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 999;
}

.fixed-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  border: 4px solid white;
}

.fixed-button:first-child {
  width: 130px;
  height: 130px;
  font-size: 0.9rem;
  margin-right: 0;
}

.fixed-button:first-child .fixed-button__icon {
  font-size: 1.8rem;
}

.fixed-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fixed-button--mail {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.fixed-button--line {
  background: linear-gradient(135deg, #00c300, #00a000);
}

.fixed-button--tel {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.fixed-button__text {
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.fixed-button__icon {
  font-size: 1.8rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #4a90e2;
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #357abd;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
    padding: 0.5rem 0.5rem 0.8rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
  }
  
  .fixed-button {
    width: auto;
    height: auto;
    flex: 1;
    padding: 0.8rem 0.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.1;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  }
  
  .fixed-button:first-child {
    width: auto;
    height: auto;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
  }
  
  .fixed-button:first-child .fixed-button__icon {
    font-size: 1.3rem;
  }
  
  .fixed-button__text {
    margin-bottom: 0.2rem;
    font-weight: 600;
    display: block;
    white-space: nowrap;
  }
  
  .fixed-button__icon {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  
  .fixed-button--mail {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
  }
  
  .fixed-button--line {
    background: linear-gradient(135deg, #00c300 0%, #00a000 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 195, 0, 0.3);
  }
  
  .fixed-button--tel {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 100px;
    right: 15px;
    background: rgba(37, 99, 235, 0.9);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

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

/* FAQ Section */
.faq {
  padding: var(--spacing-2xl) 0;
  background-color: var(--light-gray);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  padding: var(--spacing-lg);
  background-color: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
}


.faq-item__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item__question i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
  padding: 0 var(--spacing-lg) 0 var(--spacing-lg);
}

.faq-item.active .faq-item__answer {
  max-height: 1000px;
  padding-bottom: var(--spacing-lg);
}

.faq-item__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}