@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Noto+Serif+JP:wght@400;600;900&display=swap');

:root {
  --primary-color: #4A3F35; /* Warm dark brown for text */
  --secondary-color: #B5838D; /* Deep dusty rose/mauve */
  --accent-color: #D4A373; /* Soft caramel gold */
  --accent-hover: #C28E5C;
  --bg-light: #FAF8F5; /* Elegant warm off-white */
  --bg-dark: #FFFFFF;
  --text-main: #5C524A; /* Soft brown text */
  --font-base: 'Noto Serif JP', serif;
  --font-en: 'Cormorant Garamond', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.8;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-color);
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1100px; /* slightly narrower for elegance */
  margin: 0 auto;
  padding: 0 25px;
}

.section-padding {
  padding: 120px 0;
}

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

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 4rem;
  color: var(--primary-color);
  position: relative;
  font-family: var(--font-en);
}

.section-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 4px; /* sharp but soft edges */
  font-weight: 400;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.1em;
}

.btn-primary {
  background: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn-large {
  padding: 1.2rem 3.5rem;
  font-size: 1.1rem;
  width: 100%;
  max-width: 420px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
  background-color: rgba(250, 248, 245, 0.85); /* Matches bg-light */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

header.scrolled {
  padding: 12px 0;
  background-color: rgba(250, 248, 245, 0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

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

.logo {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.1em;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  font-weight: 400;
  color: var(--text-main);
  font-size: 0.95rem;
}

nav a:hover:not(.btn) {
  color: var(--secondary-color);
}

.btn-header {
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-header:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero_beauty.png') center/cover no-repeat;
  color: var(--primary-color);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.95) 0%, rgba(250, 248, 245, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1.2;
}

.hero-badge {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  font-family: var(--font-en);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--secondary-color);
  vertical-align: middle;
  margin-right: 10px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: var(--primary-color);
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.1rem;
  max-width: 42rem;
  margin-bottom: 3rem;
  color: var(--text-main);
  line-height: 2;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Empathy Section */
.belleweb-empathy {
  background: var(--bg-light);
}

.belleweb-empathy-inner {
  max-width: 920px;
  margin: 0 auto;
}

.belleweb-empathy .section-title {
  margin-bottom: 3rem;
}

.belleweb-empathy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.belleweb-empathy-list li {
  position: relative;
  min-height: 4.75rem;
  padding: 1.25rem 1.3rem 1.25rem 3.1rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(181, 131, 141, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.7;
}

.belleweb-empathy-list li::before {
  content: '';
  position: absolute;
  top: 1.95rem;
  left: 1.3rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--secondary-color);
  box-shadow: 0 0 0 5px rgba(181, 131, 141, 0.12);
}

.belleweb-empathy-list li:last-child {
  grid-column: 1 / -1;
}

/* Reasons Section */
.belleweb-reasons {
  background: #fff;
}

.belleweb-reason-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.belleweb-reason-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(181, 131, 141, 0.16);
  border-left: 4px solid var(--secondary-color);
  border-radius: 6px;
  background: var(--bg-light);
}

.belleweb-reason-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--secondary-color);
  color: #fff;
  font-family: var(--font-base);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.belleweb-reason-item h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* Industries Section */
.belleweb-industries {
  background: var(--bg-light);
}

.belleweb-industries .section-title {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.belleweb-industry-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.belleweb-industry-list li {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(181, 131, 141, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-color);
  font-size: 0.96rem;
  line-height: 1.5;
  text-align: center;
}

/* Information Section */
.belleweb-info {
  background: #fff;
  padding: 100px 0;
}

.belleweb-info-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.belleweb-info-heading .section-title {
  margin-bottom: 3rem;
}

.belleweb-info-heading p {
  color: var(--text-main);
  font-size: 1rem;
}

.belleweb-info-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(74, 63, 53, 0.12);
}

.belleweb-info-item {
  border-bottom: 1px solid rgba(74, 63, 53, 0.12);
}

.belleweb-info-item a {
  display: grid;
  grid-template-columns: 110px max-content minmax(0, 1fr);
  gap: 1rem;
  padding: 1.8rem 0;
  align-items: center;
}

.belleweb-info-item a:hover h3 {
  color: var(--secondary-color);
}

.belleweb-info-meta {
  display: contents;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.belleweb-info-meta time {
  color: var(--primary-color);
  font-family: var(--font-en);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.belleweb-info-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(181, 131, 141, 0.14);
  color: var(--secondary-color);
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: nowrap;
}

.belleweb-info-body {
  min-width: 0;
}

.belleweb-info-body h3 {
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: var(--transition);
}

.belleweb-info-empty p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.8;
}

.belleweb-info-empty {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(74, 63, 53, 0.12);
  border-bottom: 1px solid rgba(74, 63, 53, 0.12);
}

.belleweb-info-more {
  margin-top: 3rem;
  text-align: center;
}

.belleweb-info-more .btn {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.belleweb-info-more .btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Features Section */
.features {
  background-color: var(--bg-dark);
}

.concept-section {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 7rem;
}

.concept-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.concept-text {
  flex: 1.2;
}

.concept-text h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.concept-text p {
  margin-bottom: 2.5rem;
  color: var(--text-main);
  line-height: 1.9;
}

.concept-profile-name {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.08rem;
  font-weight: 600;
}

.concept-profile-name + p {
  margin-bottom: 0;
}

.concept-list li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.concept-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-right: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.feature-icon {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.feature-icon img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.feature-card p {
  color: var(--text-main);
  font-size: 0.95rem;
}

.pricing {
  background: var(--bg-light);
  position: relative;
  padding: 120px 0;
}

.belleweb-pricing-image {
  max-width: 820px;
  margin: 0 auto 4rem;
}

.belleweb-pricing-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(74, 63, 53, 0.09);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-card {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--bg-dark);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(181, 131, 141, 0.28);
  border-top: 3px solid rgba(181, 131, 141, 0.38);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
  border-top: 3px solid var(--secondary-color);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular-badge {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-base);
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  color: var(--primary-color);
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-main);
  font-family: var(--font-base);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  min-height: 45px;
}

.belleweb-plan-copy {
  min-height: 0;
  text-align: left;
  line-height: 1.9;
}

.belleweb-plan-rate {
  margin: 0 0 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(181, 131, 141, 0.18);
  border-radius: 4px;
  background: var(--bg-light);
  text-align: left;
}

.belleweb-plan-rate h4,
.belleweb-plan-features-title {
  margin: 0 0 0.75rem;
  color: var(--primary-color);
  font-size: 0.98rem;
  font-weight: 600;
}

.belleweb-plan-rate p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

.belleweb-plan-rate strong {
  color: var(--secondary-color);
  font-weight: 600;
  white-space: nowrap;
}

.belleweb-plan-note {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  line-height: 1.7;
  text-align: left;
  opacity: 0.7;
}

.belleweb-plan-features-title {
  text-align: left;
}

.plan-features {
  text-align: left;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
}

.pricing-card:not(.popular) .btn:not(.btn-primary) {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid #EBE4DB;
}

.pricing-card:not(.popular) .btn:not(.btn-primary):hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* Voice Section */
.belleweb-voice {
  background: var(--bg-light);
}

.belleweb-voice-lead {
  margin: -2rem 0 4rem;
  text-align: center;
}

.belleweb-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.belleweb-voice-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(181, 131, 141, 0.14);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(74, 63, 53, 0.06);
}

.belleweb-voice-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-light);
}

