/*
Theme Name: NEORIVA - Japanese Modern
Theme URI: https://neoriva.com
Author: NEORIVA Development Team
Description: A minimalist and trustworthy theme for Japanese professionals.
Version: 2.1.0
*/



:root {
  /* Colors - Advanced Japanese Modern Palette */
  --color-bg: #fcfcfc; /* Warm Off-white */
  --color-bg-alt: #f0f2f5; /* Light Cool Grey */
  --color-bg-dark: #0f1520; /* Deep Navy Black (Kachi-iro) */
  
  --color-primary: #0f2a4a; /* Deep Trust Navy */
  --color-primary-light: #1e3a5f; /* Lighter shade for gradients */
  --color-accent: #2563eb;  /* Vivid Blue for active states */
  --color-accent-light: #eff6ff;
  
  --color-text: #1a202c; /* Sharp Black */
  --color-text-light: #ffffff;
  --color-text-sub: #4a5568; /* Cool Grey text */
  --color-border: #e2e8f0;

  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --blur-amount: 12px;

  /* Typography */
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;

  /* Spacing */
  --header-height: 80px;
  --container-width: 1240px; /* Slightly wider */
  --section-padding: clamp(80px, 10vw, 120px); /* More breathing room */
  
  /* Effects */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.08); /* Smoother shadow */
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12);
  
  --radius-sm: 6px;
  --radius-md: 12px; /* Modern rounded corners */
  --radius-lg: 24px;
  
  /* Animation Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 50% 0%, #f1f5f9 0%, transparent 75%);
  color: var(--color-text);
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

p {
  margin: 0 0 1.5rem 0;
  color: var(--color-text-sub);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.en-font {
  font-family: var(--font-en);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  z-index: 1;
  text-transform: uppercase;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(15, 42, 74, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 42, 74, 0.4);
  background-color: var(--color-primary-light);
}

.btn-outline {
  background: white;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-out-expo);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-amount));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
  height: 70px;
  background: var(--glass-bg);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.site-nav {
  display: none; /* Hidden by default (Mobile) */
}

.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-list a {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  letter-spacing: 0.08em;
  padding: 5px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-cta {
  display: none; /* Hidden by default (Mobile) */
  padding: 12px 25px;
  font-size: 0.85rem;
}

.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

.mobile-header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: none;
    transition: opacity 0.3s ease;
}

.mobile-header-cta .icon {
    display: block;
    width: 28px;
    height: 18px;
    border: 2px solid var(--color-text);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.mobile-header-cta .icon::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--color-text);
    border-right: 2px solid var(--color-text);
    transform: translateX(-50%) rotate(45deg);
}



.mobile-header-cta:hover {
    background: none;
    border: none;
    opacity: 0.7;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 5%;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after { transform: rotate(-45deg); }

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background-color: var(--color-primary);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(7) { transition-delay: 0.4s; } 
.mobile-nav-overlay.active .mobile-nav li:nth-child(8) { transition-delay: 0.45s; }
.mobile-nav-overlay.active .mobile-nav li:nth-child(9) { transition-delay: 0.5s; }

.mobile-nav a {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  margin-bottom: 70px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 15px auto 0;
  transition: width 0.8s var(--ease-out-expo);
  border-radius: 2px;
}

.section.visible .section-title::after {
  width: 80px;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-en);
}

/* Hero Section (Base - PC) - SLIDESHOW VERSION */
.hero-section {
  min-height: 90vh; /* Restore to high height for PC */
  height: 100svh; /* Use SVH if supported */
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: var(--color-bg);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  right: 0; /* Anchor to right */
  left: auto; /* Not full width by default on PC */
  width: 100%; /* Image takes right 60% */
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Slideshow Logic preserved in new layout */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0; 
  animation: heroSlideshow 12s infinite; /* Slideshow! */
  position: absolute; /* Needed for multiple images overlapping */
  top: 0;
  left: 0;
}

/* Optimize LCP: First image visible immediately */
.hero-bg-image:first-child {
  opacity: 1;
  animation-name: heroSlideshowFirst;
}

.hero-bg-image:nth-child(2) {
  animation-delay: 6s;
}

@keyframes heroSlideshow {
  0% { opacity: 0; transform: scale(1.1); }
  5% { opacity: 1; transform: scale(1); }
  45% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

@keyframes heroSlideshowFirst {
  0% { opacity: 1; transform: scale(1.1); }
  5% { opacity: 1; transform: scale(1); }
  45% { opacity: 1; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.1); }
}

