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

:root {
  --g: #006d3b;
  --gg: #2e9e52;
  --g-light: #5bb870;
  --grad: linear-gradient(135deg, #004d29 0%, #006d3b 55%, #2e9e52 100%);
  --grad-r: linear-gradient(135deg, #2e9e52 0%, #006d3b 55%, #004d29 100%);
  --bg: #f2f8f4;
  --bg2: #e8f4ec;
  --font: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,80,40,.08);
  --shadow-md: 0 8px 32px rgba(0,80,40,.12);
  --shadow-lg: 0 20px 60px rgba(0,80,40,.16);
  --radius: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: #111;
  background: #fff;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--g);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 2px solid rgba(0,109,59,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover { width: 20px; height: 20px; background: var(--gg); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: rgba(46,158,82,0.6); }

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--grad);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,109,59,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 80px);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,80,40,.1);
  background: rgba(255,255,255,0.97);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,109,59,0.3);
}
.nav-logo-icon span {
  color: #fff;
  font-family: var(--font-en);
  font-weight: 900; font-size: 13px;
}
.nav-logo-text {
  font-family: var(--font-en);
  font-weight: 700; font-size: 19px; color: #111;
  letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13.5px; color: #555;
  text-decoration: none; font-weight: 500;
  position: relative; padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--g); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad);
  color: #fff; border: none;
  padding: 11px 28px; border-radius: 28px;
  font-size: 13.5px; font-weight: 700;
  cursor: none; font-family: var(--font);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,109,59,0.3);
}
.nav-cta:hover {
  opacity: 0.92; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,109,59,0.4);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #333; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media(max-width:768px){
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
  z-index: 999;
  border-bottom: 1px solid rgba(0,109,59,0.1);
}
.mobile-menu.open {
  max-height: 400px;
  padding: 24px 32px;
}
.mobile-menu a {
  display: block; padding: 14px 0;
  color: #111; text-decoration: none;
  font-size: 16px; font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--g); }

/* HERO */
.hero {
  background: var(--grad);
  padding: 120px clamp(24px,7vw,96px) 0;
  display: flex; align-items: flex-end; gap: 60px;
  overflow: hidden; min-height: 680px;
  position: relative;
}

/* animated background particles */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46,158,82,0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(0,77,41,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  flex: 1; padding-bottom: clamp(60px,7vw,96px);
  color: #fff; min-width: 0; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px; border-radius: 28px;
  font-size: 12.5px; font-weight: 700;
  margin-bottom: 32px; letter-spacing: 0.5px;
  animation: fade-up 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #7adf8f;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(38px,5.5vw,68px);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 28px;
  animation: fade-up 0.7s 0.1s ease both;
}
.hero-title .accent {
  background: linear-gradient(90deg, #a8f0b9, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px,1.6vw,17px);
  color: rgba(255,255,255,.72);
  line-height: 1.95; margin-bottom: 48px;
  max-width: 480px;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; margin-bottom: 60px;
  animation: fade-up 0.7s 0.3s ease both;
}

.btn-primary {
  background: #fff; color: var(--g);
  border: none; padding: 16px 36px;
  border-radius: 10px; font-size: 15px; font-weight: 900;
  cursor: none; font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,109,59,0.08) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 15px 28px; border-radius: 10px;
  font-size: 14px; cursor: none; font-family: var(--font);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  font-weight: 600;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 44px; flex-wrap: wrap;
  animation: fade-up 0.7s 0.4s ease both;
}
.hero-stat {
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: 20px;
}
.hero-stat-num {
  font-size: 34px; font-weight: 900;
  font-family: var(--font-en);
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 11.5px; color: rgba(255,255,255,.5);
  margin-top: 4px; font-weight: 500;
}

