@charset "UTF-8";
/* Seeds Connect - Corporate Website Styles */
/* ========================================
   Reset & Base Styles
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ========================================
   Colors & Variables
======================================== */
:root {
  --primary-color: #2E7D9A;
  --secondary-color: #4CAF50;
  --accent-color: #FF6B35;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --border-color: #E9ECEF;
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-light: 0 2px 4px rgba(0,0,0,0.05);
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ========================================
   Layout Components
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  background: #ffffff;
}

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

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

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

/* ========================================
   Header & Navigation
======================================== */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  vertical-align: middle;
  object-fit: contain;
}

.logo a {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-contact {
  border: 2px solid var(--accent-color);
  color: var(--accent-color) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-contact:hover {
  background: var(--accent-color);
  color: white !important;
  transform: translateY(-2px);
}

.nav-cta {
  background: var(--accent-color);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

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

.btn-primary:hover {
  background: #236b85;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background: #45a049;
  transform: translateY(-2px);
}

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

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

/* Hero section button overrides */
.hero .btn-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.btn-accent:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* ========================================
   Hero Section
======================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-color), #3498db);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero--bg-image {
  background-image: url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a5490;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero__title-home {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__subtitle-home {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  font-size: 1.3rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  margin-top: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-buttons--center {
  justify-content: center;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid white;
  color: white;
  font-weight: 700;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ========================================
   Cards & Features
======================================== */
.card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.card-text {
  text-align: center;
  color: var(--text-light);
}

/* ========================================
   Statistics & Numbers
======================================== */
.stats {
  background: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========================================
   Case Studies & Portfolio
======================================== */
.case-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

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

.case-card-header {
  padding: 1.5rem;
  background: var(--bg-light);
}

.case-card-body {
  padding: 1.5rem;
}

.case-tag {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-results {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.result-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 5px;
}

.result-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ========================================
   Blog & Articles
======================================== */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

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

.blog-card-image {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 3rem;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   Index Page Specific Styles
======================================== */
.section--white {
  background: #ffffff;
}

.section--gradient {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.section--gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle, var(--primary-color) 1px, transparent 1px);
  background-size: 30px 30px;
}

.container--relative {
  position: relative;
}

.badge-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.heading-gradient {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-light {
  color: var(--text-light);
}

.text-light-large {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.service-card-index {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(46, 125, 154, 0.1);
}

.service-card-index:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(46, 125, 154, 0.15);
}

.service-card-index--primary {
  box-shadow: 0 15px 35px rgba(46, 125, 154, 0.1);
}

.service-card-index--primary:hover {
  box-shadow: 0 25px 50px rgba(46, 125, 154, 0.15);
}

.service-card-index--secondary {
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.service-card-index--secondary:hover {
  box-shadow: 0 25px 50px rgba(76, 175, 80, 0.15);
}

.service-card-index--accent {
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.service-card-index--accent:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
}

.service-icon-index {
  width: 80px;
  height: 80px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.service-icon-index--primary {
  background: linear-gradient(135deg, var(--primary-color), #3498db);
  box-shadow: 0 10px 25px rgba(46, 125, 154, 0.3);
}

.service-icon-index--secondary {
  background: linear-gradient(135deg, var(--secondary-color), #66bb6a);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.service-icon-index--accent {
  background: linear-gradient(135deg, var(--accent-color), #ff8a65);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.service-title-index {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.service-text-index {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.btn-service-index {
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-service-index:hover {
  transform: scale(1.05);
}

.btn-service-index--primary {
  background: linear-gradient(135deg, var(--primary-color), #3498db);
  color: white;
}

.btn-service-index--primary:hover {
  box-shadow: 0 8px 20px rgba(46, 125, 154, 0.3);
}

.btn-service-index--secondary {
  background: linear-gradient(135deg, var(--secondary-color), #66bb6a);
  color: white;
}

.btn-service-index--secondary:hover {
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.btn-service-index--accent {
  background: linear-gradient(135deg, var(--accent-color), #ff8a65);
  color: white;
}

.btn-service-index--accent:hover {
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-arrow {
  margin-left: 0.5rem;
}

.cta-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-box-text {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 25px;
}

.text-nowrap {
  white-space: nowrap;
}

/* ========================================
   Forms
======================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 50px 0 25px;
}

/* .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
} */

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-logo {
  margin-bottom: 0;
  text-align: center;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: saturate(0.82) opacity(0.85);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  color: #EDEFF2;
  transition: color 0.2s ease;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}

.footer-nav .footer-cta {
  margin-left: 0;
}

.footer-section p,
.footer-section a {
  color: #EDEFF2;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.6;
}

.footer-section p {
  line-height: 1.65;
}

.footer-section a {
  line-height: 1.7;
  transition: color 0.2s ease;
}

.footer-section i {
  font-size: 1em;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-section a:hover {
  color: white;
}

.footer-section .btn {
  display: inline-block;
  margin-top: 0;
}

/* 右カラム（お問い合わせ）のスタイル */
.footer-contact-link {
  color: #EDEFF2 !important;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: white !important;
}

.footer-contact-link i {
  font-size: 0.85em;
  margin-left: 0.3rem;
}

.footer-contact-note {
  font-size: 0.85rem;
  color: rgba(237, 239, 242, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.footer-phone {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-phone-label {
  font-size: 0.875rem;
  color: rgba(237, 239, 242, 0.7);
  margin-bottom: 0.3rem;
}

.footer-phone-number {
  font-size: 0.95rem;
  color: rgba(237, 239, 242, 0.8);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.footer-phone-hours {
  font-size: 0.85rem;
  color: rgba(237, 239, 242, 0.65);
  margin-bottom: 0;
}

.footer-cta {
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ========================================
   CTA Sections
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color), #e55a2b);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ========================================
   Utility Classes
======================================== */
.hidden {
  display: none;
}

.visible {
  display: block;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ========================================
   Blog Page Styles
======================================== */
/* Blog Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: white;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

/* Blog/Column Grid */
.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog/Column Card */
.column-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.column-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.column-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.column-badge.badge-analysis {
  background: var(--secondary-color);
}

.column-badge.badge-ai {
  background: #9C27B0;
}

.column-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.column-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.column-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.column-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.column-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.column-link:hover {
  color: var(--accent-color);
  gap: 0.75rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  color: var(--text-light);
  font-weight: 500;
}

h2.blog-cta-title, p.blog-cta-text {
  color: var(--text-dark);
}

/* ========================================
   Case Studies Page Styles
======================================== */
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  background: white;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.case-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin: 2rem 0;
}

/* Hero Section */
.hero__title-case-studies {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__subtitle-case-studies {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  margin-top: 1.5rem;
}

/* Case Card Image */
.case-card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.case-card-image--pharmacist {
  background-image: url("../images/case-pharmacist.jpg");
}

.case-card-image--esthetician {
  background-image: url("../images/case-esthetician.jpg");
}

.case-image-label {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 3px;
}

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

.case-tag--accent {
  background: var(--accent-color);
}

.case-card-text {
  color: var(--text-light);
}

.case-info {
  margin-bottom: 1rem;
}

.case-info-label {
  font-weight: 600;
  color: var(--text-dark);
}

.case-card-button-wrapper {
  margin-top: 1rem;
}

/* Modal Content */
.modal-content-wrapper {
  padding: 2rem;
}

.modal-title {
  margin: 1rem 0;
}

.modal-info-list {
  list-style: none;
  padding: 0;
}

.modal-info-list--light {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 5px;
}

.modal-info-list--success {
  background: #e8f5e8;
  padding: 1rem;
  border-radius: 5px;
}

.modal-detail-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.modal-detail-item {
  margin-bottom: 1.5rem;
}

.modal-detail-item:last-child {
  margin-bottom: 0;
}

.modal-detail-title {
  margin-bottom: 0.5rem;
}

.modal-detail-title--secondary {
  color: var(--secondary-color);
}

.modal-detail-title--accent {
  color: var(--accent-color);
}

.modal-detail-list {
  margin: 0.5rem 0;
}

.modal-summary-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.modal-summary-text {
  margin: 0;
}

/* Before After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.before-after-card {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.before-after-card--before {
  background: #ffeaea;
}

.before-after-card--after {
  background: #e8f5e8;
}

.before-after-card-title {
  margin-bottom: 0.5rem;
}

.before-after-card-title--before {
  color: #c62828;
}

.before-after-card-title--after {
  color: #2e7d32;
}

.before-after-card-text {
  margin: 0.5rem 0;
}

/* CTA Section */
.cta-text-case-studies {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-margin {
  margin: 2rem 0;
}

.btn-secondary-case-studies {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

/* ========================================
   Contact Page Styles
======================================== */
.consultation-info {
  background: linear-gradient(135deg, #1a5490, #2E7D9A);
  color: white;
  padding: 3rem 0;
  margin-bottom: 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
}

.consultation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Hero Section */
.hero__title-contact {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__subtitle-contact {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  margin-top: 1.5rem;
}

/* Consultation Info Section */
.consultation-title {
  color: white;
  margin-bottom: 1rem;
}

.consultation-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  color: white;
  margin-bottom: 1rem;
}

.feature-text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.info-item-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-item-label {
  color: rgba(255, 255, 255, 0.9);
}

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

.consultation-note-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Common Consultation Examples */
.consultation-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  height: 100%;
}

.consultation-card-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.consultation-list {
  list-style: none;
  padding: 0;
}

.consultation-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.consultation-item:last-child {
  margin-bottom: 0;
}

.consultation-icon {
  color: var(--secondary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.stance-card {
  background: linear-gradient(135deg, #2E7D9A, #3a9ec2);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stance-card-title {
  color: white;
  margin-bottom: 1.5rem;
}

.stance-content {
  space-y: 1.5rem;
}

.stance-item {
  margin-bottom: 1.5rem;
}

.stance-item:last-child {
  margin-bottom: 0;
}

.stance-item-title {
  color: white;
  margin-bottom: 0.5rem;
}

.stance-item-text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Form Section */
.form-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-section-title {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.form-required {
  color: #e74c3c;
}

.form-checkbox-label {
  font-size: 0.9rem;
}

.form-submit-button {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 2rem;
}

.faq-section-title {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Final CTA Section */
.cta-info-wrapper {
  margin: 2rem 0;
}

.cta-info-box-contact {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 15px;
  max-width: 600px;
}

.cta-info-text-contact {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-button-large {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

/* ========================================
   Download Thank You Page Styles
======================================== */
.download-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.download-container {
  max-width: 800px;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4CAF50, #66bb6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.download-container h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.download-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.download-btn-primary {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
  color: white;
}

.download-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(33, 147, 176, 0.4);
}

.download-btn-secondary {
  background: linear-gradient(135deg, #4CAF50, #66bb6a);
  color: white;
}

.download-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.download-btn-accent {
  background: linear-gradient(135deg, #ff6b35, #ff8a65);
  color: white;
}

.download-btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.info-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid #2193b0;
}

.info-box h3 {
  color: #2193b0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-box p {
  font-size: 0.95rem;
  margin: 0;
}

.back-link {
  display: inline-block;
  color: #2193b0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #6dd5ed;
  transform: translateX(-5px);
}

.download-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.download-section-title {
  color: #333;
  margin-bottom: 1rem;
}

.download-section-text {
  margin-bottom: 1.5rem;
}

.download-btn-inline {
  display: inline-flex;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.download-link {
  color: #2193b0;
  text-decoration: underline;
}

.download-section-bottom {
  margin-top: 2rem;
}

/* ========================================
   Article Detail Page Styles
======================================== */
.article-detail {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.article-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-category {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--secondary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.article-featured-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.article-content > section,
.article-content > .article-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6,
.article-content .wp-block-heading h1,
.article-content .wp-block-heading h2,
.article-content .wp-block-heading h3,
.article-content .wp-block-heading h4,
.article-content .wp-block-heading h5,
.article-content .wp-block-heading h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.article-content h1,
.article-content .wp-block-heading h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.5rem);
  color: var(--primary-color);
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--secondary-color);
}
.article-content h2,
.article-content .wp-block-heading h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 1.8rem);
  color: var(--primary-color);
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--secondary-color);
  margin-top: 3rem;
}
.article-content h3,
.article-content .wp-block-heading h3 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.4rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-content h4,
.article-content .wp-block-heading h4 {
  font-size: clamp(1.125rem, 0.9rem + 0.75vw, 1.2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.article-content h5,
.article-content .wp-block-heading h5 {
  font-size: clamp(1rem, 0.875rem + 0.5vw, 1.1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.article-content h6,
.article-content .wp-block-heading h6 {
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}
.article-content p,
.article-content .wp-block-paragraph {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.article-content ul, .article-content ol,
.article-content .wp-block-list ul,
.article-content .wp-block-list ol {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.article-content ul li,
.article-content ol li,
.article-content .wp-block-list ul li,
.article-content .wp-block-list ol li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-dark);
}
.article-content ul li::before,
.article-content .wp-block-list ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.8rem;
}
.article-content ol li,
.article-content .wp-block-list ol li {
  counter-increment: list-counter;
  padding-left: 2.5rem;
}
.article-content ol,
.article-content .wp-block-list ol {
  counter-reset: list-counter;
}
.article-content ol li::before,
.article-content .wp-block-list ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 600;
}
.article-content table,
.article-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.article-content table thead,
.article-content .wp-block-table table thead {
  background: var(--primary-color);
}
.article-content table th,
.article-content table td,
.article-content .wp-block-table table th,
.article-content .wp-block-table table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.article-content table th,
.article-content .wp-block-table table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 0.95rem);
}
.article-content table td,
.article-content .wp-block-table table td {
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1rem);
  color: var(--text-dark);
}
.article-content table tbody tr:last-child td,
.article-content .wp-block-table table tbody tr:last-child td {
  border-bottom: none;
}
.article-content table tbody tr:hover,
.article-content .wp-block-table table tbody tr:hover {
  background: #f8f9fa;
}
.article-content strong {
  font-weight: 700;
  color: var(--text-dark);
}
.article-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.article-content a:hover {
  color: var(--secondary-color);
}
.article-content blockquote,
.article-content .wp-block-quote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
}
.article-content code,
.article-content .wp-block-code code {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: var(--text-dark);
}
.article-content pre,
.article-content .wp-block-code pre {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}
.article-content img,
.article-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}
.article-content hr,
.article-content .wp-block-separator {
  border: none;
  border-top: 2px solid #eee;
  margin: 3rem 0;
}

.article-intro {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
}

.article-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.article-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--secondary-color);
}

.article-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 1rem;
}

.article-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.article-section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.article-section ul li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-section ul li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.highlight-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.highlight-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.data-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.data-table td {
  font-size: 1rem;
  color: var(--text-dark);
}

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

.data-table tr:hover {
  background: #f8f9fa;
}

.note-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.note-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #856404;
}

.segment-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.segment-box ul {
  margin: 0.5rem 0 0 0;
}

.article-footer {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-footer h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-blog:hover {
  background: var(--secondary-color);
  transform: translateX(-5px);
}

/* ========================================
   Services Page Styles
======================================== */
/* Hero Section */
.hero {
  background-image: url("../images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a5490;
}

.hero__title-services {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  display: inline-block;
}

.hero__subtitle-services {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  display: inline-block;
}

.hero__description-services {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.25);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  display: inline-block;
}

.hero__features-box {
  margin-top: 2rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__features-content {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 2;
}

.hero__features-item {
  margin-bottom: 0.5rem;
}

.hero__features-icon {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.hero__features-spacer {
  margin: 0 1.5rem;
}

/* Service Navigation */
.service-nav {
  background: var(--bg-light);
  padding: 2rem 0;
}

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

/* Service Section Header */
.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.service-icon--primary {
  background: var(--primary-color);
}

.service-icon--secondary {
  background: var(--secondary-color);
}

.service-icon--accent {
  background: var(--accent-color);
}

.service-title {
  margin-bottom: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.service-title--simple {
  margin-bottom: 0;
}

.service-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-subtitle--secondary {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.service-subtitle--accent {
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.service-card--primary {
  background: linear-gradient(135deg, var(--primary-color), #3498db);
  color: white;
  padding: 2rem;
  border-radius: 15px;
}

.service-card--secondary {
  background: linear-gradient(135deg, var(--secondary-color), #66bb6a);
  color: white;
  padding: 2rem;
  border-radius: 15px;
}

.service-card--accent {
  background: linear-gradient(135deg, var(--accent-color), #ff8a65);
  color: white;
  padding: 2rem;
  border-radius: 15px;
}

.service-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card__title {
  color: white;
}

.service-card__text {
  color: rgba(255, 255, 255, 0.9);
}

/* Problem Section */
.problem-section {
  margin: 4rem 0;
}

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

.problem-title--accent {
  color: var(--accent-color);
}

.problem-title--primary {
  color: var(--primary-color);
}

.problem-list-title {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--accent-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
  padding: 0.5rem 0;
}

.problem-list-title--simple {
  margin-bottom: 1.5rem;
}

.problem-list-title--primary {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.problem-list-title--secondary {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.problem-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
}

.problem-box--white {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.problem-item:last-child {
  margin-bottom: 0;
}

.problem-icon {
  color: var(--accent-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.problem-icon--primary {
  color: var(--primary-color);
}

.problem-icon--secondary {
  color: var(--secondary-color);
}

/* Solution Box */
.solution-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
}

.solution-box--light {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.solution-box--white {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-light);
}

.solution-step {
  margin-bottom: 1.5rem;
}

.solution-step:last-child {
  margin-bottom: 0;
}

.solution-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.solution-step-number {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.75rem;
  font-size: 0.9rem;
  color: white;
}

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

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

.solution-step-number--accent {
  background: var(--accent-color);
}

.solution-step-title {
  color: var(--primary-color);
}

.solution-step-title--secondary {
  color: var(--secondary-color);
}

.solution-step-title--accent {
  color: var(--accent-color);
}

.solution-step-description {
  margin: 0 0 0 2.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Features Section */
.features-box {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  box-shadow: var(--shadow);
}

.features-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

.features-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features-icon-box {
  border-radius: 10px;
  padding: 1rem;
  min-width: 50px;
  text-align: center;
  color: white;
}

.features-icon-box--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.features-icon-box--secondary {
  background: linear-gradient(135deg, var(--secondary-color), #66bb6a);
}

.features-icon-box--accent {
  background: linear-gradient(135deg, var(--accent-color), #ff8a65);
}

.features-icon {
  font-size: 1.5rem;
}

.features-content-title {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
}

.features-content-title--secondary {
  margin: 0 0 0.5rem 0;
  color: var(--secondary-color);
}

.features-content-title--accent {
  margin: 0 0 0.5rem 0;
  color: var(--accent-color);
}

.features-content-text {
  margin: 0;
  color: var(--text-light);
}

/* Before After Section */
.before-after-section {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.before-after-section--white {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: var(--shadow-light);
}

.before-after-title {
  text-align: center;
  margin-bottom: 2rem;
}

.before-after-card {
  text-align: center;
}

.before-after-card--before {
  background: #ffeaea;
  color: #c62828;
  padding: 1.5rem;
  border-radius: 10px;
}

.before-after-card--after {
  background: #e8f5e8;
  color: #2e7d32;
  padding: 1.5rem;
  border-radius: 10px;
}

.before-after-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.before-after-text {
  margin: 0;
}

/* CTA Section */
.service-cta {
  text-align: center;
  margin-top: 2rem;
}

.service-cta-text {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Other Services Navigation */
.other-services-title {
  text-align: center;
  margin-bottom: 2rem;
}

.other-services-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-web-enhancement {
  background: var(--accent-color);
  color: white;
}

/* Whitepaper Download Section */
.whitepaper-container {
  max-width: 400px;
  margin: 0 auto;
}

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

.whitepaper-title {
  white-space: nowrap;
}

.whitepaper-description {
  font-size: 0.95rem;
}

.whitepaper-image-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.whitepaper-image-link {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whitepaper-image-link:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.whitepaper-image-link:not(:hover) {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.whitepaper-image {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.whitepaper-image-hint {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Final CTA Section */
.cta-content {
  margin: 2rem 0;
}

.cta-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.cta-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-card-title {
  color: white;
  margin: 0.5rem 0;
}

.cta-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button-large {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}

/* Privacy Policy Link */
.privacy-link {
  color: inherit;
  text-decoration: underline;
}

/* ========================================
   Privacy Policy Page Styles
======================================== */
.hero__title-privacy {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__subtitle-privacy {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  margin-top: 1.5rem;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.privacy-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.privacy-text-dark {
  color: var(--text-dark);
  line-height: 1.8;
}

.privacy-text-dark--mb {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-heading {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
}

.privacy-list {
  color: var(--text-dark);
  line-height: 1.8;
  padding-left: 2rem;
}

.privacy-contact-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.privacy-contact-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.privacy-contact-text {
  color: var(--text-dark);
  margin: 0;
}

.privacy-link {
  color: var(--primary-color);
}

.privacy-text-right {
  color: var(--text-dark);
  text-align: right;
  margin: 0;
}

/* ========================================
   About Page Styles
======================================== */
/* Hero Section */
.hero__title-about {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero__subtitle-about {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.2rem 3rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Representative Profile Section */
.about-intro {
  font-size: 1.1rem;
  color: var(--text-light);
}

.profile-image-wrapper {
  text-align: center;
}

.profile-image {
  width: 280px;
  height: 320px;
  margin: 0 auto;
  background-image: url("../images/hashimoto-portrait.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.profile-name-wrapper {
  margin-top: 1.5rem;
}

.profile-name {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--text-light);
  font-weight: 500;
}

.profile-section-title {
  margin-bottom: 1.5rem;
}

.profile-section-title--primary {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.profile-section-title--secondary {
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.stats-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.stat-number--primary {
  color: var(--primary-color);
}

.stat-number--accent {
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.timeline-box {
  background: white;
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow-light);
}

.timeline-item {
  margin-bottom: 1.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.timeline-badge {
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.timeline-badge--secondary {
  background: var(--secondary-color);
}

.timeline-badge--primary {
  background: var(--primary-color);
}

.timeline-badge--accent {
  background: var(--accent-color);
}

.timeline-title {
  margin: 0;
}

.timeline-title--secondary {
  margin: 0;
  color: var(--secondary-color);
}

.timeline-title--primary {
  margin: 0;
  color: var(--primary-color);
}

.timeline-title--accent {
  margin: 0;
  color: var(--accent-color);
}

.timeline-description {
  margin-left: 2.5rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Support Stance Section */
.card-icon--primary {
  background: var(--primary-color);
}

.card-icon--secondary {
  background: var(--secondary-color);
}

.card-icon--accent {
  background: var(--accent-color);
}

.card-title--small {
  font-size: 1.2rem;
}

.card-text--small {
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-feature-box {
  margin-top: 1rem;
}

.card-feature-content {
  background: var(--bg-light);
  padding: 0.8rem;
  border-radius: 8px;
}

.card-feature-title {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.card-feature-title--primary {
  color: var(--primary-color);
}

.card-feature-title--secondary {
  color: var(--secondary-color);
}

.card-feature-title--accent {
  color: var(--accent-color);
}

.card-feature-list {
  font-size: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-light);
  list-style-type: disc;
}

.card-feature-item {
  margin-bottom: 0.3rem;
}

.card-feature-item:last-child {
  margin-bottom: 0;
}

/* Vision & Values Section */
.vision-title {
  margin-bottom: 2rem;
  white-space: nowrap;
}

.vision-box {
  background: linear-gradient(135deg, var(--bg-light), white);
  padding: 2rem;
  border-radius: 15px;
  border-left: 6px solid var(--primary-color);
  margin-bottom: 2rem;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vision-text--medium {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vision-text--bold {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.vision-strong--primary {
  color: var(--primary-color);
}

.vision-strong--secondary {
  color: var(--secondary-color);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  padding: 30px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-name {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.logo-tagline {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
}

.value-card--primary {
  border-top: 4px solid var(--primary-color);
}

.value-card--secondary {
  border-top: 4px solid var(--secondary-color);
}

.value-card--accent {
  border-top: 4px solid var(--accent-color);
}

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

.value-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.value-icon--primary {
  color: var(--primary-color);
}

.value-icon--secondary {
  color: var(--secondary-color);
}

.value-icon--accent {
  color: var(--accent-color);
}

.value-title {
  margin: 0;
}

.value-title--primary {
  margin: 0;
  color: var(--primary-color);
}

.value-title--secondary {
  margin: 0;
  color: var(--secondary-color);
}

.value-title--accent {
  margin: 0;
  color: var(--accent-color);
}

.value-text {
  color: var(--text-light);
  margin: 0;
}

/* SNS & Case Studies Link */
.link-section {
  text-align: center;
  margin-top: 3rem;
}

.link-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  display: inline-block;
}

.link-title {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

/* CTA Section */
.cta-content-box {
  margin: 2rem 0;
}

.cta-info-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 10px;
}

.cta-info-text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.1rem;
}

.cta-button-large {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
}



/* 追加部分 */


/* ========================================
   Personal Business Page Styles
   ======================================== */
/* ========================================
   Header
   ======================================== */
.personal-business-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 50;
}

.personal-business-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.personal-business-header__logo {
  display: flex;
  align-items: center;
}

.personal-business-header__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.personal-business-header__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personal-business-header__logo-text {
  margin-left: 0.75rem;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  font-weight: 700;
  color: #1f2937;
}

.personal-business-header__nav {
  display: none;
  gap: 2rem;
}

.personal-business-header__nav-link {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.personal-business-header__nav-link:hover {
  color: #9333ea;
}

.personal-business-header__menu-toggle {
  display: block;
  color: #4b5563;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.personal-business-header__mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
/* 追加 */
  display: none !important;
  width: 100%;
  position: relative;
  z-index: 100;
}

.personal-business-header__mobile-menu.show {
  display: block;
/* 	追加 */
	display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.personal-business-header__mobile-menu-inner {
  padding: 0.5rem 1rem;
}

.personal-business-header__mobile-menu-link {
  display: block;
  padding: 0.5rem 0;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.personal-business-header__mobile-menu-link:hover {
  color: #9333ea;
}

@media (min-width: 768px) {
  .personal-business-header__nav {
    display: flex;
  }
  .personal-business-header__menu-toggle {
    display: none;
  }
}
/* ========================================
   Hero Section
   ======================================== */
.personal-business-hero {
  background-image: url("https://page1.genspark.site/v1/base64_upload/cb3e8435439bad44286432d2ae40e854");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.personal-business-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.7);
  z-index: 1;
}

.personal-business-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.personal-business-hero__content {
  width: 100%;
  color: white;
  margin-bottom: 2rem;
}

.personal-business-hero__title {
  font-size: clamp(1.875rem, 1.5rem + 2vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: white;
}

.personal-business-hero__title-highlight {
  color: #fef08a;
}

.personal-business-hero__subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  margin-bottom: 2rem;
  color: #dbeafe;
  line-height: 1.75;
}

.personal-business-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.personal-business-hero__btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personal-business-hero__btn:hover {
  transform: translateY(-2px);
}

.personal-business-hero__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.personal-business-hero__card {
/*   background: rgba(255, 255, 255, 0.1); */
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 28rem;
  margin: 0 auto;
}

.personal-business-hero__card:first-child {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.personal-business-hero__card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.personal-business-hero__card:first-child .personal-business-hero__card-icon {
  color: #22c55e;
}

.personal-business-hero__card:nth-child(2) .personal-business-hero__card-icon {
  color: #ec4899;
}

.personal-business-hero__card:nth-child(3) .personal-business-hero__card-icon {
  color: #3b82f6;
}

.personal-business-hero__card-title {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.personal-business-hero__card-text {
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 0.875rem);
  color: #4b5563;
}

@media (min-width: 640px) {
  .personal-business-hero__buttons {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .personal-business-hero__inner {
    flex-direction: row;
    align-items: center;
  }
  .personal-business-hero__content {
    width: 50%;
    margin-bottom: 0;
  }
  .personal-business-hero__cards {
    width: 50%;
  }
}
/* ========================================
   About Section
   ======================================== */
.personal-business-about {
  padding: 5rem 0;
  background: #f9fafb;
}

.personal-business-about__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.personal-business-about__profile {
  width: 100%;
}

.personal-business-about__profile-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.personal-business-about__profile-image {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.personal-business-about__profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personal-business-about__profile-name {
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.personal-business-about__profile-kana {
  color: #4b5563;
}

.personal-business-about__content {
  width: 100%;
}

.personal-business-about__content-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.personal-business-about__content-title {
  font-size: clamp(1.5rem, 1.3rem + 0.6vw, 1.5rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.personal-business-about__content-text {
  color: #4b5563;
  line-height: 1.75;
}

.personal-business-about__content-text p {
  margin-bottom: 1rem;
}

.personal-business-about__content-highlight {
  background: linear-gradient(to right, #eff6ff, #f3e8ff);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
}

.personal-business-about__content-highlight-text {
  font-weight: 600;
  color: #1f2937;
}

.personal-business-about__content-highlight-note {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .personal-business-about__inner {
    flex-direction: row;
  }
  .personal-business-about__profile {
    width: 33.333%;
  }
  .personal-business-about__content {
    width: 66.666%;
  }
}
/* ========================================
   Service Section
   ======================================== */
.personal-business-service {
  padding: 5rem 0;
  background: white;
}

.personal-business-service__header {
  text-align: center;
  margin-bottom: 4rem;
}

.personal-business-service__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.personal-business-service__title-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.personal-business-service__title-line {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  margin: 0 auto 2rem;
}

.personal-business-service__description {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

.personal-business-service__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.personal-business-service__card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personal-business-service__card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.personal-business-service__card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.personal-business-service__card-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}

.personal-business-service__card-icon--green {
  background: #dcfce7;
  color: #22c55e;
}

.personal-business-service__card-icon--pink {
  background: #fce7f3;
  color: #ec4899;
}

.personal-business-service__card-icon--blue {
  background: #dbeafe;
  color: #3b82f6;
}

.personal-business-service__card-icon--red {
  background: #fee2e2;
  color: #ef4444;
}

.personal-business-service__card-icon--purple {
  background: #f3e8ff;
  color: #a855f7;
}

.personal-business-service__card-icon--yellow {
  background: #fef9c3;
  color: #eab308;
}

.personal-business-service__card-title {
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  font-weight: 700;
  color: #1f2937;
}

.personal-business-service__card-subtitle {
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 0.875rem);
  color: #6b7280;
  margin-top: 0.25rem;
}

.personal-business-service__card-list {
  color: #4b5563;
  list-style: none;
  padding: 0;
  margin: 0;
}

.personal-business-service__card-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.personal-business-service__card-list i {
  color: #22c55e;
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .personal-business-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .personal-business-service__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ========================================
   Achievement Section
   ======================================== */
.personal-business-achievement {
  padding: 5rem 0;
  background: #f9fafb;
}

.personal-business-achievement__header {
  text-align: center;
  margin-bottom: 4rem;
}

.personal-business-achievement__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.personal-business-achievement__title-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.personal-business-achievement__title-line {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  margin: 0 auto;
}

.personal-business-achievement__content {
  max-width: 64rem;
  margin: 0 auto;
}

.personal-business-achievement__card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.personal-business-achievement__card-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.personal-business-achievement__stats {
  width: 100%;
}

.personal-business-achievement__stats-box {
  background: linear-gradient(to bottom right, #3b82f6, #9333ea);
  border-radius: 1rem;
  padding: 1.5rem;
  color: white;
  text-align: center;
}

.personal-business-achievement__stats-box i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.personal-business-achievement__stats-title {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.personal-business-achievement__stats-period {
  font-size: clamp(1.5rem, 1.3rem + 0.6vw, 1.875rem);
  font-weight: 700;
  color: #fef08a;
}

.personal-business-achievement__stats-number {
  font-size: clamp(2rem, 1.5rem + 1vw, 2.5rem);
  font-weight: 700;
}

.personal-business-achievement__stats-change {
  margin-top: 1rem;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
}

.personal-business-achievement__stats-change-old {
  text-decoration: line-through;
  color: #d1d5db;
}

.personal-business-achievement__stats-change-arrow {
  margin: 0 0.5rem;
}

.personal-business-achievement__stats-change-new {
  color: #fef08a;
  font-weight: 700;
}

.personal-business-achievement__details {
  width: 100%;
}

.personal-business-achievement__details-title {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.875rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.personal-business-achievement__details-highlight {
  color: #2563eb;
}

.personal-business-achievement__details-text {
  color: #4b5563;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.personal-business-achievement__details-link {
  color: #2563eb;
  text-decoration: underline;
}

.personal-business-achievement__details-link:hover {
  text-decoration: none;
}

.personal-business-achievement__details-bold {
  font-weight: 700;
  color: #2563eb;
}

.personal-business-achievement__details-list {
  background: #eff6ff;
  border-radius: 1rem;
  padding: 1.5rem;
}

.personal-business-achievement__details-list-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.personal-business-achievement__details-list-items {
  color: #4b5563;
  list-style: none;
  padding: 0;
  margin: 0;
}

.personal-business-achievement__details-list-items li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.personal-business-achievement__details-list-items i {
  color: #3b82f6;
  margin-right: 0.5rem;
}

@media (min-width: 1024px) {
  .personal-business-achievement__card-inner {
    flex-direction: row;
  }
  .personal-business-achievement__stats {
    width: 50%;
  }
  .personal-business-achievement__details {
    width: 50%;
  }
}
/* ========================================
   Contact Section
   ======================================== */
.personal-business-contact {
  padding: 5rem 0;
  background: white;
}

.personal-business-contact__header {
  text-align: center;
  margin-bottom: 4rem;
}

.personal-business-contact__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.personal-business-contact__title-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.personal-business-contact__title-line {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  margin: 0 auto;
}

.personal-business-contact__content {
  max-width: 64rem;
  margin: 0 auto;
}

.personal-business-contact__main {
  background: linear-gradient(to bottom right, #4ade80, #22c55e);
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.personal-business-contact__main-inner {
  margin-bottom: 2rem;
}

.personal-business-contact__main-inner i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.personal-business-contact__main-title {
  font-size: clamp(1.5rem, 1.3rem + 0.6vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #dcfce7;
}

.personal-business-contact__main-text {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  color: #dcfce7;
  margin-bottom: 2rem;
}

.personal-business-contact__main-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.personal-business-contact__main-button {
  background: white;
  color: #22c55e;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.personal-business-contact__main-button:hover {
  background: #f3f4f6;
}

.personal-business-contact__main-button i {
  font-size: 1.5rem;
}

.personal-business-contact__main-hours {
  color: #dcfce7;
  font-size: clamp(0.875rem, 0.8rem + 0.2vw, 0.875rem);
}

.personal-business-contact__main-hours p {
  margin-bottom: 0.25rem;
  color: #dcfce7;
}

.personal-business-contact__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.personal-business-contact__cta-card {
  background: #eff6ff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.personal-business-contact__cta-card:nth-child(2) {
  background: #faf5ff;
}

.personal-business-contact__cta-title {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.personal-business-contact__cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.personal-business-contact__cta-button:hover {
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .personal-business-contact__main-buttons {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .personal-business-contact__cta {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ========================================
   Footer
   ======================================== */
.personal-business-footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0;
}

.personal-business-footer__inner {
  text-align: center;
}

.personal-business-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.personal-business-footer__logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.75rem;
}

.personal-business-footer__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personal-business-footer__logo-text {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  font-weight: 700;
}

.personal-business-footer__description {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.personal-business-footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.personal-business-footer__social-link {
  color: #9ca3af;
  font-size: 1.5rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.personal-business-footer__social-link:hover {
  color: #22c55e;
}

.personal-business-footer__social-link:nth-child(2):hover {
  color: #60a5fa;
}

.personal-business-footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
}

.personal-business-footer__bottom p {
  color: #9ca3af;
}

/* ========================================
   Back to Top Button
   ======================================== */
.personal-business-back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  color: white;
  padding: 0.75rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  display: none;
}

.personal-business-back-to-top.show {
  display: block;
}

.personal-business-back-to-top:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Button Styles
   ======================================== */
.page-id-71 .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-id-71 .btn-secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.btn-white {
  background: white;
}

/* ========================================
   Smooth Scroll
   ======================================== */
html {
  scroll-behavior: smooth;
}




/* ========================================
   Responsive Design
======================================== */
/* Responsive Break Classes */
.br-pc {
  display: inline;
}

/* Tablet Portrait and Landscape */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .column-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  /* Contact page adjustments */
  .form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Tablet Landscape - Header Navigation Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .nav-link {
    font-size: 0.875rem;
    white-space: nowrap;
  }
  .nav-contact {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }
  .nav-cta {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }
  .logo img {
    height: 36px;
  }
}
/* Tablet Portrait */
@media (max-width: 768px) {
  /* Hide PC-specific line breaks on mobile */
  .br-pc {
    display: none;
  }
  /* Navigation */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    gap: 1rem;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-menu .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .nav-menu .nav-contact,
  .nav-menu .nav-cta {
    width: 100%;
    padding: 0.75rem 1.5rem;
    text-align: center;
    margin: 0.5rem 0;
    box-sizing: border-box;
  }
  .menu-toggle {
    display: flex;
  }
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .hero p {
    font-size: 1.1rem;
  }
  /* Layouts */
  .section {
    padding: 60px 0;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  /* Cards */
  .card {
    padding: 1.5rem;
  }
  .case-results {
    flex-direction: column;
    gap: 0.5rem;
  }
  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-logo img {
    height: 32px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .footer-nav .footer-cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  /* Blog specific */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .featured-content {
    grid-template-columns: 1fr;
  }
  /* Case studies specific */
  .case-detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .filter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .modal-content {
    margin: 1rem;
    max-height: 85vh;
  }
  /* Contact form */
  .consultation-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  /* Blog page responsive */
  .filter-tabs {
    gap: 0.75rem;
  }
  .filter-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .column-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .column-image {
    height: 200px;
  }
  .column-title {
    font-size: 1.1rem;
  }
  .pagination {
    flex-direction: column;
    gap: 1rem;
  }
  .pagination-btn {
    width: 100%;
    justify-content: center;
  }
  /* Article detail responsive */
  .article-title {
    font-size: 1.8rem;
  }
  .article-intro {
    padding: 1.5rem;
  }
  .article-section {
    padding: 1.5rem;
  }
  .article-section h2 {
    font-size: 1.4rem;
  }
  .data-table {
    font-size: 0.85rem;
  }
  .data-table th,
  .data-table td {
    padding: 0.6rem;
  }
  /* Download page responsive */
  .download-container {
    padding: 2rem 1.5rem;
  }
  .download-container h1 {
    font-size: 1.5rem;
  }
  .download-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  /* Services page responsive */
  .whitepaper-title {
    font-size: 1.5rem;
  }
}
/* Mobile Landscape */
@media (max-width: 640px) {
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav {
    padding: 0.75rem 0;
  }
  .logo {
    font-size: 1.3rem;
  }
  /* Form improvements */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
/* Small Mobile - 560px and below */
@media (max-width: 560px) {
  /* About page responsive */
  .vision-title {
    white-space: normal;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  .vision-box {
    padding: 1.25rem;
  }
  .vision-text,
  .vision-text--medium,
  .vision-text--bold {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  .logo-circle {
    width: clamp(100px, 30vw, 150px);
    height: clamp(100px, 30vw, 150px);
    padding: clamp(15px, 3vw, 25px);
  }
  .logo-name {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .logo-tagline {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
  }
}
/* Mobile Portrait */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .stat-item h3 {
    font-size: 2rem;
  }
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  /* Navigation adjustments */
  .nav-menu {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .nav-menu .nav-link {
    padding: 0.75rem 1rem;
  }
  .nav-menu .nav-contact,
  .nav-menu .nav-cta {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  /* Blog category buttons */
  .blog-category-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .blog-category-btn,
  .filter-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  /* Modal improvements */
  .modal.active {
    padding: 1rem;
  }
  .modal-content {
    margin: 0;
    max-height: 90vh;
    border-radius: 10px;
  }
  /* Footer adjustments */
  .footer {
    padding: 40px 0 20px;
  }
  .footer-section {
    text-align: center;
  }
  .footer-nav {
    align-items: center;
  }
  .footer-nav .footer-cta {
    width: 100%;
    max-width: 300px;
  }
  /* Contact page adjustments */
  .consultation-info {
    padding: 2rem 0;
  }
  .info-card {
    padding: 1.5rem;
  }
  /* About page profile */
  .case-detail-grid,
  .grid-2 {
    text-align: center;
  }
  /* Blog page mobile */
  .filter-tabs {
    gap: 0.5rem;
  }
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  .column-content {
    padding: 1.25rem;
  }
  .column-title {
    font-size: 1rem;
  }
  .column-excerpt {
    font-size: 0.9rem;
  }
  /* About page responsive */
  .vision-title {
    white-space: normal;
    font-size: 1.75rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  .vision-box {
    padding: 1rem;
  }
  .vision-text,
  .vision-text--medium,
  .vision-text--bold {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }
  .logo-circle {
    width: clamp(90px, 28vw, 140px);
    height: clamp(90px, 28vw, 140px);
    padding: clamp(12px, 2.5vw, 20px);
  }
  .logo-name {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  }
  .logo-tagline {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
}
/* Extra small mobile */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .section {
    padding: 40px 0;
  }
  .hero {
    padding: 80px 0 40px;
  }
  .card,
  .case-card,
  .blog-card {
    padding: 1rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .stat-item h3 {
    font-size: 1.5rem;
  }
}
/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 60px 0 40px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section {
    padding: 40px 0;
  }
}
/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .card-icon,
  .logo i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* reCAPTCHAバッチを非表示 */
.grecaptcha-badge { visibility: hidden; }

/* パーソナルビジネスページのみデフォルトフッターを非表示 */
.page-id-71 .footer {
	display: none;
}
.personal-business-footer {
	display: block !important;
}