/* ★ v1.7.56 / §21-8-6: LP の共通デザイン定義・レイアウト定義スタイルシート */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap');

:root {
  --orange:       #F07830;
  --orange-dark:  #D06018;
  --orange-light: #FFF3EA;
  --orange-mid:   #FDDCBF;
  --beige:        #FBF6EF;
  --beige-dark:   #F3EDE3;
  --brown:        #6B4226;
  --brown-light:  #A06840;
  --charcoal:     #2C2C2C;
  --gray:         #6B6B6B;
  --gray-light:   #F4F1ED;
  --white:        #FFFFFF;
  --green:        #4CAF7D;
  --red-soft:     #E57373;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow:       0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.13);
  --radius:       18px;
  --radius-sm:    10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--beige);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 15px;
}

/* ===== 共通ユーティリティ ===== */
.inner { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.sec   { padding: 80px 0; }
.sec-sm { padding: 56px 0; }

.label-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 6px;
}

.sec-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 44px;
  line-height: 1.8;
}

.divider {
  height: 5px;
  width: 56px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 3px;
  margin: 14px 0 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(240,120,48,0.38);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  line-height: 1.3;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,120,48,0.45);
}

.btn-sub {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--brown-light);
  transition: background 0.18s, color 0.18s;
}
.btn-sub:hover { background: var(--orange-light); }

.btn-apply {
  display: inline-block;
  background: var(--white);
  color: var(--brown);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--brown-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-apply:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-apply-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(240,120,48,0.38);
}
.btn-apply-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 10px 32px rgba(240,120,48,0.45);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--orange-mid);
}

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

.logo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--brown); }

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

.blog-btn, .ai-assistant-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  padding: 7px 18px;
  transition: background 0.15s, border-color 0.15s;
}

.blog-btn {
  color: #6b4226;
  border: 1.5px solid rgba(107, 66, 38, 0.4);
  background: rgba(107, 66, 38, 0.06);
  margin-right: 4px;
}
.blog-btn:hover {
  background: rgba(107, 66, 38, 0.12);
  border-color: rgba(107, 66, 38, 0.6);
}

.ai-assistant-btn {
  color: #7c4dff;
  border: 1.5px solid rgba(124, 77, 255, 0.4);
  background: rgba(124, 77, 255, 0.06);
}
.ai-assistant-btn:hover {
  background: rgba(124, 77, 255, 0.12);
  border-color: rgba(124, 77, 255, 0.6);
}

.login-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  border: 1.5px solid var(--brown-light);
  background: #fff;
  padding: 7px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s;
}
.login-btn:hover { background: var(--orange-light); }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(253,220,191,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(240,120,48,0.12) 0%, transparent 55%),
    var(--beige);
  padding: 50px 24px 60px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  border: 1px solid var(--orange-mid);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-mid);
  border-radius: 2px;
  z-index: -1;
}

.hero-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
}

.hero-unit-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--orange-mid);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.hero-unit-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.hero-unit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-unit-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}

.hero-unit-text span {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
}

.hero-cv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-cv-note {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--orange-mid);
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.excel-mock {
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 12px;
}

.excel-header {
  display: grid;
  grid-template-columns: 90px repeat(5, 1fr);
  background: #4A7C59;
  color: #fff;
  font-weight: 700;
}