.hero-bg-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 45%; /* Restrict width */
  margin-left: auto; /* Push to right */
  margin-right: 5vw; /* Right padding based on viewport */
  padding: 40px; /* Internal spacing for the card */
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent white card */
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-title {
  font-size: 2.5vw; /* Scale with viewport width */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.hero-desc {
  font-size: 1.2vw; /* Scale desc too */
  color: var(--color-text);
  margin-bottom: 3rem;
  line-height: 2;
  font-weight: 500;
}

/* About Section */
/* Concept (About) Section */
.about-section {
  position: relative;
  background-color: #fff;
  overflow: hidden; /* For the diagonal line */
}

/* Container for relative positioning of line */
.relative-container {
  position: relative;
}

/* Decorative Line Animation - Top-Left to Bottom-Right */
.concept-decoration-line {
    position: absolute;
    left: -20%;
    top: 300px; /* Lowered to avoid text overlap */
    width: 200%;
    height: 1px;
    background-color: var(--color-border);
    transform-origin: left center;
    transform: rotate(25deg) scaleX(0); /* Descending angle */
    animation: drawConceptLine 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
    transition: transform 1.5s ease;
    z-index: 1; /* Behind content */
}

@keyframes drawConceptLine {
    0% { transform: rotate(25deg) scaleX(0); opacity: 0; }
    100% { transform: rotate(25deg) scaleX(1); opacity: 1; }
}

.about-content {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

/* Split Layout for PC */
.concept-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Left (Title) vs Right (Body) */
    gap: 80px;
    align-items: flex-start;
}

.concept-left {
    position: sticky;
    top: 100px; /* Sticky effect if right side is long */
}

.concept-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: #aaa; /* De-emphasized */
    margin-bottom: 2rem;
    font-family: var(--font-en);
}

.concept-copy {
    font-family: var(--font-jp);
    font-size: clamp(3rem, 4vw, 4.3rem); /* Huge text */
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 0; /* Margin handled by grid gap usually, but safe to keep 0 here */
    letter-spacing: -0.02em;
}

/* Right side content */
.concept-body {
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    color: #555;
}

/* Remove old grid */
.about-grid, .about-image-wrapper {
    display: none;
}

/* Parallax Divider */
.parallax-divider {
    width: 100%;
    height: 50vh; /* Visible height */
    background-image: url('assets/images/top-concept-fixed-bg.webp');
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
/* Mobile tweak: background-attachment: fixed can be buggy on some mobiles.
   Often replaced by scroll or a pseudo-element method. 
   For simplicity, we keep it or can reset to scroll on mobile if issues arise. */

.values-list {
  margin-top: 3.5rem;
  display: grid;
  gap: 30px;
}

.value-item {
  border-left: 3px solid var(--color-border);
  padding-left: 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.value-item:hover {
  border-left-color: var(--color-primary);
  padding-left: 30px;
  background: linear-gradient(90deg, rgba(244, 245, 247, 0.5) 0%, transparent 100%);
}

.value-num {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-sub);
  display: block;
  margin-bottom: 5px;
}

.value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  margin: 0;
  line-height: 1.8;
}

/* Service Section */
.service-section {
  background-color: var(--color-bg-alt);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.8);
}

.service-img-container {
  height: 220px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-body {
  padding: 35px 30px;
  flex-grow: 1;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.service-text {
  color: var(--color-text-sub);
  font-size: 0.95rem;
  line-height: 1.9;
}

/* Works Section */
.works-section {
  background-color: var(--color-bg);
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.work-item {
  cursor: pointer;
}

.work-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.work-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.work-item:hover .work-thumb img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 29, 38, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.view-project-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.work-item:hover .view-project-btn {
  transform: translateY(0);
  opacity: 1;
}

.work-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.work-item:hover .work-info h3 {
  color: var(--color-primary);
}

.work-cat {
  color: var(--color-text-sub);
  font-size: 0.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5px;
}

/* Flow Section */
.flow-section {
  background-color: var(--color-bg);
}

.flow-container {
  max-width: 900px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 40px;
}

.flow-step:last-child {
  padding-bottom: 0;
}

/* Vertical Line */
.flow-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--color-border);
  z-index: 0;
}

.flow-step:last-child::before {
  display: none;
}

.flow-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  box-shadow: 0 0 0 5px var(--color-bg-alt); /* Mask line */
}

