/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --red: #CC0000;
  --red-dark: #aa0000;
  --navy: #1B2352;
  --green: #2B5E38;
  --dark: #111111;
  --text: #1a1a1a;
  --text-muted: #666;
  --bg-light: #f7f7f7;
  --border: #e0e0e0;
  --container: 1200px;
  --font-size-base: 16px;
  --line-height: 1.75;
}

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.text-red { color: var(--red); }
.fade-in  { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible  { opacity: 1; transform: none; }
.slide-left  { opacity: 0; transform: translateX(-36px); transition: opacity .65s ease, transform .65s ease; }
.slide-left.visible  { opacity: 1; transform: none; }
.slide-right { opacity: 0; transform: translateX( 36px); transition: opacity .65s ease, transform .65s ease; }
.slide-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(0,0,0,.08);
  height: 64px; display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 32px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { line-height: 1.3; }
.nav-logo strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
.nav-logo span   { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 13px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: #fff; padding: 10px 22px; border-radius: 3px;
  font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); display: block; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: #fff; padding: 20px 24px; box-shadow: 0 6px 16px rgba(0,0,0,.1);
  z-index: 199; border-top: 2px solid var(--red);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 15px; font-weight: 600; }
.mobile-menu a.cta { margin-top: 16px; background: var(--red); color: #fff; text-align: center; padding: 14px; border-radius: 3px; border: none; }

/* ===== HERO ===== */
#hero {
  height: 75vh; min-height: 480px; max-height: 700px;
  padding-top: 64px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: right center;
  will-change: transform;
}
.hero-text {
  position: relative; z-index: 2;
  width: 52%; padding: 72px 48px 72px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: #444; font-weight: 600; letter-spacing: .05em;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; width: 28px; height: 2px; background: var(--navy); display: block; flex-shrink: 0; }
.hero-heading { font-size: clamp(34px, 3.8vw, 58px); font-weight: 900; line-height: 1.2; margin-bottom: 22px; color: var(--dark); text-wrap: pretty; }
.hero-heading .red { color: var(--red); display: block; }
.hero-body { font-size: 15px; color: #333; line-height: 2; }

/* ===== FEATURES BAR ===== */
#features { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg-light); }
.feature-item img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.feature-text strong { display: block; font-size: 14.5px; font-weight: 800; margin-bottom: 5px; color: var(--dark); }
.feature-text span { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ===== 3つの軸 ===== */
#pillars { padding: 100px 0; background: #fff; }
.pillars-intro { text-align: center; margin-bottom: 16px; }
.pillars-intro .num { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 12px; }
.pillars-intro .num img { height: 72px; }
.pillars-section-title { font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; margin-bottom: 48px; text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pillar-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.pillar-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.10); transform: translateY(-4px); }
.pillar-header { padding: 20px 20px; display: flex; align-items: center; gap: 14px; }
.pillar-header.green { background: var(--green); }
.pillar-header.red   { background: var(--red); }
.pillar-header.navy  { background: var(--navy); }
.pillar-num {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.6); border-radius: 4px;
  font-size: 22px; font-weight: 900; color: #fff; letter-spacing: .05em;
  font-family: 'Noto Sans JP', sans-serif;
}
.pillar-header-text { color: #fff; }
.pillar-header-text h3 { font-size: 15px; font-weight: 900; line-height: 1.35; }
.pillar-header-text p  { font-size: 11px; opacity: .8; margin-top: 3px; }
.pillar-body { padding: 20px; }
.pillar-section-label {
  font-size: 12px; font-weight: 700; color: var(--text-muted); padding-bottom: 8px;
  border-bottom: 1px solid var(--border); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.pillar-section-label::before { content: ''; width: 3px; height: 13px; border-radius: 2px; display: block; flex-shrink: 0; }
.pillar-section-label.pain     { color: #c07000; }
.pillar-section-label.pain::before { background: #e59800; }
.pillar-section-label.solution { color: var(--navy); }
.pillar-section-label.solution::before { background: var(--navy); }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.pillar-list li { display: flex; align-items: flex-start; gap: 7px; font-size: 14px; line-height: 1.6; }
.pillar-list li svg { flex-shrink: 0; margin-top: 2px; }
.pillar-img-center { display: block; width: 80%; margin: 12px auto; opacity: .55; }

/* ===== STATS ===== */
#stats { background: var(--dark); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.stat-item:last-child { border-right: none; }
.stat-item img { height: 52px; }
.stat-number { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat-number .unit { font-size: 22px; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
#industries { padding: 100px 0; background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--red); text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(22px, 2.8vw, 32px); font-weight: 900; color: var(--dark); }
.section-desc { color: var(--text-muted); margin-top: 12px; font-size: 14px; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.industry-item {
  background: #fff; padding: 36px 24px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.industry-item:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.10); z-index: 1; position: relative; }
.industry-item img { height: 56px; margin-bottom: 16px; }
.industry-item h4 { font-size: 15px; font-weight: 800; margin-bottom: 5px; color: var(--dark); }
.industry-item p  { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
#faq { padding: 100px 0; background: #fff; }
.faq-list { border-top: 1px solid var(--border); max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; text-align: left; padding: 20px 8px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark); transition: background .15s; gap: 16px;
}
.faq-btn:hover { background: var(--bg-light); }
.faq-icon { width: 22px; height: 22px; border: 2px solid var(--red); border-radius: 50%; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--red); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: transform .3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer { display: none; padding: 0 8px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.9; }
.faq-item.open .faq-answer { display: block; }

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 100px 0; background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; padding: 28px; border-radius: 6px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid var(--red);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.10); }
.testimonial-stars { color: #e59800; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote { font-size: 14px; line-height: 1.85; margin-bottom: 22px; color: var(--text); font-weight: 500; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ===== PRICING ===== */
#pricing { padding: 100px 0; background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { border: 2px solid var(--border); border-radius: 6px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.10); }
.pricing-card.featured { border-color: var(--red); }
.pricing-badge { background: var(--red); color: #fff; text-align: center; padding: 7px; font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.pricing-head { padding: 28px 24px 20px; border-bottom: 1px solid var(--border); }
.pricing-tier { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: .12em; margin-bottom: 6px; }
.pricing-name { font-size: 20px; font-weight: 900; margin-bottom: 12px; color: var(--dark); }
.pricing-price { font-size: 38px; font-weight: 900; color: var(--red); line-height: 1; }
.pricing-price small { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.pricing-desc { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; line-height: 1.65; }
.pricing-features { padding: 24px; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li { display: flex; gap: 9px; font-size: 14px; align-items: flex-start; line-height: 1.55; }
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-footer { padding: 0 24px 24px; }
.pricing-btn {
  display: block; text-align: center; padding: 14px;
  background: var(--navy); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px; border-radius: 4px;
  transition: background .2s, transform .15s; cursor: pointer;
  border: none; width: 100%; font-family: 'Noto Sans JP', sans-serif;
}
.pricing-btn:hover { background: #111a3a; transform: translateY(-1px); }
.pricing-card.featured .pricing-btn { background: var(--red); }
.pricing-card.featured .pricing-btn:hover { background: var(--red-dark); }

/* 4-plan layout (STARTER / LIGHT / BUSINESS / ENTERPRISE) */
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-grid-4 .pricing-name { font-size: 18px; }
.pricing-grid-4 .pricing-price { font-size: 32px; }
.pricing-grid-4 .pricing-features li { font-size: 14px; }

/* 「など他多数対応」 — 3つの軸の主力5項目末尾 */
.pillar-more {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  font-style: italic;
}

/* Stats: 範囲表示用 (count-up しない静的数値、例: 月10〜20h) */
.static-num { display: inline-block; }

/* ===== CTA ===== */
#cta { background: var(--bg-light); padding: 100px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.cta-text { }
.cta-text h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 900; line-height: 1.35; margin-bottom: 18px; color: var(--dark); }
.cta-text h2 .red { color: var(--red); }
.cta-body { color: var(--text-muted); line-height: 2; margin-bottom: 28px; font-size: 14px; }
.cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.cta-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--dark); }
.cta-bullets li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.cta-phone-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cta-phone-row img { height: 22px; }
.cta-phone-number { font-size: 30px; font-weight: 900; color: var(--dark); letter-spacing: .04em; }
.cta-phone-hours { font-size: 11.5px; color: var(--text-muted); margin-bottom: 20px; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff; padding: 18px 40px;
  font-size: 16px; font-weight: 800; text-decoration: none; border-radius: 3px;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}
.cta-btn:hover { background: var(--red-dark); transform: translateX(5px); }
.cta-btn .arrow { font-size: 18px; }
.cta-note { font-size: 11px; color: var(--text-muted); margin-top: 16px; }

/* CTA Right Box */
.cta-right { display: flex; flex-direction: column; gap: 0; }
.cta-consult-box {
  background: var(--dark); padding: 28px 28px 24px; border-radius: 4px 4px 0 0;
}
.cta-consult-label { font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 14px; font-weight: 600; }
.cta-consult-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff; width: 100%; padding: 18px 20px;
  font-size: 17px; font-weight: 900; border: none; border-radius: 3px;
  cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
  transition: background .2s, transform .15s;
}
.cta-consult-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.cta-consult-icon { font-size: 20px; }
.cta-phone-block {
  background: #fff; border: 1px solid var(--border); border-top: none;
  padding: 20px 28px;
}
.cta-form-link {
  background: var(--bg-light); border: 1px solid var(--border); border-top: none;
  padding: 14px 28px; border-radius: 0 0 4px 4px;
}
.cta-form-link-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  font-family: 'Noto Sans JP', sans-serif; transition: opacity .2s;
}
.cta-form-link-btn:hover { opacity: .7; }
.cta-form-link-btn img { height: 18px; }
.form-group { margin-bottom: 14px; }
.form-label { display: flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.form-req { background: var(--red); color: #fff; font-size: 10px; padding: 1px 5px; border-radius: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px;
  transition: border-color .2s; background: #fff; color: var(--dark);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--red); }
.form-input.error, .form-textarea.error { border-color: var(--red); background: #fff8f8; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-error { color: var(--red); font-size: 11px; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-submit {
  width: 100%; padding: 16px; background: var(--red); color: #fff;
  border: none; border-radius: 4px; font-size: 15px; font-weight: 800;
  cursor: pointer; transition: background .2s; font-family: 'Noto Sans JP', sans-serif;
}
.form-submit:hover { background: var(--red-dark); }
.form-note-small { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ===== COMPANY ===== */
#company { padding: 80px 0; background: #fff; }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.company-info h2, .company-about h2 { font-size: 22px; font-weight: 900; margin-bottom: 24px; color: var(--dark); padding-bottom: 12px; border-bottom: 2px solid var(--red); }
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table th { width: 110px; padding: 13px 0; font-size: 13px; font-weight: 700; color: var(--text-muted); vertical-align: top; text-align: left; }
.company-table td { padding: 13px 0; font-size: 14px; line-height: 1.7; }
.company-about p { font-size: 14px; line-height: 1.95; color: var(--text-muted); margin-bottom: 14px; }
.company-about p strong { color: var(--dark); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: #fff; padding: 48px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; }
.footer-logo strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.footer-logo span   { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }
.footer-links { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 32px; text-align: center; font-size: 12px; color: rgba(255,255,255,.35); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 8px; padding: 40px;
  width: 92%; max-width: 540px; max-height: 90vh; overflow-y: auto;
  transform: scale(.95) translateY(16px); transition: transform .3s;
  position: relative;
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); transition: color .2s; }
.modal-close:hover { color: var(--dark); }
.modal-title { font-size: 20px; font-weight: 900; margin-bottom: 6px; color: var(--dark); }
.modal-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-success { text-align: center; padding: 40px 0; display: none; }
.form-success h3 { font-size: 22px; font-weight: 900; color: var(--green); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: 14px; }
.form-success .check-circle { font-size: 56px; margin-bottom: 16px; }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); padding: 32px 20px;
}
.thanks-panel {
  width: 100%; max-width: 520px; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 48px 36px; text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.thanks-mark {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; font-size: 34px; font-weight: 900;
}
.thanks-panel h1 { font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.thanks-panel p { color: var(--text-muted); line-height: 1.8; margin-bottom: 26px; }
.thanks-link {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; text-decoration: none; border-radius: 4px;
  padding: 13px 22px; font-size: 14px; font-weight: 800;
}
.thanks-link:hover { background: var(--red-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: 18px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta-desktop { display: none; }
  #hero { min-height: 70vw; }
  .hero-text { width: 100%; padding: 36px 20px 44px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid var(--border); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .company-grid { grid-template-columns: 1fr; gap: 40px; }
  .container { padding: 0 20px; }
  .stat-item { padding: 20px 10px; }
  .stat-number { font-size: 38px; }
  .pricing-grid-4 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}
