/* ============================================
   田んぼ倶楽部 LP - Style Sheet
   さくらインターネット対応 静的サイト
   ============================================ */

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

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

body {
  font-family: "IBM Plex Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #444;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   Lock Screen
   ============================================ */
#lockScreen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lockScreen.hidden {
  display: none;
}

.lock-inner {
  text-align: center;
  padding: 20px;
}

.lock-logo {
  height: 50px;
  width: auto;
  margin-bottom: 32px;
}

.lock-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.lock-input {
  display: block;
  width: 280px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.lock-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.lock-btn {
  display: block;
  width: 280px;
  padding: 14px;
  background: #5ebbbb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

.lock-btn:hover {
  background: #4da8a8;
}

.lock-error {
  color: #e05555;
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 1.2em;
}

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

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

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(192, 207, 53, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 44px;
  width: auto;
}

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

.header-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: #fff;
}

.header-cta {
  background: #5ebbbb;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.header-cta:hover {
  background: #4da8a8;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  backdrop-filter: blur(2px);
}

.nav-overlay.active {
  display: block;
}

.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);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a3a3a;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 100px 20px 60px;
  max-width: 900px;
}

.hero-logo-mark {
  margin-bottom: 30px;
}

.hero-logo-img {
  height: 60px;
  width: auto;
}

.hero-catch {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.hero-subcatch {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: #5ebbbb;
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 30px rgba(94, 187, 187, 0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: #4da8a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(94, 187, 187, 0.5);
}

.hero-badge {
  margin-top: 24px;
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ============================================
   Section Common
   ============================================ */
.section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  background: #c0cf35;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #333;
}

.section-title .accent {
  color: #c0cf35;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.8;
}

.section-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-image img {
  width: 100%;
}

/* ============================================
   Crisis Section (一次産業の現状)
   ============================================ */
.crisis {
  background: #f7fafa;
}

.crisis-header {
  text-align: center;
  margin-bottom: 50px;
}

.crisis-header .section-title {
  font-size: 2rem;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.crisis-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #c0cf35;
  transition: transform 0.3s;
}

.crisis-card:hover {
  transform: translateY(-4px);
}

.crisis-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.5;
}

.crisis-card .number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #c0cf35;
  line-height: 1.2;
  margin-bottom: 8px;
}

.crisis-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   Circulation Section (循環モデル)
   ============================================ */
.circulation {
  background: #fff;
}

.circulation-content {
  text-align: center;
}

.circulation-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Results Section (活動実績)
   ============================================ */