.flow-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.flow-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.flow-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-content .en-title {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-sub);
  opacity: 0.7;
}

.flow-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

/* Profile Section */
.profile-section {
  background-color: var(--color-bg-alt);
}

.profile-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-image {
  flex: 0.7;
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  border-radius: 56% 44% 73% 27% / 37% 65% 35% 63%;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-content {
  flex: 1.2;
}

.message-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  border-left: 5px solid var(--color-accent);
  padding-left: 20px;
}

.profile-signature {
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: right;
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.profile-role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-sub);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.profile-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
}

.profile-text {
  margin-bottom: 2rem;
  text-align: justify;
  line-height: 2.2;
}

.profile-bio-wrapper {
  background: var(--color-bg-alt);
  padding: 30px;
  border-radius: var(--radius-sm);
}

.profile-bio-wrapper h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
  display: inline-block;
}

.profile-bio-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.profile-bio-table th, .profile-bio-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  vertical-align: top;
}

.profile-bio-table tr:last-child th, .profile-bio-table tr:last-child td {
  border-bottom: none;
}

.profile-bio-table th {
  width: 90px;
  color: var(--color-text-sub);
  font-weight: 600;
  white-space: nowrap;
}

/* Voice (Testimonials) */
.voice-section {
  background-color: var(--color-bg);
}

.voice-top-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.voice-visual {
  position: relative;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.voice-visual img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.voice-top-area .section-header {
  text-align: left;
  margin: 0;
  max-width: 100%;
}

.voice-top-area .section-title::after {
  margin: 10px 0 0 0;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  border-top: 4px solid var(--color-primary);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.8);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--color-border);
  line-height: 1;
  font-family: serif;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 25px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eee;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.client-role {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  margin-top: 2px;
}

/* Pricing */
.pricing-section {
  background-color: var(--color-bg-alt);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: white;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}

.price-card:hover { box-shadow: var(--glass-shadow); transform: translateY(-8px); }
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.plan-badge {
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
}

.price-header h3 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.price-header .desc {
  font-size: 0.85rem;
  color: var(--color-text-sub);
}

.price-amount {
  margin: 25px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-en);
}

.unit {
  font-size: 0.9rem;
  color: var(--color-text-sub);
}

.campaign-note {
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-top: 5px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.feature-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-sub);
}

.feature-list li::before {
  content: "✔";
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Contact */
.contact-section {
  background: var(--color-bg-dark);
  color: #fff;
  padding-bottom: 100px;
}

.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(255,255,255,0.7); }
.contact-section p { color: rgba(255,255,255,0.8); }

.contact-wrapper {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px; /* Limit width */
  margin: 0 auto;   /* Center horizontally */
}

.contact-info-panel {
  background: #232d3b;
  padding: 60px 40px;
  color: #fff;
}

.contact-info-item { margin-bottom: 40px; }

.contact-info-item h4 {
  font-family: var(--font-en);
  font-size: 1rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.contact-form-panel {
  padding: 60px 50px;
  background: #fff;
  color: var(--color-text);
}

.form-group { margin-bottom: 30px; }
.form-group label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-group label .required-mark {
  color: #e74c3c;
  margin-left: 5px;
  font-size: 1rem;
  line-height: 1;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--font-base);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 42, 74, 0.1);
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

/* Force Turnstile to Bottom */
.wpcf7-form {
  display: flex;
  flex-direction: column;
}

.wpcf7-form > * {
  order: 1; /* Default order for all regular fields */
}

/* Specific classes often used by Cloudflare Turnstile plugins for CF7 */
.wpcf7-turnstile,
.cf-turnstile,
.simple-turnstile-wrapper,
[data-callback="wpcf7TurnstileCallback"] {
  order: 99 !important; /* Move to very bottom */
  margin-top: 20px;
  margin-bottom: 20px;
  align-self: left; /* Center align the widget */
}

.wpcf7-submit,
.wpcf7-submit-wrapper {
  order: 50; /* Submit button above Turnstile? Or below? Turnstile is usually checked BEFORE submit. */
  /* User requested "Turnstile mark... to the bottom". Usually this means below fields, maybe above submit? */
  /* If user wants it at the very bottom (Footer-ish), then order: 99. If above submit, submit needs order: 100. */
}