.hero-img {
  width: clamp(220px,32vw,440px);
  padding: 48px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px 24px 0 0;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; position: relative; z-index: 1;
  animation: fade-up 0.8s 0.2s ease both;
}
.hero-img img {
  width: 100%; max-width: 340px;
  height: auto; object-fit: contain; display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* FADE UP ANIMATION */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* TICKER */
.ticker-wrap {
  background: var(--g);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 40px;
  font-family: var(--font-en);
  font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,.85);
  letter-spacing: 1px;
}
.ticker-dot { color: rgba(255,255,255,.4); font-size: 18px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION COMMON */
.section {
  padding: clamp(72px,9vw,104px) clamp(24px,7vw,96px);
}
.section-white { background: #fff; }
.section-tinted { background: var(--bg); }

.sec-header {
  text-align: center; margin-bottom: clamp(48px,6vw,72px);
}
.sec-label {
  font-size: 11.5px; font-weight: 700; color: var(--g);
  letter-spacing: 4px; margin-bottom: 14px;
  font-family: var(--font-en);
}
.sec-title {
  font-size: clamp(28px,3.5vw,42px);
  font-weight: 900; color: #111; line-height: 1.25;
}
.sec-subtitle { color: #aaa; font-size: 15px; margin-top: 12px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 24px;
}

.svc-card {
  background: #fff;
  border: 1px solid rgba(0,109,59,0.08);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: none;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0; transition: opacity var(--transition);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover .svc-icon,
.svc-card:hover .svc-title,
.svc-card:hover .svc-desc { color: #fff; }
.svc-card:hover .svc-icon { background: rgba(255,255,255,.2); filter: brightness(0) invert(1); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--bg);
  transition: background var(--transition), filter var(--transition);
  position: relative; z-index: 1;
}
.svc-title {
  font-size: 17px; font-weight: 700; color: #111;
  margin-bottom: 12px; position: relative; z-index: 1;
  transition: color var(--transition);
}
.svc-desc {
  font-size: 13.5px; color: #777; line-height: 1.8;
  position: relative; z-index: 1;
  transition: color var(--transition);
}

/* STRENGTHS */
.str-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 32px;
}
.str-card {
  background: #fff; border-radius: var(--radius);
  padding: 44px 38px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,109,59,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.str-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--grad);
  transition: height 0.5s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 0 4px 0;
}
.str-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.str-card:hover::after { height: 100%; }

.str-num {
  font-family: var(--font-en); font-weight: 900;
  font-size: 52px; color: #eaf4ed;
  line-height: 1; margin-bottom: 22px;
}
.str-title { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 14px; }
.str-desc { font-size: 14px; color: #777; line-height: 1.8; }

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
@media(max-width:1024px){ .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,109,59,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #fff;
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.case-img {
  position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden;
}
.case-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.case-card:hover .case-img img { transform: scale(1.08); }
.case-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,50,25,0.6) 0%, rgba(0,80,40,0.25) 60%, transparent 100%);
}

