/* ============================================
   Chain Forest Corporate Site - Design System v4
   Primary Green: #2D5A3D
   Brand Yellow-Green: #c9cc3b / #dde040
   GREEN-HEAVY version
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

:root {
  --green: #2D5A3D;
  --green-light: #3A7350;
  --green-dark: #1E3D2A;
  --green-pale: #E8F0EB;
  --green-mid: #D2E2D7;
  --green-soft: #C0D6C6;
  --green-bg: #EFF5F1;
  --green-glow: rgba(45, 90, 61, 0.12);
  --yellow: #c9cc3b;
  --yellow-light: #dde040;
  --yellow-pale: #F5F6D8;
  --yellow-glow: rgba(201, 204, 59, 0.15);
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-tertiary: #9B9B9B;
  --text-on-green: #FFFFFF;
  --border: #E5E5E5;
  --border-light: #F0F0F0;
  --bg-white: #FFFFFF;
  --bg-off: #FAFAF9;
  --bg-warm: #F7F6F3;
  --font-display: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

/* ========================================
   NAVIGATION - green top accent bar
   ======================================== */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease-out);
}

/* Green top line on nav */
.nav-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--yellow));
}

.nav-main.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.nav-logo img { height: 40px; width: auto; }

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

.nav-links a {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.4s var(--ease-out);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-primary);
  position: absolute;
  left: 6px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger span:nth-child(1) { top: 10px; }
.nav-hamburger span:nth-child(2) { top: 16px; }
.nav-hamburger span:nth-child(3) { top: 22px; }

/* ========================================
   HERO - stronger green presence
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg-white) 0%, var(--green-pale) 35%, var(--green-mid) 55%, var(--green-pale) 75%, var(--bg-white) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(45, 90, 61, 0.04) 49.8%, rgba(45, 90, 61, 0.04) 50.2%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(45, 90, 61, 0.04) 49.8%, rgba(45, 90, 61, 0.04) 50.2%, transparent 50.2%);
  background-size: 25% 25%;
  pointer-events: none;
}

.hero-deco { position: absolute; pointer-events: none; }

.hero-deco-1 {
  top: 10%;
  right: 6%;
  width: 260px;
  height: 260px;
  border: 2px solid var(--green-soft);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 15%;
  left: 5%;
  width: 160px;
  height: 160px;
  background: var(--green-pale);
  opacity: 0.5;
  transform: rotate(45deg);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-deco-3 {
  top: 22%;
  left: 10%;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-dot 4s ease-in-out infinite;
}

.hero-deco-4 {
  bottom: 28%;
  right: 12%;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.45;
  animation: pulse-dot 5s ease-in-out infinite 1s;
}

.hero-deco-5 {
  top: 50%;
  right: 22%;
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  opacity: 0.35;
  animation: pulse-dot 6s ease-in-out infinite 2s;
}

.hero-deco-6 {
  top: 35%;
  left: 3%;
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-soft), var(--green), transparent);
  opacity: 0.4;
  animation: shimmer 6s ease-in-out infinite;
}

.hero-deco-7 {
  bottom: 35%;
  right: 3%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--yellow), transparent);
  opacity: 0.35;
  animation: shimmer 7s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.6); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.hero-content {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-concept {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-concept em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--green-dark);
}

.hero-concept em::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: -0.05em;
  right: -0.05em;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-reveal 1.2s var(--ease-out) 0.8s forwards;
}

@keyframes underline-reveal { to { transform: scaleX(1); } }

.hero-sub {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-white);
  background: var(--green);
  padding: 0.6rem 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: slide-shine 4s ease-in-out infinite;
}

@keyframes slide-shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--text-secondary);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--green-soft);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--green);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 10rem 3rem;
  position: relative;
}

.section-sm {
  padding: 7rem 3rem;
  position: relative;
}

.container { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 840px; margin: 0 auto; }

/* Section Header - green left border on titles */
.section-header {
  margin-bottom: 5rem;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

/* Titles get a green left accent bar */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 1.25rem;
  border-left: 4px solid var(--green);
  position: relative;
}