.belleweb-voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.belleweb-voice-img a:hover img {
  transform: scale(1.04);
}

.belleweb-voice-content {
  position: relative;
  flex: 1;
  padding: 2rem;
}

.belleweb-voice-icon {
  position: absolute;
  top: 0.35rem;
  right: 1.35rem;
  color: rgba(181, 131, 141, 0.16);
  font-family: var(--font-en);
  font-size: 4rem;
  line-height: 1;
}

.belleweb-voice-content h3 {
  position: relative;
  margin-bottom: 1rem;
  padding-right: 1.8rem;
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

.belleweb-voice-client {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.belleweb-voice-text {
  color: var(--text-main);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Flow Section */
#flow {
  background: var(--bg-light);
}

body.belleweb-landing-page #information.belleweb-info,
body.belleweb-landing-page #flow {
  background: var(--bg-light) !important;
}

.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  background: #fff;
  border: 1px solid rgba(181, 131, 141, 0.22);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(74, 63, 53, 0.07);
  padding: 1.6rem 2rem;
  align-items: center;
  position: relative;
}

.flow-number {
  font-size: 2.5rem;
  font-family: var(--font-en);
  color: var(--accent-color);
  min-width: 80px;
  opacity: 0.5;
}

.flow-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.flow-content h3:last-child {
  margin-bottom: 0;
}

.flow-content p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.8;
}

.belleweb-flow-free {
  display: inline-block;
  color: #d94141;
  font-size: 1.15em;
  font-weight: 700;
}

