/* ==========================================================
   ワークグリーン - 農業・食品加工 人材派遣
   Color: Green #388E3C / Brown #795548 / Light Green BG #F1F8E9
   ========================================================== */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #388E3C;
  --green-dark: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #66BB6A;
  --green-bg: #F1F8E9;
  --brown: #795548;
  --brown-light: #8D6E63;
  --brown-bg: #EFEBE9;
  --white: #FFFFFF;
  --text: #2E2E2E;
  --text-light: #5D5D5D;
  --text-muted: #9E9E9E;
  --gray: #F5F5F5;
  --gray-dark: #EEEEEE;
  --border: #E0E0E0;
  --border-light: #F0F0F0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 24px rgba(56, 142, 60, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--green);
  color: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.sp-only {
  display: none;
}

/* ========== SAMPLE BANNER ========== */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #388E3C 0%, #4CAF50 50%, #388E3C 100%);
  background-size: 200% 100%;
  animation: bannerShimmer 6s ease infinite;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

.sample-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

.sample-banner a:hover {
  opacity: 0.85;
}

@keyframes bannerShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a:hover {
  color: var(--green);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
  border-radius: 1px;
}

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

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  box-shadow: var(--shadow-green);
}

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

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(56, 142, 60, 0.35);
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1050;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  padding: 100px 32px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--green);
  padding-left: 8px;
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--green);
  color: var(--white) !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  border: none;
  width: 100%;
  font-weight: 600;
}

.mobile-nav-cta:active {
  background: var(--green-dark);
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 108px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(56, 142, 60, 0.65) 0%,
    rgba(46, 46, 46, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

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

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-primary:active {
  transform: translateY(0);
}

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

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

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: 10px;
}

/* ========== SECTION LABELS & TITLES ========== */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label.center {
  text-align: center;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--text);
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
}

.section-desc.center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== ABOUT ========== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-bg);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition-slow);
}

.about-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--green-pale);
  opacity: 0.4;
  animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-icon-wrap:hover {
  transform: scale(1.03);
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 2;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background: var(--green-bg);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.tag:hover {
  background: var(--green);
  color: var(--white);
}

/* ========== FOR FARMERS ========== */
.for-farmers {
  background: var(--green-bg);
}

.farmers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.farmer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.farmer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-pale));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.farmer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.farmer-card:hover::before {
  transform: scaleX(1);
}

.farmer-card-icon {
  margin-bottom: 20px;
}

.farmer-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.farmer-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== FOR WORKERS ========== */
.for-workers {
  background: var(--white);
}

.workers-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.workers-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.workers-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(56, 142, 60, 0.15) 100%
  );
  pointer-events: none;
}

.workers-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.workers-image:hover img {
  transform: scale(1.03);
}

.workers-content {
  display: flex;
  flex-direction: column;
}

.workers-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.8;
}

.workers-list {
  margin-bottom: 24px;
}

.workers-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
}

.workers-list li:hover {
  padding-left: 4px;
  color: var(--green);
}

.workers-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.workers-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brown-bg), var(--green-bg));
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  border: 1px solid rgba(121, 85, 72, 0.1);
}

/* ========== SERVICES ========== */
.services {
  background: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--green);
}

.service-icon {
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ========== NUMBERS ========== */
.numbers {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.numbers-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.numbers-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(56, 142, 60, 0.85) 0%,
    rgba(46, 46, 46, 0.8) 100%
  );
}

.numbers-content {
  position: relative;
  z-index: 2;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.number-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.number-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.number-value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.number-unit {
  font-size: 20px;
  font-weight: 600;
  margin-left: 4px;
}

.number-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-weight: 500;
}

/* ========== FLOW ========== */
.flow {
  background: var(--white);
}

.flow-steps {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--green-bg),
    var(--green),
    var(--green-bg)
  );
}

.flow-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.flow-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.3);
  transition: var(--transition);
}

.flow-step:hover .flow-num {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.4);
}

.flow-body {
  padding-top: 8px;
  flex: 1;
}

.flow-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.flow-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== COMPANY ========== */
.company {
  background: var(--green-bg);
}

.company-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 800px;
  margin: 32px auto 0;
}

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

.company-table tr {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.company-table tr:last-child {
  border: none;
}

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

.company-table th {
  background: var(--green-bg);
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-align: left;
  width: 180px;
  vertical-align: top;
}

.company-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ========== STRENGTHS ========== */
.strengths {
  background: var(--white);
}

.strengths-grid {
  max-width: 800px;
  margin: 0 auto;
}

.strength-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.strength-item:last-child {
  border: none;
}

.strength-item:hover {
  padding-left: 8px;
}

.strength-num {
  flex-shrink: 0;
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  min-width: 56px;
  transition: var(--transition);
}

.strength-item:hover .strength-num {
  opacity: 0.5;
}

.strength-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.strength-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 85, 72, 0.85) 0%,
    rgba(56, 142, 60, 0.8) 100%
  );
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.9;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FAQ ========== */
.faq {
  background: var(--green-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--green);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--green);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-phone {
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  height: fit-content;
  position: sticky;
  top: 140px;
}

.contact-phone-icon {
  margin-bottom: 16px;
}

.contact-phone-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-phone-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.contact-phone-number:hover {
  color: var(--green-dark);
  transform: scale(1.03);
}

.contact-phone-hours {
  font-size: 12px;
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.req {
  color: #E53935;
  font-size: 11px;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--green-pale);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%235D5D5D'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ========== FOOTER ========== */
.footer {
  background: #2E2E2E;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  line-height: 1.8;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-info {
  font-size: 13px !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--green-light);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(56, 142, 60, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-icon-wrap {
    width: 200px;
    height: 200px;
  }

  .about-icon-wrap svg {
    width: 140px;
    height: 140px;
  }

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

  .workers-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workers-image img {
    height: 300px;
  }

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

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .contact-phone {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    letter-spacing: 1px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll {
    bottom: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .flow-steps::before {
    left: 28px;
  }

  .flow-step {
    gap: 20px;
  }

  .flow-num {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .company-table th {
    display: block;
    width: 100%;
    padding: 12px 20px 4px;
  }

  .company-table td {
    display: block;
    padding: 4px 20px 12px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form {
    padding: 24px;
  }

  .strength-item {
    flex-direction: column;
    gap: 12px;
  }

  .strength-num {
    font-size: 32px;
    min-width: auto;
  }

  .cta-banner {
    padding: 60px 0;
  }

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

  .cta-banner-btns .btn {
    width: 100%;
    max-width: 300px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ========== RESPONSIVE: SMALL MOBILE ========== */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .logo-text {
    font-size: 17px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-sub {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .number-value {
    font-size: 32px;
  }

  .number-unit {
    font-size: 16px;
  }

  .contact-phone-number {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 15px;
  }

  .mobile-nav {
    width: 90%;
    padding: 90px 24px 32px;
  }

  .sample-banner {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .sample-banner,
  .header,
  .hamburger,
  .mobile-nav,
  .mobile-overlay,
  .back-to-top,
  .hero-scroll {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 32px 0;
    break-inside: avoid;
  }

  body {
    color: #000;
    font-size: 12px;
  }
}