/* Correcting assumption: User wants it "at the bottom" meaning NOT at the top which is current behavior. */
/* Normally: Fields -> Turnstile -> Submit. */
/* If current is: Turnstile -> Fields -> Submit. */
/* We want: Fields -> Turnstile -> Submit (or Fields -> Submit -> Turnstile???) */
/* Safe bet: Order 90 for Turnstile, Order 100 for Submit button. */

.wpcf7-submit { order: 100; } 
.wpcf7-turnstile, .cf-turnstile { order: 90 !important; }


/* Footer */
.site-footer {
  background: #111;
  color: #888;
  padding: 60px 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-address {
  margin-top: 15px;
  font-size: 0.9rem;
}

.footer-address p {
  color: inherit;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a:hover { color: #fff; }

.copyright {
  margin-top: 30px;
  opacity: 0.5;
  font-size: 0.75rem;
  font-family: var(--font-en);
}

/* Blog Section */
.blog-section { background-color: var(--color-bg); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.blog-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(255, 255, 255, 0.8);
}

.blog-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1;
}

.blog-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--color-text-sub);
}

.blog-date { font-family: var(--font-en); }
.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title { color: var(--color-primary); }

/* Q&A Section */
.qa-section { background-color: var(--color-bg-alt); }
.qa-container { max-width: 800px; }
.qa-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qa-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.qa-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.8);
}

.qa-question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.qa-q-mark {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-right: 20px;
  flex-shrink: 0;
}

.qa-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-right: 30px;
  flex-grow: 1;
  line-height: 1.5;
}

.qa-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.qa-icon::before, .qa-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-primary);
  transition: transform 0.3s ease;
}

.qa-icon::before { width: 100%; height: 2px; transform: translate(-50%, -50%); }
.qa-icon::after { height: 100%; width: 2px; transform: translate(-50%, -50%); }

.qa-item.active .qa-icon::after {
  transform: translate(-50%, -50%) rotate(90deg); 
  opacity: 0;
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
  background-color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid transparent;
}

.qa-item.active .qa-answer { border-top-color: var(--glass-border); }
.qa-answer-inner { padding: 0 30px 30px 75px; }

/* Article Page */
.article-header-section {
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.article-category {
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.article-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-date {
    font-family: var(--font-en);
    color: var(--color-text-sub);
    font-size: 0.95rem;
}

.article-thumbnail {
    width: 100%;
    max-width: 1000px;
    margin: -40px auto 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-primary);
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--color-accent);
    padding-left: 15px;
}

.article-content p { margin-bottom: 2rem; }
.article-content ul, .article-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    background: var(--color-bg-alt);
    padding: 30px 30px 30px 50px;
    border-radius: var(--radius-sm);
}

.article-content li { margin-bottom: 10px; }

.article-footer {
    border-top: 1px solid var(--color-border);
    margin-top: 80px;
    padding-top: 40px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-sub);
    font-weight: 500;
    margin-bottom: 20px;
}

.back-link:hover { color: var(--color-primary); }
.back-link svg { margin-right: 8px; }

/* Utilities */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-text);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-primary); transform: translateY(-4px); }


/*
========================================
   CONSOLIDATED MEDIA QUERIES (2 BLOCKS)
========================================
*/

/* ----------------------------------------------------
   1. DESKTOP / PC MODE (min-width: 1101px)
   - Layouts: Horizontal / Grid (3+ cols)
   - Navigation: Visible Desktop Menu
   - Hero: PC Horizontal Layout
---------------------------------------------------- */
@media (min-width: 1101px) {
  /* Navigation & Header */
  .site-nav { display: block; margin-left: auto; margin-right: 40px; }
  .header-cta { display: inline-flex; }
  .mobile-header-cta { display: none; }
  .mobile-menu-toggle { display: none; }
  
  /* Grids (Using auto-fit for fluid responsiveness above breakpoint) */
  /* Grids (Using auto-fit for fluid responsiveness above breakpoint) */
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .works-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
  .voice-top-area { grid-template-columns: 0.8fr 1.2fr; gap: 80px; }
  .voice-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .pricing-cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .contact-wrapper { /* grid-template-columns: 1fr 1.5fr; removed for single column */ }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  
  /* Flow Section: Horizontal Steps */
  .flow-step { flex-direction: row; align-items: flex-start; padding-bottom: 60px; }
  .flow-step::before { left: 40px; }
  .flow-num { width: 80px; height: 80px; font-size: 1.8rem; margin-right: 40px; margin-bottom: 0; }
  .flow-content::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
  }
  
  /* Profile: Horizontal */
  .profile-wrapper { flex-direction: row; align-items: center; gap: 80px; }
}

