/* ==========================================
   Discovery Hub - CSS
   ========================================== */

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555;
  --color-primary: #1e3a5f;
  --color-accent: #e8a020;
  --color-accent-secondary: #2a6496;
  --color-section-alt: #f5f5f0;
  --color-dark-bg: #0f2033;
  --color-dark-text: #ffffff;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --max-width: 1100px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ==========================================
   Header / Nav
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}
.logo-icon svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--color-primary); font-weight: 600; }

.nav-cta {
  background: var(--color-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-accent-secondary) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: white;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 8px 0; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: #f5f5f0; }

/* ==========================================
   Hero
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(245,245,240,0.85) 50%, rgba(200,220,240,0.5) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(30,58,95,0.06) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(232,160,32,0.08) 0%, transparent 40%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  animation: fadeInUp 0.9s ease both;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--color-primary); }

.hero-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
}
.btn-primary:hover { background: #152d4a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,0.3); }
.btn-secondary {
  background: var(--color-accent);
  color: white;
}
.btn-secondary:hover { background: #d4900f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-text-light), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ==========================================
   Sections
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.section-alt { background: var(--color-section-alt); }
.section-dark {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: inherit;
}
.section-dark .section-label { color: var(--color-accent); }

/* ==========================================
   Service
   ========================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(30,58,95,0.05);
  line-height: 1;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================
   Stance
   ========================================== */
.stance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.stance-lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.stance-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 16px;
}

.stance-values { display: flex; flex-direction: column; gap: 32px; }
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  padding-top: 4px;
  min-width: 28px;
}
.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ==========================================
   Contact
   ========================================== */
.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.required {
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
}
.optional {
  background: #aaa;
  color: white;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition);
  background: #fafafa;
  color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: white;
}
.form-group textarea { resize: vertical; }

.file-drop {
  position: relative;
  border: 1.5px dashed rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: #fafafa;
}
.file-drop:hover { border-color: var(--color-primary); background: #f0f4f8; }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
}
.file-drop span { font-size: 0.9rem; color: var(--color-text-light); pointer-events: none; }

.form-privacy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-link {
  font-size: 0.875rem;
  color: var(--color-accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-text);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.05em;
}
.btn-submit:hover { background: var(--color-primary); transform: translateY(-2px); }

/* ==========================================
   Company Page
   ========================================== */
.page-header {
  background: var(--color-dark-bg);
  color: white;
  padding: calc(var(--header-h) + 60px) 24px 60px;
  text-align: center;
}
.page-header .section-label { color: var(--color-accent); margin-bottom: 12px; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto 80px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.company-table th {
  width: 220px;
  padding: 28px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  vertical-align: top;
  white-space: nowrap;
}
.company-table td {
  padding: 28px 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}
.company-table td a {
  color: var(--color-accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.map-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.map-address { font-size: 0.95rem; color: var(--color-text); margin-bottom: 4px; }
.map-access { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 24px; }
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}
.map-embed iframe { display: block; }

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 32px; height: 32px; }
.footer-brand address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-brand address a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: white; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .stance-content { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .company-table th { width: 140px; }
}

@media (max-width: 600px) {
  .hero { padding: calc(var(--header-h) + 24px) 20px 60px; }
  .section { padding: 72px 0; }
  .hero-scroll { display: none; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .company-table { display: block; }
  .company-table tbody { display: block; }
  .company-table tr { display: block; border-bottom: none; padding: 0; margin-bottom: 24px; }
  .company-table th { display: block; width: auto; padding: 0 0 4px; border-bottom: 2px solid var(--color-primary); margin-bottom: 8px; }
  .company-table td { display: block; padding: 0; }
}
/* ==========================================
   Discovery Hub - CSS
   ========================================== */

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555;
  --color-primary: #1e3a5f;
  --color-accent: #e8a020;
  --color-accent-secondary: #2a6496;
  --color-section-alt: #f5f5f0;
  --color-dark-bg: #0f2033;
  --color-dark-text: #ffffff;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --max-width: 1100px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ==========================================
   Header / Nav
   ========================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}
.logo-icon svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--color-primary); font-weight: 600; }

