/* ==========================================================
   マエセイリ LP — Stylesheet
   Color: Green accent / Font: Gothic (Zen Kaku Gothic New)
   ========================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1A2E35;
  --dark-navy: #0F1F24;
  --slate: #2D6A5E;
  --steel: #5A9E8F;
  --ice: #E6F2EF;
  --off-white: #F4F8F6;
  --white: #FFFFFF;
  --warm-gray: #6B7280;
  --light-gray: #D1D5DB;
  --accent: #16A34A;
  --accent-hover: #15803D;
  --accent-light: #DCFCE7;
  --accent-deep: #166534;
  --teal: #0D9488;
  --teal-light: #CCFBF1;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --charcoal: #374151;
  --body-text: #4B5563;
  --subtle: #9CA3AF;
  --font-main: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --max-w: 1100px;
  --section-py: clamp(60px, 10vw, 100px);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 64px; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 31, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.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 Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 31, 36, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  padding: 8px 0;
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: var(--dark-navy);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22,163,74,0.06), rgba(45,106,94,0.1));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--ice);
  line-height: 1.9;
  margin-bottom: 16px;
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 24px 0;
  border-radius: 2px;
}
.hero-tagline {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.8;
}
.hero-price-card {
  background: var(--accent);
  padding: 28px 32px;
  text-align: center;
  min-width: 200px;
  flex-shrink: 0;
  border-radius: 6px;
}
.hero-price-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.hero-price-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hero-price-unit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}
.hero-cta { margin-top: 32px; }
.hero-cta a {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s;
}
.hero-cta a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-price-card { display: none; }
}

/* ===== SECTION COMMON ===== */
.section { padding: var(--section-py) 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 14px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }

/* ===== PROBLEMS ===== */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.problem-card {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.problem-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateX(4px);
}
.problem-icon {
  width: 36px; height: 36px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 700;
}
.problem-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.problem-callout {
  background: var(--accent-light);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-deep);
  font-weight: 600;
  border-radius: 4px;
}

/* ===== CAUSE ===== */
.cause-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.cause-box {
  padding: 28px 24px;
  border-radius: 6px;
  text-align: center;
}
.cause-box.normal { background: var(--ice); }
.cause-box.problem { background: var(--red-light); }
.cause-box h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}
.cause-box.problem h4 { color: var(--red); }
.cause-box p { font-size: 0.88rem; line-height: 1.7; color: var(--charcoal); }
.cause-arrow { font-size: 1.6rem; color: var(--accent); font-weight: 700; }
.cause-message {
  background: var(--navy);
  padding: 36px 32px;
  border-radius: 6px;
  text-align: center;
}
.cause-message h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.cause-message p { font-size: 0.9rem; color: var(--ice); line-height: 1.7; }

@media (max-width: 640px) {
  .cause-flow { grid-template-columns: 1fr; gap: 12px; }
  .cause-arrow { transform: rotate(90deg); text-align: center; }
}

/* ===== SERVICE OVERVIEW ===== */
.not-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.not-card {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 6px;
}
.not-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
}
.not-card h4 { font-size: 0.88rem; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.not-card p { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.6; }
.overview-message {
  background: var(--navy);
  padding: 36px 32px;
  border-radius: 6px;
  text-align: center;
}
.overview-message h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.overview-message p { font-size: 0.9rem; color: var(--ice); }

@media (max-width: 640px) {
  .not-cards { grid-template-columns: 1fr; }
}

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.step-card {
  background: var(--off-white);
  padding: 28px 16px 24px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 700;
  font-size: 1rem;
}
.step-icon { font-size: 1.5rem; margin-bottom: 12px; color: var(--slate); }
.step-card h4 { font-size: 0.82rem; color: var(--navy); font-weight: 600; margin-bottom: 8px; line-height: 1.5; }
.step-card p { font-size: 0.75rem; color: var(--warm-gray); line-height: 1.6; }
.step-bottom {
  background: var(--accent-light);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-deep);
  font-weight: 600;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    text-align: left;
    padding: 18px 20px;
    align-items: center;
  }
  .step-num { margin: 0; }
  .step-icon { display: none; }
  .step-card h4 { margin-bottom: 2px; }
}

/* ===== DELIVERABLES ===== */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.deliverable-main {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.deliverable-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.deliverable-header-icon { font-size: 1.4rem; }
.deliverable-header h3 { font-size: 1.1rem; color: var(--white); font-weight: 700; }
.deliverable-body { padding: 24px; }
.deliverable-body .sub-label { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 16px; }
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.deliverable-check { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; font-weight: 700; }
.deliverable-item span { font-size: 0.9rem; color: var(--charcoal); }
.audience-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.audience-card + .audience-card { margin-top: 16px; }
.audience-card.fit { border-left: 4px solid var(--teal); background: var(--white); }
.audience-card.nofit { border-left: 4px solid var(--red); background: var(--white); }
.audience-card h4 { padding: 14px 20px 0; font-size: 0.88rem; font-weight: 600; }
.audience-card.fit h4 { color: var(--teal); }
.audience-card.nofit h4 { color: var(--red); }
.audience-list { padding: 8px 20px 16px; }
.audience-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--charcoal); padding: 5px 0;
}
.audience-list .icon-check { color: var(--teal); font-weight: 700; }
.audience-list .icon-x { color: var(--red); font-weight: 700; }

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