/* ----------------------------------------------------
   2. MOBILE / TABLET MODE (max-width: 1100px)
   - Layouts: Vertical Stack / Fluid Grids (1-2 cols)
   - Navigation: Hamburger Menu
   - Hero: Vertical Stack
   - Spacing: Reduced
---------------------------------------------------- */
@media (max-width: 1100px) {
  /* -- Fluid Spacing -- */
  .container { 
    /* clamp(20px, 4vw, 32px) scales padding from 20px (at small screens) to 32px (at 1100px) */
    padding: 0 clamp(20px, 4vw, 32px); 
  }
  
  /* -- Hero Section: Vertical Stack -- */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;     /* Center horizontally */
    justify-content: center; /* Center vertically */
    height: 100svh;
    position: relative;
  }
  .hero-bg-wrapper {
    position: absolute; /* Ensure background stays behind */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  /* Static Site Slideshow Logic Override (Ensure Image Covers) */
  .hero-bg-image { 
    object-position: left center; /* Left align as requested */
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    /* Remove fixed sizing -> Fit content */
    width: auto;
    height: auto;
    min-width: auto;
    max-width: 90%;   /* Prevent overflow */
    
    padding: 6vw 8vw; /* Responsive padding */
    margin: 0;        /* Flex centers it */
    
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align children */
    justify-content: center;
    text-align: left;        /* Left align text */
    
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }
  
  .hero-title {
    /* Responsive font size: min 1.2rem, pref 6vw, max 3rem */
    font-size: clamp(1.2rem, 4.5vw, 2.4rem) !important;
    line-height: 1.4;
    text-shadow: none;
    margin-bottom: 1.5rem;
    padding: 0;
    width: 100%;
    white-space: normal; /* Allow wrapping if needed */
  }
  
  .hero-desc { 
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); 
    width: 100%;
  }
  
  .hero-actions { 
    display: flex !important;
    justify-content: flex-start; /* Left align buttons */
    gap: 15px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .hero-actions a {
    margin-left: 0 !important;
    font-size: 0.9rem;
    padding: 0.8em 1.5em;
  }
  
  /* -- Grids: Fluid 1-2 Columns without specific breakpoint -- */
  /* minmax(300px, 1fr) ensures 1 column on mobile, 2 columns on tablet if space permits */
  .service-grid,
  .works-grid,
  .voice-grid,
  .pricing-cards,
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Slightly smaller min-width to allow 2 cols on narrow tablets */
  }
  
  /* -- Component Adjustments -- */
  .contact-info-panel,
  .contact-form-panel { 
    padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px); 
  }
  
  .profile-image { 
    flex: none; 
    width: 100%; 
    max-width: 400px;
    margin: 0 auto;
  }
  
  .qa-question { padding: 20px; }
  .qa-title { font-size: 0.95rem; }
  .qa-q-mark { margin-right: 15px; }
  .qa-answer-inner { padding: 0 20px 25px 20px; }
  .service-body { padding: 25px 20px; }
  
  /* Concept Mobile Adjustments */
  .about-content { padding: 60px 0; }
  .concept-decoration-line { bottom: auto; top: 180px; transform: rotate(15deg) scaleX(1); } /* Lowered for mobile */
  .concept-grid-layout { display: flex; flex-direction: column; gap: 40px; }
  .concept-left { position: static; margin-bottom: 20px; }
  .concept-copy { font-size: 2.5rem; }
  
  /* Reset parallax on mobile if needed for performance/support */
  .parallax-divider {
      display: none; /* Hide on mobile as requested */
  }
}

@media (max-width: 500px) {
  .mobile-break-500 {
    display: block;
  }
  .mobile-break-500-inline {
    display: inline;
  }
}

@media (min-width: 501px) {
  .mobile-break-500 {
    display: none;
  }
  .mobile-break-500-inline {
    display: none;
  }
}

/* Profile Signature Alignment */
.profile-signature {
  display: block;
  /* Keep default width (100%) so border stretches */
}

.profile-signature-inner {
  display: block;
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
