/* ============================================
   BINS sign Landing Page - Stylesheet
   Salon's New Standard
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --brown-900: #0f172a;
  --brown-800: #1e293b;
  --brown-700: #334155;
  --brown-600: #475569;
  --brown-500: #64748b;
  --brown-400: #94a3b8;
  --brown-300: #cbd5e1;
  --brown-200: #e2e8f0;
  --brown-100: #f1f5f9;
  --brown-50:  #f8fafc;

  --cream-100: #f1f5f9;
  --cream-50:  #f8fafc;
  --cream-white: #ffffff;

  --gold-500: #b48b2d;
  --gold-400: #d4af37;
  --gold-300: #e5c965;
  --gold-glow: rgba(212, 175, 55, 0.15);

  --green-accent: #4a8c5c;
  --green-light: #e8f5e9;

  --red-accent: #c74040;
  --red-light: #fde8e8;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --text-white: #ffffff;
  --text-brown: var(--brown-700);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 40px rgba(180, 139, 45, 0.15);

  /* Typography */
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-serif: 'Playfair Display', 'Noto Serif JP', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 clamp(20px, 5vw, 60px);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--cream-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

/* ---------- Section Title ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-400);
  padding: 6px 18px;
  border: 1.5px solid var(--brown-200);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brown-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-brown { color: var(--brown-700); }

.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline; }
  .hero-title-main { 
    display: block; 
    text-align: left; 
    font-size: 13vw; 
    line-height: 1.1; 
    margin: 16px 0 24px; 
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5)); 
  }
  .mobile-amp {
    display: inline-block;
    font-size: 8vw;
    color: var(--gold-300);
    margin: 0 4px;
    font-family: var(--font-serif);
    font-style: italic;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.legacy-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.header-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-white);
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.header.scrolled .header-logo {
  color: var(--brown-800);
}

.header-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-400), var(--brown-400));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  font-weight: 900;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.header.scrolled .header-nav a {
  color: var(--text-secondary);
}

.header-nav a:hover {
  color: var(--gold-400);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width var(--transition-fast);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--brown-600), var(--brown-700)) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.header-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(51, 65, 85, 0.35) !important;
}

.header-cta::after {
  display: none !important;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: var(--transition-fast);
}

.header.scrolled .mobile-menu-toggle span {
  background: var(--brown-800);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--brown-800);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: var(--brown-800);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease-out);
}


.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-300);
  margin-bottom: 12px;
  animation: fadeInDown 0.8s var(--ease-out) 0.1s both;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 12px;
  animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero-title .highlight {
  display: inline;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-main {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s var(--ease-out) 0.3s both;
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 2;
  margin-bottom: 40px;
  background: rgba(15, 23, 42, 0.75);
  padding: 16px 24px;
  margin-left: -24px;
  border-radius: var(--radius-md);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  width: fit-content;
  animation: fadeInDown 0.8s var(--ease-out) 0.4s both;
}
.hero-description strong {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(255,255,255,0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown-600), var(--brown-800));
  color: white;
  box-shadow: 0 4px 20px rgba(51, 65, 85, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(51, 65, 85, 0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: white;
  box-shadow: 0 4px 20px rgba(180, 139, 45, 0.35);
  font-size: 1.05rem;
  padding: 18px 44px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(180, 139, 45, 0.5);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-400);
  box-shadow: inset 0 0 0 2px var(--gold-400);
  font-size: 1.05rem;
  padding: 18px 44px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-gold-outline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-gold-outline:hover {
  color: white;
  box-shadow: 0 8px 30px rgba(180, 139, 45, 0.5);
  transform: translateY(-3px);
}

.btn-gold-outline:hover::before {
  opacity: 1;
}

/* ============================================
   FEATURES BAR (3 icons)
   ============================================ */
.features-bar {
  background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
  padding: 48px 0;
  position: relative;
}

.features-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--brown-300), var(--gold-400));
}

.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-bar-item {
  text-align: center;
  color: white;
  position: relative;
}

.feature-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.feature-bar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.feature-bar-item:hover .feature-bar-icon {
  transform: scale(1.1) translateY(-4px);
  background: rgba(212, 175, 55, 0.2);
}

.feature-bar-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-bar-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FUNCTIONS SECTION (2縺､縺ｮ讖溯・)
   ============================================ */
.functions {
  padding: var(--section-padding);
  background: var(--cream-50);
}

.functions-header {
  text-align: center;
  margin-bottom: 72px;
}

.functions-header .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-700);
  background: linear-gradient(135deg, var(--brown-100), var(--brown-50));
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid var(--brown-200);
}

/* Function Card */
.function-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.function-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.function-card-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.function-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brown-200);
  line-height: 1;
  margin-bottom: 8px;
}