.nav-cta {
  background: var(--color-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-accent-secondary) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: white;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { list-style: none; padding: 8px 0; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: #f5f5f0; }

/* ==========================================
   Hero
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(245,245,240,0.85) 50%, rgba(200,220,240,0.5) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(30,58,95,0.06) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(232,160,32,0.08) 0%, transparent 40%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  animation: fadeInUp 0.9s ease both;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--color-primary); }

.hero-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
}
.btn-primary:hover { background: #152d4a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,0.3); }
.btn-secondary {
  background: var(--color-accent);
  color: white;
}
.btn-secondary:hover { background: #d4900f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.3); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-text-light), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ==========================================
   Sections
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.section-alt { background: var(--color-section-alt); }
.section-dark {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: inherit;
}
.section-dark .section-label { color: var(--color-accent); }

/* ==========================================
   Service
   ========================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(30,58,95,0.05);
  line-height: 1;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================
   Stance
   ========================================== */
.stance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.stance-lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.stance-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 16px;
}

.stance-values { display: flex; flex-direction: column; gap: 32px; }
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.value-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  padding-top: 4px;
  min-width: 28px;
}
.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ==========================================
   Contact
   ========================================== */
.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.required {
  background: var(--color-primary);
  color: white;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
}
.optional {
  background: #aaa;
  color: white;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition);
  background: #fafafa;
  color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: white;
}
.form-group textarea { resize: vertical; }

.file-drop {
  position: relative;
  border: 1.5px dashed rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: #fafafa;
}
.file-drop:hover { border-color: var(--color-primary); background: #f0f4f8; }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
}
.file-drop span { font-size: 0.9rem; color: var(--color-text-light); pointer-events: none; }

.form-privacy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-link {
  font-size: 0.875rem;
  color: var(--color-accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--color-text);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.05em;
}
.btn-submit:hover { background: var(--color-primary); transform: translateY(-2px); }

/* ==========================================
   Company Page
   ========================================== */
.page-header {
  background: var(--color-dark-bg);
  color: white;
  padding: calc(var(--header-h) + 60px) 24px 60px;
  text-align: center;
}
.page-header .section-label { color: var(--color-accent); margin-bottom: 12px; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto 80px;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.company-table th {
  width: 220px;
  padding: 28px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  vertical-align: top;
  white-space: nowrap;
}
.company-table td {
  padding: 28px 24px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}
.company-table td a {
  color: var(--color-accent-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-section {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.map-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.map-address { font-size: 0.95rem; color: var(--color-text); margin-bottom: 4px; }
.map-access { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 24px; }
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}
.map-embed iframe { display: block; }

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 32px; height: 32px; }
.footer-brand address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-brand address a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: white; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .stance-content { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .company-table th { width: 140px; }
}

@media (max-width: 600px) {
  .hero { padding: calc(var(--header-h) + 24px) 20px 60px; }
  .section { padding: 72px 0; }
  .hero-scroll { display: none; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .company-table { display: block; }
  .company-table tbody { display: block; }
  .company-table tr { display: block; border-bottom: none; padding: 0; margin-bottom: 24px; }
  .company-table th { display: block; width: auto; padding: 0 0 4px; border-bottom: 2px solid var(--color-primary); margin-bottom: 8px; }
  .company-table td { display: block; padding: 0; }
}

/* ==========================================
   Service Card - Additional Styles
   ========================================== */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(30,58,95,0.2);
}

.service-detail {
  list-style: none;
  margin-top: 16px;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.service-detail li {
  font-size: 0.82rem;
  color: var(--color-text-light);
  padding: 5px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.service-link-label {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.service-card-link:hover .service-link-label {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.service-contact-label {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  font-style: italic;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 0;
}