.results {
  background: linear-gradient(135deg, #fafce8 0%, #f5f8e0 100%);
}

.results-content {
  text-align: center;
}

.results-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Benefits Section (参画のメリット)
   ============================================ */
.benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.benefit-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.benefit-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #c0cf35;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #333;
  line-height: 1.5;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ============================================
   CSR Section
   ============================================ */
.csr {
  background: #f7fafa;
}

.csr-content {
  text-align: center;
}

.csr-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Return List Section (還元リスト)
   ============================================ */
.return-list {
  background: #fff;
}

.return-list-content {
  text-align: center;
}

.return-list-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Third Place Section
   ============================================ */
.thirdplace {
  background: #f7fafa;
}

.thirdplace-content {
  text-align: center;
}

.thirdplace-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Gohoyoshi Section (五方良し)
   ============================================ */
.gohoyoshi {
  background: #fff;
}

.gohoyoshi-content {
  text-align: center;
}

.gohoyoshi-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Plans Section (投資プラン)
   ============================================ */
.plans {
  background: linear-gradient(135deg, #fafce8 0%, #f5f8e0 100%);
}

.plans-content {
  text-align: center;
}

.plans-images {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.plans-images .section-image {
  width: 100%;
}

.plans-note {
  margin-top: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}

/* ============================================
   Founder Section (代表者紹介)
   ============================================ */
.founder {
  background: #fff;
}

.founder-content {
  text-align: center;
}

.founder-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Ambassadors Section (アンバサダー)
   ============================================ */
.ambassadors {
  background: #f7fafa;
}

.ambassadors-content {
  text-align: center;
}

.ambassadors-content .section-image {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Closing Section
   ============================================ */
.closing {
  background: #2c3e3e;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.closing-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 16px;
}

.closing-title .accent {
  color: #c0cf35;
}

.closing-divider {
  width: 80px;
  height: 3px;
  background: #c0cf35;
  margin: 24px auto;
}

.closing-quote {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 24px;
}

.closing-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.85;
}

.closing-subtitle {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.closing-cta {
  display: inline-block;
  background: #5ebbbb;
  color: #fff;
  padding: 20px 55px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 30px rgba(94, 187, 187, 0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.closing-cta:hover {
  background: #4da8a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(94, 187, 187, 0.5);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: #fff;
  padding: 90px 0;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title {
  margin-bottom: 16px;
}

.contact-description {
  color: #666;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-form {
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.form-group label .required {
  background: #5ebbbb;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5ebbbb;
  background: #fff;
}

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

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit button {
  background: #5ebbbb;
  color: #fff;
  padding: 18px 60px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(94, 187, 187, 0.3);
}

.form-submit button:hover {
  background: #4da8a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(94, 187, 187, 0.4);
}

.form-privacy {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #999;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #f0f1f3;
  color: #444;
  padding: 50px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

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

.footer-info {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.8;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #6f738b;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c0cf35;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.75rem;
  color: #999;
}

/* ============================================
   Floating CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #5ebbbb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 6px 30px rgba(94, 187, 187, 0.4);
  transition: all 0.3s;
}

.floating-cta a:hover {
  background: #4da8a8;
  transform: translateY(-2px);
}

/* ============================================
   Scroll Animation
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .header-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #2c3e3e;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    z-index: 1000;
    padding: 90px 0 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .header-nav a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    width: 100%;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s, color 0.3s;
    letter-spacing: 0.05em;
  }

  .header-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .hamburger {
    display: flex;
  }

  .hero-catch {
    font-size: 2.2rem;
  }

  .hero-subcatch {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

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

  .closing-title {
    font-size: 1.5rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {

  /* ---- Base ---- */
  html {
    font-size: 15px;
  }

  body {
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
  }

  .container {
    padding: 0 20px;
  }

  /* ---- Header ---- */
  .header-inner {
    height: 56px;
    padding: 0 16px;
  }

  .header-logo-img {
    height: 34px;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.50) 100%
    );
  }

  .hero-content {
    padding: 90px 24px 50px;
  }

  .hero-logo-mark {
    margin-bottom: 24px;
  }

  .hero-logo-img {
    height: 48px;
  }

  .hero-catch {
    font-size: 1.7rem;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }

  .hero-subcatch {
    font-size: 0.92rem;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    opacity: 0.95;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 32px;
    line-height: 1.8;
    opacity: 0.92;
  }

  .hero-cta {
    display: block;
    margin: 0 auto;
    padding: 18px 24px;
    font-size: 1rem;
    max-width: 300px;
    text-align: center;
    letter-spacing: 0.08em;
  }

  .hero-badge {
    font-size: 0.75rem;
    margin-top: 18px;
    opacity: 0.75;
    letter-spacing: 0.02em;
  }

  /* ---- Sections ---- */
  .section {
    padding: 56px 0;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 5px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.8;
    color: #777;
  }

  .section-image {
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    margin-left: -20px;
    margin-right: -20px;
  }

  /* ---- Crisis ---- */
  .crisis-header {
    margin-bottom: 28px;
  }

  .crisis-header .section-title {
    font-size: 1.2rem;
  }

  .crisis-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .crisis-card {
    padding: 24px 20px;
    border-radius: 10px;
    border-top-width: 3px;
  }

  .crisis-card .number {
    font-size: 1.8rem;
  }

  .crisis-card h3 {
    font-size: 0.92rem;
  }

  .crisis-card p {
    font-size: 0.82rem;
  }

  /* ---- Benefits ---- */
  .benefits-grid {
    gap: 16px;
    margin-bottom: 32px;
  }

  .benefit-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .benefit-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .benefit-card .num {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .benefit-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .benefit-card p {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  /* ---- Plans ---- */
  .plans-images {
    gap: 24px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .plans-images .section-image {
    margin-left: 0;
    margin-right: 0;
  }

  .plans-note {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-top: 24px;
    padding: 0 4px;
  }

  /* ---- Founder / Ambassadors ---- */
  .founder-content .section-subtitle,
  .ambassadors-content .section-subtitle {
    font-size: 0.85rem;
    text-align: left;
    line-height: 1.85;
  }

  /* ---- Closing ---- */
  .closing {
    padding: 60px 0 70px;
  }

  .closing-subtitle {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .closing-title {
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  .closing-divider {
    width: 50px;
    height: 2px;
    margin: 20px auto;
  }

  .closing-quote {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .closing-text {
    font-size: 0.85rem;
    line-height: 1.9;
    margin-bottom: 24px;
    padding: 0 8px;
    text-align: left;
  }

  .closing-cta {
    display: block;
    margin: 0 auto;
    padding: 18px 24px;
    font-size: 0.95rem;
    max-width: 300px;
    text-align: center;
    letter-spacing: 0.06em;
  }

  /* ---- Floating CTA ---- */
  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0) 100%);
  }

  .floating-cta a {
    padding: 16px 24px;
    font-size: 0.92rem;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(94, 187, 187, 0.4);
    letter-spacing: 0.06em;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 36px 0 20px;
    padding-bottom: calc(20px + 70px);
  }

  .footer-logo-img {
    height: 30px;
  }

  .footer-info {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .footer-links {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    font-size: 0.82rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    width: 200px;
    text-align: center;
  }

  .footer-links a:last-child {
    border-bottom: none;
  }

  .footer-copyright {
    font-size: 0.7rem;
    padding-top: 16px;
    margin-top: 16px;
  }

  /* ---- Lock Screen ---- */
  .lock-logo {
    height: 40px;
    margin-bottom: 24px;
  }

  .lock-text {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .lock-input,
  .lock-btn {
    width: 260px;
    padding: 16px 18px;
  }

  .lock-input {
    font-size: 16px;
  }

  /* ---- Fade animation softer on mobile ---- */
  .fade-in {
    transform: translateY(20px);
  }
}