/* Yellow dot at bottom of green bar */
.section-title::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.section-title--center {
  border-left: none;
  padding-left: 0;
  text-align: center;
  position: relative;
}

.section-title--center::after {
  display: none;
}

/* Center underline for centered titles */
.section-title--center::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  margin: 0 auto 1.5rem;
}

.section-desc {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  max-width: 600px;
}

/* Divider */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--green-pale) 30%, var(--green-mid) 50%, var(--green-pale) 70%, transparent 90%);
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg-white), 0 0 0 5px var(--green-pale);
}

/* ========================================
   ABOUT - green-tinted background
   ======================================== */
.about-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--green-bg) 15%, var(--green-bg) 85%, var(--bg-white) 100%);
  position: relative;
}

/* Subtle leaf/organic corner shapes */
.about-section::before {
  content: "";
  position: absolute;
  top: 5rem;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at top right, var(--green-pale), transparent 70%);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(ellipse at bottom left, var(--green-pale), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-size: 0.9375rem;
  line-height: 2.4;
  color: var(--text-secondary);
}

.about-text p + p { margin-top: 1.5rem; }

/* Philosophy card - strong green */
.about-philosophy {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--green);
  color: var(--text-on-green);
}

.about-philosophy::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

/* Small yellow corner accent */
.about-philosophy::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, var(--yellow) 50%);
  opacity: 0.25;
}

.about-philosophy .label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.about-philosophy h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-on-green);
}

.about-philosophy p {
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 5rem;
  border: 1px solid var(--green-pale);
  background: var(--bg-white);
}

.stat-card {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}

.stat-card:hover { background: var(--green-bg); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-card + .stat-card { border-left: 1px solid var(--green-pale); }

.stat-card .label {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  display: inline-block;
}

.stat-number .suffix {
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 0.25rem;
  color: var(--yellow);
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

/* ========================================
   BUSINESS - green accent strips
   ======================================== */
.business-section {
  background: var(--bg-white);
  position: relative;
}

/* Green side strip decoration */
.business-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--yellow) 50%, var(--green));
  opacity: 0.15;
}

.service-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  padding: 5rem 0;
  position: relative;
}

.service-block + .service-block {
  border-top: 1px solid var(--green-pale);
}

.service-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 200;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.5s;
}

.service-block:hover .service-number {
  opacity: 0.6;
  color: var(--green);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
}

.service-en {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  padding-left: 1rem;
}

.service-right p {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--text-secondary);
}

.service-features {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-features li {
  padding: 1rem 1.25rem 1rem 2.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  transition: all 0.3s var(--ease-out);
}

.service-features li:hover {
  color: var(--text-primary);
  background: var(--green-bg);
  padding-left: 2.75rem;
}

.service-features li:hover::before {
  background: var(--green);
  border-color: var(--green);
}

/* Rental Demand Highlight - green box */
.rental-highlight {
  margin-top: 3rem;
  background: var(--green);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  color: var(--text-on-green);
}

.rental-highlight::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.rental-highlight h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-on-green);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rental-highlight h4::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.rental-highlight > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

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

.deliverable {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: var(--text-on-green);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 3px solid var(--yellow);
  transition: background 0.3s var(--ease-out);
}

.deliverable:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   PROJECTS - green gradient bg
   ======================================== */
.projects-section {
  background: linear-gradient(180deg, var(--bg-white), var(--green-bg) 20%, var(--green-bg) 80%, var(--bg-white));
  position: relative;
}

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

.project-card {
  background: var(--bg-white);
  border: 1px solid var(--green-pale);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.project-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.project-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(45, 90, 61, 0.12);
}

.project-card:hover::after { transform: scaleX(1); }