.case-body { padding: 28px 30px; }
.case-tag {
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 14px;
  display: inline-block; letter-spacing: 0.5px;
}
.case-co {
  font-size: 15.5px; font-weight: 700; color: #111;
  margin: 14px 0 8px;
}
.case-res { font-size: 14px; color: #666; line-height: 1.7; }

/* VOICES */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 24px;
}
.voice-card {
  background: #fff; border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,109,59,0.06);
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.voice-card::before {
  content: '"';
  position: absolute; top: 12px; right: 24px;
  font-size: 96px; color: var(--bg2);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stars { color: #f5a623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.voice-txt {
  font-size: 14px; color: #444; line-height: 1.9;
  margin-bottom: 24px; position: relative;
}
.voice-person { display: flex; align-items: center; gap: 14px; }
.voice-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.voice-name { font-weight: 700; font-size: 14px; color: #111; }
.voice-co { font-size: 12px; color: #aaa; margin-top: 3px; }

/* ABOUT */
.about-inner {
  display: flex; gap: clamp(40px,6vw,80px);
  align-items: flex-start; flex-wrap: wrap;
}
.about-table {
  flex: 1; min-width: 280px;
  border-collapse: collapse; font-size: 15px;
}
.about-table tr { border-bottom: 1px solid #eaf2ed; }
.about-table td { padding: 20px 0; vertical-align: top; }
.about-table td:first-child {
  color: var(--g); font-weight: 700;
  width: 160px; padding-right: 24px;
}
.about-img img {
  width: 100%; max-width: 420px;
  height: auto; border-radius: var(--radius); display: block;
  box-shadow: var(--shadow-md);
}

/* PROCESS SECTION */
.process-grid {
  display: flex; gap: 0;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 0 20px;
  position: relative;
}
.process-step + .process-step::before {
  content: '→';
  position: absolute; left: -12px; top: 40px;
  color: var(--gg); font-size: 22px; font-weight: 700;
}
@media(max-width:768px){
  .process-step + .process-step::before { display: none; }
  .process-step { min-width: 140px; }
}
.process-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,109,59,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-icon {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(0,109,59,0.35);
}
.process-num {
  font-family: var(--font-en); font-weight: 900;
  font-size: 11px; color: var(--g); letter-spacing: 2px;
  margin-bottom: 8px;
}
.process-title { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 8px; }
.process-desc { font-size: 13px; color: #888; line-height: 1.7; }

/* CONTACT */
.contact-section {
  background: var(--grad);
  padding: clamp(72px,9vw,104px) clamp(24px,7vw,96px);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 52px; color: #fff; }
.contact-title { font-size: clamp(30px,4vw,44px); font-weight: 900; margin-bottom: 14px; }
.contact-sub { font-size: 15px; color: rgba(255,255,255,.65); }

.contact-form {
  background: #fff; border-radius: 24px;
  padding: clamp(32px,5vw,56px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; color: #333; font-weight: 600;
  font-size: 13.5px; margin-bottom: 8px;
}
.form-input {
  width: 100%;
  border: 1.5px solid #e0ede5; border-radius: 10px;
  padding: 14px 18px; font-size: 14px;
  font-family: var(--font); color: #111; background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 4px rgba(0,109,59,.1);
  background: #fafffe;
}
.form-input::placeholder { color: #ccc; }
textarea.form-input { height: 130px; resize: vertical; }

.form-submit {
  width: 100%; background: var(--grad); color: #fff;
  border: none; padding: 19px; border-radius: 12px;
  font-size: 16px; font-weight: 900; cursor: none;
  font-family: var(--font);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,109,59,.3);
}
.form-submit:hover {
  opacity: 0.93; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,109,59,.4);
}
.form-submit:active { transform: translateY(0); }

/* TOAST */
.toast {
  position: fixed; bottom: 36px; left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: #1a4a2e; color: #fff;
  padding: 16px 32px; border-radius: 36px;
  font-size: 14px; font-weight: 700;
  opacity: 0; transition: opacity 0.35s, transform 0.35s;
  pointer-events: none; z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 10px;
}
.toast::before { content: '✓'; font-size: 16px; color: #7adf8f; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* FOOTER */
footer {
  background: #002e18;
  padding: 48px clamp(24px,7vw,96px);
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon span {
  color: #fff; font-family: var(--font-en);
  font-weight: 900; font-size: 11px;
}
.footer-logo-text {
  font-family: var(--font-en); font-weight: 700;
  font-size: 18px; color: #fff;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-links-group h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.5px;
}
.footer-links-group a {
  display: block; color: rgba(255,255,255,.4);
  text-decoration: none; font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-links-inline { display: flex; gap: 24px; }
.footer-links-inline a {
  font-size: 12px; color: rgba(255,255,255,.25);
  text-decoration: none; transition: color 0.2s;
}
.footer-links-inline a:hover { color: rgba(255,255,255,.5); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* COUNTER */
.count-up { display: inline-block; }

/* TWEAKS PANEL */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 16px; padding: 22px 26px;
  z-index: 9000; width: 272px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  font-family: sans-serif; display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-title { font-weight: 700; font-size: 14px; color: #111; margin-bottom: 18px; }
.tweak-item { margin-bottom: 18px; }
.tweak-label { font-size: 12px; color: #888; margin-bottom: 6px; }
.tweak-select {
  width: 100%; border: 1px solid #e0e0e0;
  border-radius: 6px; padding: 8px 10px;
  font-size: 13px; font-family: sans-serif; cursor: pointer;
}
.tweak-toggle-row { display: flex; align-items: center; justify-content: space-between; }
.tweak-toggle { position: relative; width: 38px; height: 22px; }
.tweak-toggle input { opacity: 0; width: 0; height: 0; }
.tweak-slider-track {
  position: absolute; inset: 0;
  background: #ddd; border-radius: 11px;
  cursor: pointer; transition: background .2s;
}
.tweak-toggle input:checked + .tweak-slider-track { background: var(--g); }
.tweak-slider-track::before {
  content: '';
  position: absolute; width: 16px; height: 16px;
  left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform .2s;
}
.tweak-toggle input:checked + .tweak-slider-track::before { transform: translateX(16px); }

/* MOBILE */
@media(max-width:768px){
  .hero { flex-direction: column; padding-bottom: 0; }
  .hero-img { width: 100%; border-radius: 24px 24px 0 0; }
  .about-inner { flex-direction: column; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

/* LOADING SCREEN */
.loading-screen {
  position: fixed; inset: 0;
  background: #004d29;
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
  font-family: var(--font-en); font-weight: 900;
  font-size: 42px; color: #fff; letter-spacing: 4px;
}
.loading-logo span { color: var(--gg); }
.loading-bar-wrap {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.15); border-radius: 3px;
  overflow: hidden;
}
.loading-bar {
  height: 100%; background: #fff; border-radius: 3px;
  width: 0%; animation: load-bar 1.2s cubic-bezier(0.4,0,0.2,1) forwards 0.3s;
}
@keyframes load-bar {
  0% { width: 0%; }
  60% { width: 85%; }
  100% { width: 100%; }
}
.loading-sub {
  font-size: 12px; color: rgba(255,255,255,.4);
  font-family: var(--font-en); letter-spacing: 3px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.pricing-card {
  background: #fff;
  border: 2px solid #e8f0eb;
  border-radius: 20px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,77,41,.12);
}
.pricing-card--featured {
  border-color: var(--g);
  background: linear-gradient(160deg, #f0faf4 0%, #fff 100%);
  box-shadow: 0 8px 40px rgba(0,109,59,.15);
}
.pricing-card--custom {
  background: linear-gradient(160deg, #0a140e 0%, #004d29 100%);
  border-color: transparent;
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: .06em;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,109,59,.35);
}

.pricing-label {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: .1em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-card--custom .pricing-label { color: rgba(255,255,255,.6); }

.pricing-price {
  font-family: var(--font-en);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-card--custom .pricing-price { color: #fff; }
.pricing-price--custom {
  font-size: clamp(22px, 3vw, 28px);
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -.01em;
}
.pricing-yen {
  font-size: .55em;
  font-weight: 700;
  color: var(--g);
}
.pricing-card--custom .pricing-yen { color: rgba(255,255,255,.7); }
.pricing-per {
  font-size: 15px;
  font-weight: 500;
  color: #888;
  margin-left: 2px;
}
.pricing-card--custom .pricing-per { color: rgba(255,255,255,.5); }

.pricing-tagline {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eef2ef;
}
.pricing-card--custom .pricing-tagline {
  color: rgba(255,255,255,.55);
  border-bottom-color: rgba(255,255,255,.12);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.pricing-card--custom .pricing-features li { color: rgba(255,255,255,.85); }
.pf-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--g);
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.pricing-card--custom .pf-check { background: rgba(255,255,255,.25); }
.pf-off { opacity: .4; }
.pf-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  color: #999;
  font-size: 11px;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid var(--g);
  background: transparent;
  color: var(--g);
  transition: all .25s;
  margin-top: auto;
}
.pricing-btn:hover {
  background: var(--g);
  color: #fff;
}
.pricing-btn--featured {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,109,59,.3);
}
.pricing-btn--featured:hover {
  opacity: .88;
  background: var(--grad);
}
.pricing-btn--custom {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.pricing-btn--custom:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.7);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 36px;
}
