/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ CSS VARIABLES ============ */
:root {
  --navy: #0f2d52;
  --navy-light: #1a4070;
  --blue: #1e5fa8;
  --orange: #e8821a;
  --orange-light: #f5a623;
  --red: #dc3010;
  --red-hover: #b82000;
  --green: #27ae60;
  --white: #ffffff;
  --gray-bg: #f5f7fa;
  --gray-border: #e0e6ed;
  --text: #1a1a2e;
  --text-light: #666680;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 { font-family: 'Noto Sans JP', sans-serif; font-weight: 900; line-height: 1.4; }
.num { font-family: 'Inter', sans-serif; font-weight: 700; }

/* ============ UTILITY ============ */
.lp-section { width: 100% !important; padding: 72px 40px; font-family: 'Noto Sans JP', sans-serif; }
.lp-section-white { background: #fff; }
.lp-section-gray { background: #f5f7fa; }
.lp-section-dark { background: #0f2d52; }
.lp-section-title { text-align: center !important; margin-bottom: 44px; }
.lp-label {
  display: inline-block;
  background: #e8821a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.lp-section-title h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #0f2d52;
  line-height: 1.4;
  margin: 0 0 12px;
  text-align: center !important;
}
.lp-section-title h2.white { color: #fff; }
.lp-section-title p {
  font-size: 15px;
  color: #666680;
  line-height: 1.9;
  margin: 0;
  text-align: center !important;
}
.lp-wrap { width: 100% !important; }

/* ============ HEADER ============ */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 64px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex !important;
  align-items: center !important;
}
.lp-header-inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.lp-header-logo {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none;
  line-height: 1.2;
}
.lp-header-logo-main {
  font-size: 15px;
  font-weight: 900;
  color: #0f2d52;
  letter-spacing: 0.05em;
}
.lp-header-logo-sub {
  font-size: 9px;
  font-weight: 700;
  color: #e8821a;
  letter-spacing: 0.08em;
}
.lp-header-nav {
  display: flex !important;
  gap: 4px !important;
  flex: 1;
  justify-content: center !important;
}
.lp-header-nav a {
  font-size: 12px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.lp-header-nav a:hover { background: #f5f7fa; }
.lp-header-tel {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0f2d52;
  text-decoration: none;
}
.lp-header-tel svg { flex-shrink: 0; }
.lp-header-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(232,130,26,0.35);
  transition: all 0.2s;
}
.lp-header-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(232,130,26,0.45); }

@media(max-width:768px){
  .lp-header { height: 56px; }
  .lp-header-nav { display: none !important; }
  .lp-header-logo-main { font-size: 13px; }
  .lp-header-cta { font-size: 12px; padding: 7px 16px; }
  .lp-header-tel { font-size: 12px; }
}

/* ============ HERO ============ */
.hero-section {
  background: linear-gradient(135deg, #0f2d52 0%, #1a4070 50%, #1e5fa8 100%);
  padding: 120px 40px 80px;
  color: #fff;
}
.hero-inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  gap: 48px;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero-title .accent { color: #f5a623; }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex !important;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-badges .badge-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.hero-badges .badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f5a623;
}
.hero-cta-area { text-align: left; }
.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  color: #fff;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 900;
  padding: 20px 48px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(232,130,26,0.5);
  transition: all 0.3s;
}
.hero-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(232,130,26,0.6); }
.hero-cta-note {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.8;
}
.hero-visual {
  flex: 0 0 360px;
  text-align: center;
}
.hero-visual-circle {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto;
}
.hero-visual-circle .circle-label {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 8px;
}
.hero-visual-circle .circle-main {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #f5a623;
  line-height: 1;
}
.hero-visual-circle .circle-unit {
  font-size: 28px;
  color: #f5a623;
}
.hero-visual-circle .circle-sub {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  opacity: 0.7;
}
.hero-visual-mini {
  display: flex !important;
  justify-content: center !important;
  gap: 12px;
  margin-top: 20px;
}
.hero-visual-mini .mini-badge {
  width: 100px; height: 100px;
  background: #e8821a;
  border-radius: 50%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,130,26,0.4);
  line-height: 1.3;
  text-align: center;
  padding: 8px;
}
.hero-visual-mini .mini-badge .mini-num {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: block;
}

@media(max-width:768px){
  .hero-section { padding: 80px 20px 48px; }
  .hero-inner { flex-direction: column !important; gap: 32px; }
  .hero-visual { flex: none; width: 100%; }
  .hero-visual-circle { width: 240px; height: 240px; }
  .hero-visual-circle .circle-main { font-size: 48px; }
  .hero-cta-btn { display: block; width: 100%; text-align: center; }
  .hero-cta-area { text-align: center; }
  .hero-badges { justify-content: center !important; }
  .hero-visual-mini .mini-badge { width: 85px; height: 85px; font-size: 9px; }
  .hero-visual-mini .mini-badge .mini-num { font-size: 18px; }
}

/* ============ OPENING ============ */
.opening-section { background: #f5f7fa; padding: 72px 20px; }
.opening-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.op-label { display: flex !important; align-items: center !important; gap: 12px; margin-bottom: 16px; }
.op-label-line { flex: 0 0 40px; height: 2px; background: #e8821a; }
.op-label-text { font-size: 13px; font-weight: 700; color: #e8821a; letter-spacing: 0.1em; }
.op-title { text-align: left !important; font-size: clamp(22px, 4.5vw, 36px); font-weight: 900; color: #0f2d52; margin-bottom: 12px; line-height: 1.4; }
.op-sub { text-align: left !important; font-size: clamp(15px, 2.5vw, 19px); font-weight: 700; color: #e8821a; margin-bottom: 40px; line-height: 1.7; }
.op-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 5px solid #0f2d52;
  margin-bottom: 32px;
}
.op-box p { font-size: 15px; line-height: 2; color: #333; margin-bottom: 16px; }
.op-box p:last-child { margin-bottom: 0; }
.op-box strong { color: #dc3010; font-weight: 900; }
.op-warn {
  background: #fff8f0;
  border: 2px solid #e8821a;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.op-warn-title { font-size: 14px; font-weight: 900; color: #e8821a; margin-bottom: 12px; }
.op-warn li { font-size: 14px; color: #555; line-height: 1.8; margin-left: 20px; margin-bottom: 4px; }
.op-voice {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid #e8821a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 32px;
}
.op-voice p { font-size: 14px; line-height: 2; color: #444; font-style: italic; }
.op-voice cite { display: block; margin-top: 10px; font-size: 12px; color: #999; font-style: normal; }
.op-resolve {
  background: linear-gradient(135deg, #0f2d52, #1e5fa8);
  color: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 32px;
}
.op-resolve p { font-size: clamp(14px, 2.2vw, 16px); line-height: 2; opacity: 0.92; margin-bottom: 16px; }
.op-resolve p:last-of-type { margin-bottom: 0; }
.op-resolve strong { color: #f5a623; font-size: 1.05em; }
.op-resolve-note { font-size: 12px; opacity: 0.7; margin-top: 8px; }
.op-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  color: #fff;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 900;
  padding: 18px 48px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(232,130,26,0.45);
  transition: all 0.3s;
  margin-top: 24px;
}
.op-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,130,26,0.55); }
.op-btn-sub { display: block; font-size: 11px; font-weight: 400; opacity: 0.9; margin-top: 4px; }

@media(max-width:600px){
  .opening-section { padding: 48px 16px; }
  .op-box { padding: 24px 18px; border-radius: 12px; }
  .op-resolve { padding: 24px 18px; }
  .op-btn { display: block; width: 100%; text-align: center; }
}

/* ============ REASONS ============ */
.reasons-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  border-top: 4px solid #e8821a;
}
.reason-card:nth-child(2) { border-top-color: #1e5fa8; }
.reason-card:nth-child(3) { border-top-color: #27ae60; }
.reason-card:nth-child(4) { border-top-color: #9b59b6; }
.reason-card:nth-child(5) { border-top-color: #e74c3c; }
.reason-header {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  margin-bottom: 16px;
}
.reason-num {
  width: 44px; height: 44px;
  background: #0f2d52;
  color: #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.reason-title { font-size: clamp(16px, 2.5vw, 20px); font-weight: 900; color: #0f2d52; }
.reason-body { font-size: 15px; line-height: 2; color: #555; }
.reason-body strong { color: #0f2d52; font-weight: 700; }

@media(max-width:600px){
  .reason-card { padding: 24px 18px; }
  .reason-header { flex-wrap: wrap; }
}

/* ============ RESULTS (Counter + Cases) ============ */
.counter-section {
  background: linear-gradient(135deg, #0f2d52 0%, #1a4070 100%);
  padding: 72px 40px;
  color: #fff;
}
.counter-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.counter-item { text-align: center; }
.counter-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #f5a623;
  line-height: 1.1;
}
.counter-unit { font-size: 16px; color: #f5a623; }
.counter-label { font-size: 13px; font-weight: 700; opacity: 0.8; margin-top: 8px; }
.counter-note {
  max-width: 860px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
}

@media(max-width:768px){
  .counter-section { padding: 48px 20px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Cases */
.cases-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.case-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #e8821a;
}
.case-industry {
  display: inline-block;
  background: #0f2d52;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.case-content { font-size: 14px; font-weight: 700; color: #333; margin-bottom: 8px; }
.case-amount {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e8821a;
}
.case-amount-unit { font-size: 14px; color: #e8821a; }
.case-note { font-size: 12px; color: #999; margin-top: 4px; }
.case-detail { font-size: 13px; color: #666; line-height: 1.7; margin-top: 10px; }

@media(max-width:600px){
  .case-grid { grid-template-columns: 1fr !important; }
}

/* ============ BENEFITS ============ */
.benefits-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
}
.benefit-num {
  width: 36px; height: 36px;
  background: #e8821a;
  color: #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.benefit-text h4 { font-size: 16px; font-weight: 900; color: #0f2d52; margin-bottom: 6px; }
.benefit-text p { font-size: 14px; line-height: 1.9; color: #555; }
.benefit-limited {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: #fff8f0;
  border: 2px solid #e8821a;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  color: #e8821a;
}

@media(max-width:600px){
  .benefit-card { padding: 20px 16px; flex-direction: column !important; }
}

/* ============ CTA ============ */
.cta-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.cta-main {
  background: linear-gradient(135deg, #0f2d52, #1a4a85);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-main::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-label-tag {
  display: inline-block;
  background: #e8821a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-title .highlight { color: #f5a623; }
.cta-sub-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.cta-points {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-point {
  display: flex !important;
  align-items: center !important;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.cta-point-icon {
  width: 22px; height: 22px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.cta-btn-large {
  display: inline-block;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  color: #fff;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 900;
  padding: 20px 52px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(232,130,26,0.5);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.cta-btn-large:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(232,130,26,0.6); }
.cta-reassure {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

@media(max-width:600px){
  .cta-main { padding: 32px 16px; border-radius: 16px; }
  .cta-btn-large { display: block; width: 100%; text-align: center; font-size: 15px; padding: 18px 24px; }
  .cta-points { flex-direction: column !important; align-items: center; }
}

/* ============ FORM ============ */
.form-section { background: #f5f7fa; padding: 72px 40px; }
.form-wrap { width: 100% !important; max-width: 640px; margin: 0 auto; }
.form-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-top: 4px solid #e8821a;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f2d52;
  margin-bottom: 8px;
}
.form-group label .required {
  display: inline-block;
  background: #dc3010;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-group label .optional {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #e8821a;
  cursor: pointer;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  border-color: #e8821a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,130,26,0.15);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  padding: 12px 16px;
  background: #fff8f0;
  border: 2px solid #e8821a;
  border-radius: 8px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #e8821a;
}
.form-checkbox span { font-size: 14px; font-weight: 700; color: #0f2d52; }
.form-submit {
  display: block;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(232,130,26,0.45);
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,130,26,0.55); }
.form-note {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}

@media(max-width:600px){
  .form-section { padding: 48px 16px; }
  .form-box { padding: 32px 20px; }
}

/* ============ PROFILE ============ */
.profile-wrap { width: 100% !important; max-width: 860px; margin: 0 auto; }
.profile-main {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
}
.profile-photo {
  flex: 0 0 160px;
  text-align: center;
}
.profile-photo-circle {
  width: 140px; height: 140px;
  background: #f5f7fa;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 12px;
  font-size: 48px;
  color: #0f2d52;
  border: 3px solid #e0e6ed;
}
.profile-name { font-size: 14px; font-weight: 900; color: #0f2d52; }
.profile-role { font-size: 11px; color: #999; }
.profile-info { flex: 1; }
.profile-info h3 { font-size: 22px; font-weight: 900; color: #0f2d52; margin-bottom: 8px; }
.profile-info .profile-tag {
  display: inline-block;
  background: #f5f7fa;
  font-size: 12px;
  font-weight: 700;
  color: #0f2d52;
  padding: 4px 12px;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 16px;
}
.profile-info p { font-size: 15px; line-height: 2; color: #555; margin-bottom: 12px; }
.profile-services {
  margin-top: 20px;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-services .svc-tag {
  display: inline-block;
  background: #0f2d52;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}
.profile-partner {
  margin-top: 40px;
  padding: 24px 28px;
  background: #f5f7fa;
  border-radius: 12px;
  border-left: 4px solid #e0e6ed;
}
.profile-partner h4 { font-size: 13px; font-weight: 700; color: #999; margin-bottom: 8px; letter-spacing: 0.05em; }
.profile-partner p { font-size: 13px; line-height: 1.8; color: #777; }

@media(max-width:600px){
  .profile-main { flex-direction: column !important; padding: 32px 20px; gap: 24px !important; }
  .profile-photo { flex: none; width: 100%; }
}

/* ============ FOOTER ============ */
.lp-footer {
  background: #0a1f3a;
  padding: 48px 40px 24px;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.footer-company { font-size: 16px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-info { font-size: 13px; line-height: 2; margin-bottom: 20px; }
.footer-copy { font-size: 11px; opacity: 0.5; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

@media(max-width:600px){
  .lp-footer { padding: 32px 16px 16px; }
}

/* ============ SP FIXED CTA ============ */
.sp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #e8821a, #f5a623);
  padding: 12px 20px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sp-fixed-cta a {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}
.sp-fixed-cta-sub { font-size: 10px; opacity: 0.9; display: block; }

@media(max-width:768px){
  .sp-fixed-cta { display: block; }
  .lp-footer { padding-bottom: 80px; }
}

/* ============ FADE IN ============ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