/* FAQ Section */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: block;
}

.faq-item {
  background: var(--bg-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  display: block;
  width: 100%;
  overflow: hidden;
}

.faq-q {
  padding: 1.8rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  font-weight: 600;
  transition: var(--transition);
}

.faq-icon {
  font-size: 1.5rem;
  font-family: var(--font-en);
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: block;
  width: 100%;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-a {
  padding: 0 2rem 1.8rem;
  max-height: 500px;
}

.faq-a p {
  margin: 0;
  width: 100%;
}

body.belleweb-landing-page #faq .faq-list,
body.belleweb-landing-page #faq .faq-item,
body.belleweb-landing-page #faq .faq-a,
body.belleweb-landing-page #faq .faq-a p {
  display: block;
  width: 100%;
}

body.belleweb-landing-page #faq .faq-item {
  overflow: hidden;
}

body.belleweb-landing-page #faq .faq-q {
  display: flex;
  width: 100%;
}

.belleweb-faq-more {
  margin-top: 3rem;
  text-align: center;
}

.belleweb-faq-more-btn {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}

.belleweb-faq-more-btn:visited {
  color: #fff;
}

.belleweb-faq-more-btn:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  background: var(--secondary-color);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 400;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 2;
}

.cta-section .btn {
  background: var(--bg-light);
  color: var(--secondary-color);
}

.cta-section .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.belleweb-contact-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 8px;
  background: rgba(250, 248, 245, 0.98);
  color: var(--text-main);
  text-align: left;
}

.belleweb-contact-form p {
  margin-bottom: 1.2rem;
  color: var(--text-main);
  opacity: 1;
  font-size: 1rem;
  line-height: 1.8;
}

.belleweb-contact-form label {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
}

.belleweb-contact-form input[type="text"],
.belleweb-contact-form input[type="email"],
.belleweb-contact-form input[type="tel"],
.belleweb-contact-form input[type="url"],
.belleweb-contact-form textarea,
.belleweb-contact-form select {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(74, 63, 53, 0.16);
  border-radius: 4px;
  background: #fff;
  color: var(--text-main);
  font-family: var(--font-base);
  font-size: 1rem;
}

.belleweb-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.belleweb-contact-form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  background: var(--secondary-color);
  color: #fff;
  font-family: var(--font-base);
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.belleweb-contact-form input[type="submit"]:hover {
  background: transparent;
  color: var(--secondary-color);
}

.belleweb-contact-form .wpcf7-spinner {
  display: block;
  margin: 1rem auto 0;
}

.belleweb-cf7-message {
  margin: 0;
  text-align: center;
}

/* Footer */
footer {
  background: #fff;
  padding: 80px 0 30px;
}

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

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  font-family: var(--font-en);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-text {
    margin-bottom: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .concept-section {
    flex-direction: column;
  }

  .belleweb-empathy-list {
    grid-template-columns: 1fr;
  }

  .belleweb-empathy-list li:last-child {
    grid-column: auto;
  }

  .belleweb-reason-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .belleweb-industry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .belleweb-voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .belleweb-empathy-list li {
    min-height: auto;
    padding: 1.1rem 1rem 1.1rem 2.8rem;
    font-size: 0.94rem;
  }

  .belleweb-empathy-list li::before {
    top: 1.75rem;
    left: 1.1rem;
  }

  .belleweb-reason-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.25rem;
  }

  .belleweb-reason-label {
    width: fit-content;
  }

  .belleweb-reason-item h3 {
    font-size: 1rem;
  }

  .belleweb-industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .belleweb-industry-list li {
    min-height: 3.2rem;
    padding: 0.75rem 0.7rem;
    font-size: 0.9rem;
  }
  
  nav ul {
    display: none;
  }

  .belleweb-info {
    padding: 80px 0;
  }

  .belleweb-info-item a {
    grid-template-columns: 86px max-content minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1.5rem 0;
  }

  .belleweb-info-meta time {
    font-size: 0.9rem;
  }

  .belleweb-info-meta span {
    min-width: 64px;
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }

  .belleweb-info-body h3 {
    font-size: 0.95rem;
  }

  .belleweb-voice {
    padding: 80px 0;
  }

  .belleweb-voice-lead {
    margin: -2rem 0 3rem;
  }

  .belleweb-voice-grid {
    grid-template-columns: 1fr;
  }

  .belleweb-voice-content {
    padding: 1.6rem;
  }
  
  .flow-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .flow-number {
    margin-bottom: 1rem;
  }
}