/* ===== CASE STUDIES ===== */
.cases { display: flex; flex-direction: column; gap: 48px; }
.case-study {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  background: var(--white);
}
.case-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px; background: var(--off-white);
}
.case-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--slate); color: var(--white);
  font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 3px;
}
.case-industry { font-size: 0.82rem; color: var(--slate); }
.case-title {
  padding: 20px 28px 0;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: var(--navy); font-weight: 700; line-height: 1.5;
}
.case-phases { padding: 20px 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.case-phase {
  display: grid; grid-template-columns: 140px 1fr; gap: 0;
  border-radius: 4px; overflow: hidden;
}
.phase-label {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 12px; font-size: 0.78rem; font-weight: 600; color: var(--white); text-align: center;
}
.phase-label.trigger { background: var(--slate); }
.phase-label.wall { background: var(--red); }
.phase-label.insight { background: var(--teal); }
.phase-label.after { background: var(--accent); }
.phase-content {
  background: var(--off-white); padding: 16px 20px;
  font-size: 0.85rem; line-height: 1.7; color: var(--charcoal);
}
.case-note {
  background: var(--accent-light); padding: 12px 28px;
  font-size: 0.8rem; color: var(--accent-deep); font-weight: 500; text-align: center;
}

@media (max-width: 640px) {
  .case-phase { grid-template-columns: 1fr; }
  .phase-label { padding: 10px 16px; justify-content: flex-start; }
}

/* ===== FLOW ===== */
.flow-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 36px;
}
.flow-card {
  background: var(--white); padding: 24px 16px; text-align: center;
  border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-top: 3px solid var(--navy);
}
.flow-num { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow-card h4 { font-size: 0.85rem; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.flow-card p { font-size: 0.78rem; color: var(--warm-gray); line-height: 1.6; }
.flow-timeline {
  background: var(--navy); padding: 16px 32px; border-radius: 6px;
  text-align: center; color: var(--white); font-size: 1rem; font-weight: 600;
}
.flow-timeline span { color: var(--accent); font-size: 1.15rem; }

@media (max-width: 768px) {
  .flow-steps { grid-template-columns: 1fr; gap: 12px; }
  .flow-card {
    display: grid; grid-template-columns: auto 1fr; gap: 16px;
    text-align: left; padding: 16px 20px; align-items: center;
  }
  .flow-num { margin: 0; font-size: 1.6rem; }
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden; cursor: pointer; transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-question {
  padding: 18px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-size: 0.92rem; font-weight: 600; color: var(--charcoal);
}
.faq-toggle {
  width: 28px; height: 28px; background: var(--ice); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--navy); font-size: 0.8rem; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 18px; font-size: 0.88rem; color: var(--body-text); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-section { background: var(--navy); padding: var(--section-py) 24px; }
.pricing-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.pricing-left .section-label { background: var(--slate); }
.pricing-left .price-label { font-size: 0.88rem; color: var(--steel); margin-bottom: 8px; }
.pricing-left .price-num {
  font-size: clamp(3rem, 6vw, 4rem); font-weight: 700; color: var(--white); line-height: 1;
}
.pricing-left .price-unit { font-size: 1rem; color: var(--ice); margin-left: 4px; }
.pricing-left .price-divider { width: 100%; height: 1px; background: var(--slate); margin: 20px 0; }
.pricing-left .included-label { font-size: 0.82rem; color: var(--steel); margin-bottom: 12px; }
.pricing-included li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.92rem; color: var(--ice);
}
.pricing-included .check-icon { color: var(--accent); font-weight: 700; }
.pricing-right {
  background: var(--white); border-radius: 8px; padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.pricing-right h3 {
  font-size: 1.2rem; color: var(--navy); font-weight: 700; text-align: center; margin-bottom: 8px;
}
.pricing-right .note {
  font-size: 0.82rem; color: var(--warm-gray); text-align: center; line-height: 1.6; margin-bottom: 24px;
}
.pricing-disclaimer { font-size: 0.72rem; color: var(--subtle); margin-top: 20px; }

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

/* ===== FORMS ===== */
.form-container { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-label .required { color: var(--red); font-size: 0.72rem; margin-left: 4px; }
.form-label .optional { color: var(--subtle); font-size: 0.72rem; margin-left: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--light-gray); border-radius: 4px;
  font-family: var(--font-main); font-size: 0.9rem; color: var(--charcoal);
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(45,106,94,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-radio-group { display: flex; flex-direction: column; gap: 8px; }
.form-radio {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--light-gray); border-radius: 4px;
  cursor: pointer; transition: border-color 0.25s, background 0.25s; font-size: 0.88rem;
}
.form-radio:hover { border-color: var(--slate); background: var(--off-white); }
.form-radio input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem; color: var(--warm-gray); line-height: 1.5; margin-top: 16px;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--navy); width: 16px; height: 16px; flex-shrink: 0;
}
.btn-submit {
  display: block; width: 100%; padding: 14px;
  background: var(--accent); color: var(--white);
  font-family: var(--font-main); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background 0.25s, transform 0.25s; margin-top: 20px;
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-consult { background: var(--slate); }
.btn-consult:hover { background: var(--navy); }

/* Form Tabs */
.form-tabs {
  display: flex; gap: 0; margin-bottom: 28px;
  border-radius: 6px; overflow: hidden; border: 2px solid var(--navy);
}
.form-tab {
  flex: 1; padding: 12px; text-align: center;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  transition: background 0.25s, color 0.25s;
  background: var(--white); color: var(--navy);
}
.form-tab.active { background: var(--navy); color: var(--white); }
.form-tab:hover:not(.active) { background: var(--ice); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Error Messages */
.form-errors {
  background: var(--red-light); border: 1px solid #FCA5A5; border-radius: 6px;
  padding: 16px 20px; margin-bottom: 24px;
}
.form-errors p { font-size: 0.85rem; color: var(--red); font-weight: 500; margin-bottom: 4px; }
.form-errors p:last-child { margin-bottom: 0; }

/* Consult Info Box */
.consult-info {
  background: var(--teal-light); padding: 16px 20px; border-radius: 6px;
  margin-bottom: 24px; border-left: 4px solid var(--teal);
}
.consult-info-title { font-size: 0.88rem; color: var(--teal); font-weight: 600; margin-bottom: 4px; }
.consult-info-text { font-size: 0.82rem; color: var(--charcoal); line-height: 1.6; }

/* ===== CLOSING ===== */
.closing {
  background: var(--dark-navy); padding: var(--section-py) 24px;
  text-align: center; position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; top: 0; left: 0; width: 25%; height: 100%;
  background: rgba(45,106,94,0.08);
}
.closing::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.closing-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.closing p.lead { font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: var(--ice); line-height: 1.8; margin-bottom: 8px; }
.closing p.bold-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem); color: var(--white);
  font-weight: 700; line-height: 1.8; margin-bottom: 28px;
}
.closing-divider { width: 60px; height: 3px; background: var(--accent); margin: 0 auto 28px; border-radius: 2px; }
.closing p.sub { font-size: 1rem; color: var(--ice); line-height: 1.8; margin-bottom: 36px; }
.closing-cta {
  display: inline-block; background: var(--accent); color: var(--white);
  font-weight: 600; font-size: 1rem; padding: 16px 44px; border-radius: 4px;
  transition: background 0.25s, transform 0.25s;
}
.closing-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-navy); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px; text-align: center;
}
.footer p { font-size: 0.75rem; color: var(--subtle); line-height: 1.6; }
.footer a { color: var(--steel); text-decoration: underline; text-underline-offset: 2px; }