.project-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s var(--ease-out);
}

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

.project-img::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.project-img span {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 1rem;
  position: relative;
  z-index: 2;
}

.project-body { padding: 2rem; }

.project-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.project-year {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--green);
}

.tag {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--green-pale);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.tag-accent {
  background: var(--green);
  border-color: var(--green);
  color: var(--text-on-green);
  font-weight: 500;
}

.project-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.project-desc {
  font-size: 0.8125rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-pale);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.spec-label {
  color: var(--green);
  font-weight: 500;
  white-space: nowrap;
}

.spec-label::after {
  content: ":";
}

.spec-value {
  color: var(--text-secondary);
  white-space: nowrap;
}

.project-tags {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ========================================
   FINANCE - deep green header band
   ======================================== */
.finance-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Green band at top of section */
.finance-top-band {
  background: var(--green);
  padding: 4rem 3rem 6rem;
  text-align: center;
  position: relative;
}

.finance-top-band::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--green);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.finance-top-band .section-label {
  color: var(--yellow);
  justify-content: center;
}

.finance-top-band .section-label::before {
  background: var(--yellow);
  display: none;
}

.finance-top-band .section-title {
  color: var(--text-on-green);
  border-left: none;
  padding-left: 0;
}

.finance-top-band .section-title::after { display: none; }

.finance-top-band .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem auto 0;
  text-align: center;
}

.banks-container {
  max-width: 900px;
  margin: -2rem auto 4rem;
  position: relative;
  z-index: 1;
  padding: 0 3rem;
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-pale);
  border: 2px solid var(--green-pale);
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.1);
}

.bank-item {
  background: var(--bg-white);
  padding: 1.75rem 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bank-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--green);
  transition: all 0.4s var(--ease-out);
  transform: translateX(-50%);
}

.bank-item:hover {
  background: var(--green-bg);
  color: var(--green-dark);
}

.bank-item:hover::before { width: 40px; }

.banks-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 2rem;
}

/* ========================================
   COMPANY - green accents on table
   ======================================== */
.company-section {
  background: var(--bg-white);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--green-pale);
  transition: background 0.3s;
}

.company-table tr:hover { background: var(--green-bg); }

.company-table th {
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 1.25rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--green);
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
  letter-spacing: 0.04em;
  position: relative;
  border-left: 3px solid var(--green-pale);
  transition: border-color 0.3s;
}

.company-table tr:hover th {
  border-left-color: var(--green);
}

.company-table td {
  padding: 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.8;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  background: linear-gradient(135deg, var(--green-bg) 0%, var(--bg-white) 100%);
  position: relative;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.125rem 3.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 61, 0.3);
}

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

.btn-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 90, 61, 0.2);
}

.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========================================
   FOOTER - deep green
   ======================================== */
.footer {
  background: var(--green-dark);
  padding: 5rem 3rem 2rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

/* Yellow top accent line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-address {
  font-size: 0.8125rem;
  line-height: 2;
}

.footer-tel {
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copy {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger .reveal:nth-child(1) { transition-delay: 0s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .section { padding: 7rem 2rem; }
  .section-sm { padding: 5rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-left { position: static; }
  .service-features { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 5rem 1.5rem; }
  .section-sm { padding: 4rem 1.5rem; }
  .nav-inner { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid { grid-template-columns: 1fr; border: none; gap: 1px; background: var(--green-pale); }
  .stat-card + .stat-card { border-left: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .banks-grid { grid-template-columns: repeat(2, 1fr); }
  .banks-container { padding: 0 1.5rem; }
  .deliverables { grid-template-columns: 1fr; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-nav { flex-wrap: wrap; }
  .hero-deco-1, .hero-deco-2 { display: none; }
  .finance-top-band { padding: 3rem 1.5rem 5rem; }
}

@media (max-width: 480px) {
  .banks-grid { grid-template-columns: 1fr; }
}