.excel-header div, .excel-row div {
  padding: 8px 10px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.excel-row {
  display: grid;
  grid-template-columns: 90px repeat(5, 1fr);
  border-bottom: 1px solid #e0e0e0;
}

.excel-row:nth-child(even) { background: #f9faf9; }

.excel-cell-name { text-align: left !important; font-weight: 500; }

.shift-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.shift-early { background: #E3F2FD; color: #1565C0; }
.shift-late  { background: #FFF3E0; color: #E65100; }
.shift-night { background: #EDE7F6; color: #4527A0; }
.shift-off   { background: #F5F5F5; color: #9E9E9E; }

.hero-card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}

/* ===== FEATURES ===== */
.features-bg { background: #fff; }

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

.feature-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--orange-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.feature-num {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.feature-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.4;
}

.feature-card p { font-size: 13px; color: var(--gray); line-height: 1.8; }

.feature-app-note {
  margin-top: 12px;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 9px 13px;
  font-size: 12px;
  color: var(--brown);
  line-height: 1.7;
}

.feature-app-badge {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--orange-dark);
}

.step-app-note {
  margin-top: 10px;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 9px 13px;
  font-size: 12px;
  color: var(--brown);
  line-height: 1.7;
}

/* ===== SECURITY ===== */
.security-bg {
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2C10 60%, #6B4226 100%);
}

.security-inner { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.security-header { text-align: center; margin-bottom: 48px; }
.security-header .sec-title { color: #fff; }
.security-header .sec-sub   { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.security-header .label-tag { background: rgba(255,255,255,0.18); color: #fff; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.security-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.security-card .icon { font-size: 36px; margin-bottom: 14px; display: block; }
.security-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.security-card p  { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.75; }

/* ===== COMPARE ===== */
.compare-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--orange-mid);
}

.compare-intro {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 24px 32px;
  color: #fff;
}
.compare-intro h3 { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 18px; font-weight: 900; }
.compare-intro p  { font-size: 13px; opacity: 0.88; margin-top: 4px; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.compare-table th {
  padding: 14px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}
.th-label    { text-align: left !important; background: var(--gray-light); color: var(--gray); width: 36%; }
.th-excel    { background: #EAF4EA; color: #2E7D32; width: 21%; }
.th-other    { background: #FFF3E0; color: #E65100; width: 21%; }
.th-sc       { background: var(--orange); color: #fff; width: 22%; }

.sc-badge {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 8px;
  margin-bottom: 3px;
}

.compare-table td { padding: 13px 18px; border-top: 1px solid #F0EDE8; vertical-align: middle; }
.compare-table tr:hover td { background: var(--beige); }

.td-label { font-weight: 500; color: var(--charcoal); }
.td-label small { display: block; font-weight: 400; color: var(--gray); font-size: 11px; margin-top: 2px; }
.td-center { text-align: center; }
.td-sc { background: var(--orange-light); text-align: center; font-weight: 700; color: var(--brown); }

.icon-ok  { color: var(--green); font-size: 18px; }
.icon-ng  { color: var(--red-soft); font-size: 16px; }
.icon-tri { color: #FFA726; font-size: 16px; }

.compare-note {
  padding: 12px 22px;
  background: var(--beige);
  font-size: 11px;
  color: var(--gray);
  border-top: 1px solid #EDE9E3;
}

/* ===== STEPS ===== */
.steps-bg {
  background: linear-gradient(180deg, var(--beige) 0%, var(--orange-light) 100%);
}

.steps-container { display: flex; flex-direction: column; }

.step-item { display: flex; gap: 22px; align-items: flex-start; }

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 56px;
}

.step-circle {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(240,120,48,0.35);
  flex-shrink: 0;
}

.step-line {
  width: 3px;
  flex: 1;
  min-height: 36px;
  background: linear-gradient(180deg, var(--orange), var(--orange-mid));
  margin: 4px auto;
}

.step-item:last-child .step-line { display: none; }

.step-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s;
}
.step-content:hover { transform: translateX(4px); }

.step-tag {
  display: inline-block;
  background: var(--orange-mid);
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}

.step-content h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step-content p { font-size: 13px; color: var(--gray); line-height: 1.8; }

.step-time {
  display: inline-block;
  margin-top: 10px;
  background: var(--beige);
  border: 1px solid var(--orange-mid);
  color: var(--brown-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
}

.story-goal {
  background: linear-gradient(135deg, var(--brown), #3A1A06);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
  text-align: center;
  margin-top: 4px;
  box-shadow: 0 8px 32px rgba(107,66,38,0.3);
}
.story-goal .big { font-size: 40px; margin-bottom: 10px; }
.story-goal h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.story-goal p { font-size: 13px; opacity: 0.82; }

/* ===== PRICING ===== */
.pricing-bg { background: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.price-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--orange-mid);
  background: var(--beige);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.price-card.recommended {
  border-color: var(--orange);
  background: var(--orange-light);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 12px;
}

.price-plan-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  margin: 10px 0 4px;
}

.price-amount span { font-size: 16px; color: var(--gray); font-weight: 400; }
.price-note { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.price-desc { font-size: 13px; color: var(--charcoal); line-height: 1.75; }

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

.support-card {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--orange-mid);
  background: var(--beige);
}

.support-card h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 6px;
}

.support-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  margin-bottom: 8px;
}

.support-card p { font-size: 12px; color: var(--gray); line-height: 1.8; }

.support-scenario {
  margin-top: 12px;
  background: var(--beige-dark);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.75;
}

.support-scenario-label {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
  font-size: 11px;
}

.hero-solver-note {
  font-size: 11px;
  color: var(--gray);
  margin-top: -12px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.support-section-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-mid);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--orange-light); }

.faq-q-badge {
  width: 30px; height: 30px;
  background: var(--orange);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-q-text { font-weight: 700; font-size: 14px; flex: 1; color: var(--charcoal); }
.faq-toggle { color: var(--orange); font-size: 20px; font-weight: 700; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-a { display: none; padding: 0 22px 18px 64px; }
.faq-item.open .faq-a { display: block; }

.faq-a-badge {
  display: inline-block;
  background: var(--orange-mid);
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 7px;
  margin-bottom: 7px;
}

.faq-a p { font-size: 13px; color: var(--gray); line-height: 1.85; }

.faq-highlight {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  padding: 9px 13px;
  border-radius: 0 7px 7px 0;
  margin-top: 9px;
  font-size: 12px;
  color: var(--brown);
}

/* ===== CTA ===== */
.cta-bg {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--beige-dark) 100%);
  border-top: 2px solid var(--orange-mid);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900;
  color: var(--brown);
  line-height: 1.45;
  margin-bottom: 12px;
}

.cta-inner p { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: #231209;
  color: rgba(255,255,255,0.7);
  padding: 36px 24px 28px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeUp 0.7s ease both; }
.hero-visual { animation: fadeUp 0.7s 0.2s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    height: auto !important;
  }
  .header-inner {
    height: auto !important;
    padding: 12px 24px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .header-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }
  .blog-btn, .ai-assistant-btn, .login-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .features-grid    { grid-template-columns: 1fr; }
  .security-grid    { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .support-grid     { grid-template-columns: 1fr; }
  .compare-table    { font-size: 11px; }
  .compare-table th, .compare-table td { padding: 9px 8px; }
  .faq-a            { padding-left: 22px; }
  .faq-q-badge      { display: none; }
  .cta-btns .btn-primary { width: 100%; text-align: center; }
}

/* ===== LATEST BLOG (LP SECTION) ===== */
.latest-blog-section {
  background: var(--white);
  border-top: 1px solid var(--orange-mid);
}

.latest-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .latest-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .latest-blog-grid {
    grid-template-columns: 1fr;
  }
}

.latest-blog-card {
  background: var(--white);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.latest-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.latest-blog-img-wrapper {
  height: 140px;
  background: var(--beige-dark);
  overflow: hidden;
}
.latest-blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-blog-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.latest-blog-card-date {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
}

.latest-blog-card-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14.5px;
  font-weight: 900;
  color: var(--brown);
  margin: 0 0 8px 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-blog-card-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-blog-more {
  text-align: center;
  margin-top: 20px;
}

.btn-blog-more {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--brown-light);
  color: var(--brown);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-blog-more:hover {
  background: var(--orange-light);
  border-color: var(--orange);
}

/* ===== DOWNLOAD MODAL & LEAD FORM ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(234, 93, 33, 0.2);
  border-radius: 12px;
  width: 90%;
  max-width: 440px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.15s;
}
.modal-close:hover {
  background: var(--beige-dark);
  color: var(--brown);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.modal-header h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--brown);
  margin: 0 0 8px 0;
}
.modal-subtitle {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}
.form-group label .required {
  color: var(--orange);
  margin-left: 2px;
}
.form-group input {
  font-size: 14.5px;
  padding: 12px 16px;
  border: 1.5px solid var(--orange-mid);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brown);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus {
  border-color: var(--orange);
}

.btn-submit-lead {
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn-submit-lead:hover {
  background: #d6480f;
}
.btn-submit-lead:active {
  transform: scale(0.98);
}

.lead-success-msg {
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}
.success-icon {
  font-size: 40px;
  margin: 0 0 16px 0;
}
.lead-success-msg h4 {
  font-size: 17px;
  font-weight: 900;
  color: var(--brown);
  margin: 0 0 12px 0;
}
.lead-success-msg p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.lead-success-msg a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

.lead-error-msg {
  background: rgba(234, 93, 33, 0.08);
  border: 1px solid rgba(234, 93, 33, 0.3);
  color: var(--orange);
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-top: 14px;
  text-align: center;
  line-height: 1.4;
  animation: shake 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