/* ===== MOBILE PRICE BAR ===== */
.mobile-price-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--navy); padding: 10px 20px;
  align-items: center; justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.mobile-price-bar .mp-price { font-size: 1.2rem; color: var(--white); font-weight: 700; }
.mobile-price-bar .mp-price small { font-size: 0.72rem; font-weight: 400; color: var(--ice); }
.mobile-price-bar .mp-btn {
  background: var(--accent); color: var(--white); padding: 10px 20px;
  border-radius: 4px; font-size: 0.82rem; font-weight: 600; transition: background 0.2s;
}

@media (max-width: 768px) {
  .mobile-price-bar { display: flex; }
  .footer { padding-bottom: 80px; }
}

/* ===== THANKS PAGE ===== */
.thanks-wrapper {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--off-white); padding: 40px 24px;
}
.thanks-card {
  background: var(--white); max-width: 580px; width: 100%;
  border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 48px 40px; text-align: center;
}
.thanks-icon {
  width: 64px; height: 64px; background: var(--accent-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: var(--accent);
}
.thanks-card h1 {
  font-size: 1.4rem; color: var(--navy); font-weight: 700; margin-bottom: 16px; line-height: 1.5;
}
.thanks-card p { font-size: 0.9rem; color: var(--body-text); line-height: 1.8; margin-bottom: 12px; }
.thanks-card .note {
  font-size: 0.82rem; color: var(--warm-gray); background: var(--off-white);
  padding: 16px 20px; border-radius: 6px; margin-top: 24px; line-height: 1.7;
}
.thanks-card .back-link {
  display: inline-block; margin-top: 28px; color: var(--accent);
  font-weight: 600; font-size: 0.9rem; transition: color 0.2s;
}
.thanks-card .back-link:hover { color: var(--accent-hover); }
.thanks-footer { margin-top: 32px; font-size: 0.72rem; color: var(--subtle); }