.function-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.function-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--brown-300));
  border-radius: 2px;
}

.function-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.9;
}

.function-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.function-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.function-point-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green-accent), #5aa76a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  margin-top: 3px;
}

.function-merit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--brown-50), var(--cream-100));
  border: 1px solid var(--brown-100);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--brown-700);
  font-weight: 600;
}

.function-merit-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brown-400);
  margin-right: 4px;
}

.function-card-visual {
  position: relative;
  background: linear-gradient(135deg, var(--brown-50), var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.function-card-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(180, 139, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.tablet-mockup {
  position: relative;
  background: #111;
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255,255,255,0.1);
  z-index: 1;
  transition: transform var(--transition-normal);
  display: inline-block;
}

.function-card:hover .tablet-mockup {
  transform: translateY(-8px);
}

.tablet-mockup-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
}

.tablet-mockup-inner img {
  display: block;
  width: auto;
  max-height: 400px;
  object-fit: cover;
}

.phone-image {
  display: inline-block;
  width: auto;
  max-height: 400px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-normal);
}

.function-card:hover .phone-image {
  transform: translateY(-8px);
}

.function-card-visual .tablet-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  background: rgba(51, 65, 85, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--cream-white) 0%, var(--brown-50) 100%);
}

.pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-400), var(--brown-400), var(--gold-400));
}

.pricing-campaign {
  background: linear-gradient(135deg, var(--red-accent), #b53535);
  color: white;
  text-align: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.pricing-campaign::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.pricing-body {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-original {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-arrow {
  font-size: 2rem;
  color: var(--brown-300);
  margin: 0 8px;
}

.pricing-current {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-current .price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brown-700);
  line-height: 1;
}

.pricing-current .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-700);
}

.pricing-tax {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-divider {
  width: 1px;
  height: 100px;
  background: var(--brown-100);
}

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

.pricing-monthly .monthly-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-monthly .monthly-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-monthly .monthly-price .price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-500);
  line-height: 1;
}

.pricing-monthly .monthly-price .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-500);
}

.campaign-deadline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 14px;
  border-radius: var(--radius-full);
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: pulse 2s ease-in-out infinite;
}

.pricing-deadline {
  text-align: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border-top: 1px solid #f0d88a;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-800);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-deadline strong {
  color: var(--red-accent);
  font-size: 1.05rem;
}

.deadline-icon {
  font-size: 1.2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900));
  color: white;
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.results-header {
  text-align: center;
  margin-bottom: 56px;
}

.results-header .section-title {
  color: white;
}

.results-header .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.result-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.result-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1.2;
  margin-bottom: 8px;
}

.result-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION (螳滄圀縺ｮ蛻ｩ逕ｨ繧ｷ繝ｼ繝ｳ)
   ============================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--cream-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.gallery-grid--two {
  gap: 32px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- Always-visible label overlay --- */
.gallery-item--labeled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65) 100%);
  pointer-events: none;
  transition: background var(--transition-normal);
}

.gallery-item--labeled:hover::after {
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.75) 100%);
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-item-label {
  transform: translateY(-4px);
}

.gallery-label-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.gallery-label-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  display: block;
}

.gallery-label-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-top: 2px;
}

/* Legacy hover overlay (unused in --labeled variant) */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-size: 0.9rem;
  color: white;
  font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-900));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold-300);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-qr-area {
  margin-bottom: 32px;
}

.cta-qr-link {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.cta-qr-link:hover {
  transform: scale(1.05);
}

.cta-qr-code {
  display: inline-block;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.cta-qr-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-phone .phone-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}

.cta-phone .phone-hours {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .footer-company {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.footer-brand .footer-locations {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-info {
  text-align: right;
}

.footer-contact-info .phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-contact-info .phone-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .function-card-inner {
    grid-template-columns: 1fr;
  }

  .function-card-visual {
    min-height: 360px;
  }

  .function-card-content {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav a {
    color: var(--text-secondary) !important;
    font-size: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .features-bar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-bar-item:not(:last-child)::after {
    display: none;
  }

  .hero-content {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .pricing-body {
    padding: 32px 24px;
    gap: 24px;
    flex-direction: column;
  }

  .pricing-divider {
    width: 80%;
    height: 1px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 40px 0 40px;
  }

  .function-card-content {
    padding: 32px 24px;
  }

  .function-card-visual {
    padding: 24px;
    min-height: 280px;
  }

  .pricing-current .price,
  .pricing-monthly .monthly-price .price {
    font-size: 2.5rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- Scroll-triggered counter animation ---------- */
.count-up {
  display: inline-block;
}

/* ---------- Floating particles (optional ambient decoration) ---------- */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

/* ---------- Text Element Fix ---------- */
.text-element {
  width: 100%;
  max-width: 800px;
}

